Get digital clock screensaver Fliqlo for your PC

I have been searching for this coolest digital clock screensaver for awhile once I saw it on my friend’s Macbook.

 

 

This screensaver developed by http://www.9031.com/ . You can download it here:

 

Fliqlo digital clock screen saver for PC (5324)

 

Posted in Viva | 4 Comments

Paypal Website Payment Pro Module (UK & US) – Free Prestashop Module

************ PRE-ORDER IS NOW AVAILABLE  ************
Commercial version of Paypal WPP payment for prestashop (PAYPALDIRECT) is now available for pre-order with 30% OFF. You can follow the link here to make sure you own one today.
*********************************************************

Introduction:

Paypal Website Payments Pro allows you to accept payment directly on your website or by phone, fax and mail. Customers can pay you with all major debit and credit cards as well as PayPal balance and bank transfers.

With this solution you get all the benefits of a merchant account and gateway in one solution. This package should also include PayPal Express Checkout which enables buyers to checkout in as little as three click, however, for this initial version v1.0.0 we have not included this on the checkout page.

In order to use this Paypal WPP Module for Prestashop, you need

  1. Prestashop version 1.2.5 (older version need  to update the Tools.php class..)
  2. Signup Paypal Website Payment Pro account
  3. Signup Cardinal Centinel for 3D secure (note: Paypal use Cardinel Centinel to handle 3D secure authentication)

For testing purpose you can setup Paypal Sandbox and Cardinel Centinel sandbox account.

Paypal WPP Pro Module’s key features:

  • Accept payment directly on your website
  • 3D secure authentication implemented (Visa verified & Mastercard secure for UK)
  • Accept payment in various currencies (Pounds, USD , Euro, Canadian Dollar, Yen etc..)

Screenshots

(the screenshots took from my live site.. you may see it differently on yours)

Test cards

Centinel Integration Guide (1039)

That’s it from us @ Quay Creative.

Posted in E-commerce, Prestashop | Tagged , , , , , | 101 Comments

How to delete orders in Prestashop

Most of you have created few test transactions with your ecommerce website (Prestashop) when building it. By the time you decided to delete / clear all test orders in Back Office but wonder how as no “delete button” available.

The solutions is very simple

Option 1:

Click on one of the order and replace the parameters “vieworder” by “deleteorder” from the url

For example

http://yourdomain.com/admin/index.php?tab=AdminOrders&id_order=7&vieworder&token=798dfd720021761c80d828eb3f2a8621

Change it to:

http://yourdomain.com/admin/index.php?tab=AdminOrders&id_order=7&deleteorder&token=798dfd720021761c80d828eb3f2a8621

Option 2: For the sake of PHP

Go to AdminOrders.php class in webroot\admin\tabs\AdminOrders.php

At line 25 look for

global $cookie, $currentIndex;

And add this code below it…

$this->delete = true;

That’s it.. when you click on “Order” main tab you will see the delete button “X” next to each order (screenshot)

add-delete-button-prestashop-orders

Posted in PHP, Prestashop | Tagged , , | 10 Comments

Firefox browser getting worse and worse

I have been using Firefox for more than 3 years now since version 2.. it is now on version 3.5. Not sure what you guys doing to improve it but it just getting worse and worse.

firefox

Firefox browser is quite often crashed or freeze when I clicked on a hyper link!? WTF ?? Also it ate up to 900mb of my memory ram after just 15 minutes of using. In addition, playing online video even worse, keep loosing sound and freeze for 1 or 2 seconds.

Now I am going to switch and stick with Google Chrome, and only use Firefox as a debugging tool (Firebug + Developer toolbar)

If you experienced the same issue, love to hear some of your thoughts!

Posted in Viva | 2 Comments

php check if external image exists

Today small task for an ecommerce website is to look for all possible external images from supplier and download to our own server. We have thought of using @fopen() a common php function to open a file. However, there is more to find out.

< ?php
if (@fclose(@fopen("http://www.domain.com/image.jpg", "r"))) {
echo "External image exists";
} else {
echo "External image does not exist";
} ?>

However, we soon realised that using fopen() does not work properly if the external website handle 404 page well, which mean if the image does not exist their server will redirect audience to an “notfound” page or to “imagenotfound.jpg”.

To resolve this problem, you can simply use GetImageSize() function from GD library.

< ?php
if (@GetImageSize("http://www.domain.com/image.jpg")) {
<code>echo "External image exists";
} else {
echo "External image does not exist";
} ?>
Posted in PHP, Web development | Tagged , , , | Leave a comment