Search This Blog

Thursday, January 29, 2015

Wordpress image upload http error on Nginx




This was due to the following param in Nginx.conf under http section, Just change it to maximum size of you want to upload 

example
client_max_body_size 5M;

Thursday, October 9, 2014

Indian Rupee Symbol in OpenCart


Execute these Queries in you database

Alter table oc_currency change column symbol_left symbol_left varchar(50);

Update oc_currency set symbol_left='<i class="fa fa-inr">&nbsp;</i>' where currency_id=4;
Change the stylesheet.css in "catalog/view/theme/default/stylesheet/stylesheet.css" To remove the font size to make it even across the application

Note by default Font Awesome is included in 2.0 Opencart if your theme doesn't have added it to make this solution work

Monday, September 22, 2014

Jquery 1.10 Cheetsheet


Selectors

Events

Core

Note : RED colored functions/items are frequently used