Archive for the 'e-commerce' Category

Quickly change a colour in a stylesheet from the command line

Quickly change a col...

Change all instances of ‘#ebbc58′ to ‘#ffff33′ in all files ending .css in the directory ‘/var/www/skin/frontend/default/default/’ and all its sub-directories. find /var/www/skin/frontend/default/default/ -name “*.css” -print | xargs...
EV SSL Certificate Prices

EV SSL Certificate P...

Extended Validation SSL Certificates Help to Protect Your Customers EV SSL Issuer EV SSL Certificate Features 1 Year 2 Years GlobalSign Extended Validation SSL (EV SSL) immediately tells your customers that you are using the highest levels of SSL security available. By turning...
SSL certificate comparison

SSL certificate comp...

A quick comparison of all budget entry level SSL certificates. None of these certificates are EV (extended validation) certificates. SSL Certificate Certificate Features Price Per Year Comodo SSL Comodo’s most popular fully business validated SSL Certificate, Comodo’s...
Magento Image Import

Magento Image Import...

Need to put all your images in the same directory structure that Magento uses? Put all your images in the same directory and enter this: for i in *.*; do mkdir -p ${i:0:1}/${i:1:1}/; mv $i ${i:0:1}/${i:1:1}/; done; Which will move all your images into different directories depending...