Unzipping archive files in Linux

Extracting archive file depends on the type. Here goes the list of extracting/unzipping command for various archive types: 1> Unzipping .zip file unzip filename.zip 2> Unzipping .tar file tar -xvf filename.tar 3> Unzipping .tar.gz or .tgz file tar -zxvf filename.tar.gz tar -zxvf filename.tgz 4> Unzipping .gz file gunzip file.gz 5> Unzipping .bz2 file bunzip2 file.bz2 …

Read more

How to run Magento 1.3.X on PHP 5.3?

You know that Magento version (>= 1.4.X) works well under PHP 5.3. But what if you want to run the Magento 1.3.X under the same AMP(Apache/Mysql/PHP) package? You may need this in order to test the extension/theme compatibilities. In order to run Magento 1.3.x on PHP 5.3, you need to replace the following function from …

Read more

Magento: Export / Import CMS pages / Static Blocks Via SSH

It’s really a tedious task when you have to copy all the cms pages/static blocks from your development server to the live server. If you are importing the whole database then you are lucky enough but if you are updating in already installed Magento server then :(, luckily you can use the following commands via …

Read more