<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>SoftCrust</title>
	<atom:link href="http://www.softcrust.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.softcrust.com</link>
	<description>Ultimate Crust of Softwares Solutions</description>
	<lastBuildDate>Sat, 19 May 2012 14:16:01 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Magento Remove Tag Cloud</title>
		<link>http://www.softcrust.com/magento-remove-tag-cloud/</link>
		<comments>http://www.softcrust.com/magento-remove-tag-cloud/#comments</comments>
		<pubDate>Sat, 19 May 2012 06:12:20 +0000</pubDate>
		<dc:creator>bukhari</dc:creator>
				<category><![CDATA[How To]]></category>
		<category><![CDATA[Magento]]></category>
		<category><![CDATA[Tips & Tricks]]></category>

		<guid isPermaLink="false">http://softcrust.com/?p=58</guid>
		<description><![CDATA[To remove Tag Cloud block from Magento frontend, there are two ways around Disable feature from admin, which will disable this feature from frontend page Remove block from specific structural blocks using layout xml files Disable from admin To disable output of specific module (Tag Cloud) do the following In admin section goto System &#62; [...]]]></description>
			<content:encoded><![CDATA[<p>To remove Tag Cloud block from Magento frontend, there are two ways around</p>
<ul>
<li>Disable feature from admin, which will disable this feature from frontend page</li>
<li>Remove block from specific structural blocks using layout xml files</li>
</ul>
<h3>Disable from admin</h3>
<p>To disable output of specific module (Tag Cloud) do the following</p>
<p>In admin section goto</p>
<pre>System &gt; Configuration &gt; Advanced &gt; ( In the "Disable Module Output" find Mage_Tag, and select "Disable" from the drop down )</pre>
<p>Doing so will disable out put to all Mag_Tag blocks on fontend, to ensure not to display any Mage_Tag block following instruction under following heading to disable blocks from layout files</p>
<h3>Disable from Layout Files</h3>
<p>You can also disable blocks using layout files, which gives us feature of removing blocks from specific pages, here we will remove tag cloud block from left sidebar.</p>
<blockquote><p>Open app/design/frontend/default/your-active-theme/layout/tag.xml</p></blockquote>
<p>Comment following code</p>
<blockquote><p>&lt;block type=&#8221;tag/popular&#8221; name=&#8221;tags_popular&#8221; template=&#8221;tag/popular.phtml&#8221;/&gt;</p></blockquote>
<p>in &#8220;left&#8221; reference of default tag, this will remove tag cloud block from left sidebar. E.g.</p>
<blockquote><p>&lt;reference name=&#8221;left&#8221;&gt;<br />
&lt;!&#8211;&lt;block type=&#8221;tag/popular&#8221; name=&#8221;tags_popular&#8221; template=&#8221;tag/popular.phtml&#8221;/&gt;&#8211;&gt;<br />
&lt;/reference&gt;</p></blockquote>
<p>You can also use</p>
<blockquote><p>&lt;remove name=&#8221;tags_popular&#8221; /&gt;</p></blockquote>
<p>to remove from specific structural blocks</p>
]]></content:encoded>
			<wfw:commentRss>http://www.softcrust.com/magento-remove-tag-cloud/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to install PHP MyAdmin on Apache in Ubuntu 10.xx / 11.xx / 12.xx</title>
		<link>http://www.softcrust.com/how-to-install-php-myadmin-on-apache-in-ubuntu-10-11-12/</link>
		<comments>http://www.softcrust.com/how-to-install-php-myadmin-on-apache-in-ubuntu-10-11-12/#comments</comments>
		<pubDate>Sat, 19 May 2012 06:07:11 +0000</pubDate>
		<dc:creator>bukhari</dc:creator>
				<category><![CDATA[How To]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[Apache]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[PHP MyAdmin]]></category>

		<guid isPermaLink="false">http://softcrust.com/?p=44</guid>
		<description><![CDATA[PHP MyAdmin is web based open source tool for MySQL administration, written in PHP. With PHP MyAdmin we can perform many database operation on MySQL database. For example, creating, modifying or deleting databases, tables, rows, fields etc, execute SQL statements or manage user permissions. Installing PHP MyAdmin on Ubuntu is very easy, in this tutorial [...]]]></description>
			<content:encoded><![CDATA[<p>PHP MyAdmin is web based open source tool for MySQL administration, written in PHP. With PHP MyAdmin we can perform many database operation on MySQL database. For example, creating, modifying or deleting databases, tables, rows, fields etc, execute SQL statements or manage user permissions.</p>
<p>Installing PHP MyAdmin on Ubuntu is very easy, in this tutorial we will install PHP MyAdmin via command line, it is assumed that you have already installed Apache, MySQL and PHP, if not follow instruction in this post to install and configure Apache, MySQL and PHP.</p>
<h3>Installing PHP MyAdmin</h3>
<p>Open up your terminal application, Terminal app is located</p>
<p>In Ubuntu Unity: Click the dash icon in the upper left corner of desktop, and type terminal, click terminal icon under applications.</p>
<p>If not using Unity: Goto Applications &gt; Accessories &gt; Terminal</p>
<p>Or simply press Alt + Ctrl + T at the same time</p>
<p>Execute following command to install PHP MyAdmin</p>
<blockquote><p>sudo apt-get install phpmyadmin</p></blockquote>
<p>In the middle of installation you will be prompted to select a web-server in list of available web-servers, select Apache 2 and hit enter, PHP MyAdmin is installed on Ubuntu now but you will not be able to access it via &#8220;http://localhost/phpmyadmin/&#8221;, default installation directory for PHP MyAdmin is &#8220;<em>/usr/share/phpmyadmin/</em>&#8220;, we need to create Symbolic Link (symlink) to the installation directory from document root. Execute following command to create one.</p>
<blockquote><p>sudo ln -s /usr/share/phpmyadmin/ /var/www/phpmyadmin</p></blockquote>
<p>After you have done this you will be able to access PHP MyAdmin via &#8220;http://localhost/phpmyadmin/&#8221;, use your MySQL username and password to login to PHP Myadmin.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.softcrust.com/how-to-install-php-myadmin-on-apache-in-ubuntu-10-11-12/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Install Apache, PHP and MySQL on Ubuntu</title>
		<link>http://www.softcrust.com/how-to-install-apache-php-and-mysql-on-ubuntu/</link>
		<comments>http://www.softcrust.com/how-to-install-apache-php-and-mysql-on-ubuntu/#comments</comments>
		<pubDate>Sat, 19 May 2012 06:04:29 +0000</pubDate>
		<dc:creator>bukhari</dc:creator>
				<category><![CDATA[How To]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[Apache]]></category>
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://softcrust.com/?p=33</guid>
		<description><![CDATA[In this post we will install Apache, MySQL, PHP and PHP MyAdmin on Ubuntu 10.xx / 11.xx / 12.xx. There are two way around to install and configure Apache web-server and PHP. Installing LAMP (Linux, Apache, MySQL, PHP), which is not more than just extracting an archive file to a directory, and you are done [...]]]></description>
			<content:encoded><![CDATA[<p>In this post we will install Apache, MySQL, PHP and PHP MyAdmin on Ubuntu 10.xx / 11.xx / 12.xx. There are two way around to install and configure Apache web-server and PHP.</p>
<ul>
<li>Installing LAMP (Linux, Apache, MySQL, PHP), which is not more than just extracting an archive file to a directory, and you are done everything is pre-configured you just need to run <strong><em>lamp start</em></strong> command. (Will be covered in other post)</li>
<li>Installing Apache, MySQL, PHP one by one using terminal application, this method help us understand some basic configurations.</li>
</ul>
<p>As we are going to install all these applications using terminal, open up your terminal application, Terminal app is located</p>
<pre>In Ubuntu Unity: Click the dash icon in the upper left corner of desktop, and type terminal, click terminal icon under applications.

If not using Unity: Applications &gt; Accessories &gt; Terminal

Or simply press Alt + Ctrl + T at the same time</pre>
<h3> Installing Apache</h3>
<p>Now so that terminal app is open enter following command to install Apache webserver</p>
<blockquote><p>sudo apt-get install apache2</p></blockquote>
<p>After installation is complete goahead and type &#8220;http://localhost/&#8221; in your web-browser and hit enter. If you are able to see &#8220;It Works&#8221;, you installed Apache correctly.</p>
<p>Note: if you see an error like <em>&#8220;Could not reliably determine the server’s fully qualified domain name, using 127.0.0.1 for ServerName</em>&#8220;, at the end of installation, fix this issue using following command</p>
<blockquote><p>gksu gedit /etc/apache2/conf.d/fqdn</p></blockquote>
<p>This command will open Gedit, enter following line in the file, save it and close the file.</p>
<p>“ServerName localhost”</p>
<p>After you have done with above fix, type following command to restart Apache, and you will no more see the error</p>
<blockquote><p>sudo service apache2 restart</p></blockquote>
<h3>Installing PHP</h3>
<p>To install and configure PHP with Apache, execute following command</p>
<blockquote><p>sudo apt-get install php5 libapache2-mod-php5</p></blockquote>
<p>This command does two things, install PHP5 and configure it with Apache, after terminal is finished with the installation you have to restart Apache in order to complete the installation and finish PHP configuration with apache. Use one the following command to restart Apache.</p>
<blockquote><p>sudo /etc/init.d/apache2 restart</p></blockquote>
<p>OR</p>
<blockquote><p>sudo service apache2 restart</p></blockquote>
<p>To test your configuration, use following command to open Gedit, which will save file index.php in /var/www/ which is default document root for Apache</p>
<blockquote><p>sudo gedit /var/www/index.php</p></blockquote>
<p>Put following code in the file and open &#8220;http://localhost/&#8221; in web-browser, it will display all your PHP settings</p>
<blockquote><p>&lt;?php phpInfo(); ?&gt;</p></blockquote>
<h3>Installing MySQL</h3>
<p>Inside terminal type following command to install MySQL, this command installs MySQL and configure it with Apache and PHP</p>
<blockquote><p>sudo apt-get install mysql-server libapache2-mod-auth-mysql php5-mysql</p></blockquote>
<p>Once the installation is complete, you will be prompted to enter password for the default user &#8220;root&#8221; of MySQL. Provide a password and confirm it to complete the installation or you can leave it blank by clicking enter.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.softcrust.com/how-to-install-apache-php-and-mysql-on-ubuntu/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

