Anwar

Posts

Clone linode cloud server to another linode cloud server

Clone Your LinodePermalink Log in to the Linode Manager. Select the Linodes tab to list your active Linodes. Click on the Linode you wish to clone. This will...

Create admin user in Redmine if you delete admin by accident

ruby script/rails console production     user = User.new({:firstname => “Cyber”, :lastname=>”Netikz”,:mail=>”admin@cybernetikz.com”}) => #<User id: nil, login: “”, hashed_password: “”, firstname: “Test”, lastname: “Dummy”, mail:...

CS CART TO MAGENTO PRODUCTS MIGRATION

The Following Data Will be migrated: Products Product Images Product custom field Product attributes And others product information Process Follow: Export Cs-Cart Product as CSV...

Delete All Files And Folders In Linux

How do I delete all files and folders stored in /home/jerry/movies directories under Linux operating systems? You need to the rm command. Open a terminal...

Find the PHP command-line configuration

To display the PHP command-line configuration, enter php -i | grep php.ini A sample result follows: Configuration File (php.ini) Path => /etc/php5/cli Loaded Configuration File...

How do I create a cron job to backup my MySQL database on Cloud Sites?

Scripting the backup To make the cron job work, create a file called backup.sh and place the following code inside of it :: #!/bin/sh mysqldump -h...

How do I know if my server is compatible with Magento?

In order to run Magento your server needs to meet some basic software requirements. For a complete list of system requirements please reference the System...

How I configure my etc host on Ubuntu?

Hi, i created hostname: ‘mysite.com’, but, how i configure the etc/host? My actual hosts is this 127.0.0.1 localhost 127.0.1.1 mysite.com mysite xxx.xxx.xxx.xxx mysite.com mysite Is...

How to backup a Magento store: tutorial + script

Why do you need to implement full Magento backup? Did you know that there are two types of shop owners? Those who backup their stores...