Posts

Showing posts from March, 2015

I do not have custom thumbnail button in Youtube

Image
When you upload a video into your youtube account, you will be give an option to use one thumbnail from among the three automatically shown. But there is an advanced facility to add a custom thumbnail which is good to beef up your marketing ideas. Sometimes this button may not be shown in your screen. The problem here is that you have not verified your youtube account so far. So get it verified to make sure that you have all facilities including 'custom thumbnail'. Use the 'verify your account' link form the control panel. Verification code can be made available as SMS to your mobile. Once verified, go to 'Video manager' Then you will see the list of videos you have uploaded with and edit button on the side. This edit button have a drop down sub-menu. Select 'info and settings' from the drop down menu. You will see custom button. Use it to upload the image of your choice.

How to add Google Analytics code in Opencart?

Image
1. Log into admin http://www.yourshop.com/admin 2. Go to System >> Settings > 3. Click on the action button on the right of the store name 4. Select 'Sever' Tab  5. Go to the bottom of the page and enter the code in the space provided.  Cool!  If found useful, bye me a coffee for the time you saved.

Employee does not exist or password is incorrect. Cannot login into my prestashop admin

Image
All of a sudden this happens in  your Prestashop and you can not log in. Follow the step by step procedure carefully and you will succeed 1. Open the following file config/settings.inc.php 2. Find the line starting with define('_COOKIE_KEY_', ....... Eg: define('_COOKIE_KEY_', 'NShMAQ00aERNqQK1bDkfTJSLT4EHEGg69JPkdXh6j5wcC8W4OVm9yp7m'); 3. Copy the key (the long alpha-numeric) from the same line Eg:NShMAQ00aERNqQK1bDkfTJSLT4EHEGg69JPkdXh6j5wcC8W4OVm9yp7m 4. open your database in phpMyAdmin 5. Find the following table ps_employee You will see at least one row of data which containts the name, email, password etc of the administrator of the shop. 6. Click on teh SQL button on the top of phpMyAdmin 7. Type the following query in to the blank area SELECT MD5(CONCAT("your cookie key","your new pass")) 8. Modify the query replacing the "your cookie key" with the key you copied in step: 9. Modify "You...