Archive / E-commerce

RSS feed for this section

read the latest news and articles regarding the ecommerce field in order to keep you up to date to this forever changing environment.

I’m back!

Life is not always perfect and I needed to leave this site into forgottenness for quite some time. Next I’ll release the Prestashop modules free of charge – a link to GitHub will follow. For the rest of products & … Continue reading

move/migrate blogger to wordpress

1. login to your blogger account, go to Template section and enable classic template from the bottom of the page. 2. edit your main template (click edit html) and place the following code between the head elements <script> <MainOrArchivePage> window.location.href=”http://jewelryloveaffair.com/” … Continue reading

Quickly check if under a DOS attack

Check how many connections an ip has to your server, ordered by the most connections netstat -anp |grep ‘tcp\|udp’ | awk ‘{print $5}’ | cut -d: -f1 | sort | uniq -c | sort -n #check your tcp timeout time … Continue reading

debug sql inside cakephp model

$dbo = $this->getDatasource(); $dbo->fullDebug = true; $this->find(‘all’, … $logs = $dbo->_queriesLog; $log = end($logs); print_r($logs);exit;

Ways to safely accept online payments

Many ecommerce businesses receive international orders for both single items as well as large quantities. These businesses usually take credit card payments for the orders, which puts them at great risk of incurring chargebacks, especially for large ticket items and … Continue reading