Saturday, April 17, 2010

PrestaShop Tips - Customiize Paypal payment page to use your own logo and image without https

If you are running eCommerce shopping cart or online shop software like PrestaShop and you are using Paypal, but you don't have HTTPs, in that case you will not able to customize Paypal payment page to use your header image or logo.

But I found a very tricky way to do customize Paypal payment to use your own logo or header image. Here is how to do:

[Prepare your logo and get an URL with https]
First, you will have to get your logo or page header image done. Then upload your image to any website with HTTPS (SSL) enabled that you have access. And get the URL of your logo or header image.

If you don't have any website to upload, you create an account at Microsoft Windows Live account, then create a Shared Album at Windows Live Photos, and upload your image there and share your image with public. So you will get an URL of your image.

Note: By default, the URL might be non https, but it works with https too.

[At your Paypal Account]
1.From the Account Overview page, click on the Profile sub-tab

2.Click on the Custom Payment Pages link under the Selling Preferences heading.
This will take you to the Custom Payment Page Styles page.

3.From this page, you can Add, Edit, Preview, and Remove page styles,
as well as make any page style your Primary style

[At your PrestaShop]
4 If your image URL is a Shared image from WIndows Live Photos , then the URL might be too long to fit in your Paypal setting page.(It does not allow very long image URL). In that case, you can have it set up at your PrestaShop Paypal module screen.

You can see the sample by going yo paypal payment page at:

Saturday, July 25, 2009

Hard Reset Sumsong Omnia

How to Hard Reset the Samsung Omnia

1. Poke the soft reset hole beside your power button(Poke and Release)
2. Press and hold the Call and Cancel Button together(Do it immediately after Step 1)
3. Do not release Call and Cancel button, the Samsung Omnia Screen Appear
4. The Reset Screen will appear as below

Installing and configuring Microsoft Visual SourceSafe for Internet (Remote) access

http://diaryproducts.net/about/operating_systems/windows/sourcesafe_2005_internet_iis
http://alinconstantin.homeip.net/webdocs/scc/VSS_Internet.htm

Monday, June 29, 2009

Make Vista fast

0. Install following hot fix from Microsoft
http://support.microsoft.com/default.aspx/kb/931770

1. Disable "DWM.exe"
Task Manager -->New Task -->Services.msc
Stop "Desktop Window Manager" and change it to start up manually
2. Disable Sidebar
Remove check box "Start Windows Sidebar when windows starts"
Control Panel\Appearance and Personalization\Windows Sidebar Properties
3. Change to use classic file explorer
Control Panel\Appearance and Personalization\Folder Options

General --> choose "Use Windows classic folders"

4.Turn off "Remote Differential Compression"
To turn it off go in Control Panel / Programs and features / Turn on or turn off
Windows features and uncheck "Remote Differential Compression"


5.Disable TCP/IP "Receive Window Auto-Tuning "
To disable it, open a command prompt and type (run as Administrator):

netsh interface tcp set global rss=disabled
netsh interface tcp set global autotuninglevel=disabled

6. Disable Windows Search Service
TaskManager -->New Task -->Services.msc
Stop "Windows Search Service" and change it to start up manually

Vista Copy file slowly

1.Turn off "Remote Differential Compression"
To turn it off go in Control Panel / Programs and features / Turn on or turn off Windows features and uncheck "Remote Differential Compression"


2.Disable TCP/IP "Receive Window Auto-Tuning "
To disable it, open a command prompt and type (run as Administrator):

netsh interface tcp set global rss=disabled
netsh interface tcp set global autotuninglevel=disabled

Saturday, January 10, 2009

version DataGrid contrrol of SilverLight 2.0 is available

Many bugs have been fixed for DataGrid of SilverLight,
it is better to get latest version.

The problem in this post wasted me 2 days time,until I found this post and get answered.
http://silverlight.net/forums/p/63904/157875.aspx#157875

See here for detail and download/installsation in structions
http://silverlight.net/forums/t/59990.aspx

Tuesday, January 6, 2009

ASP.NET AJAX callbacks to Web Methods in ASPX pages

http://geekswithblogs.net/frankw/archive/2008/03/13/asp.net-ajax-callbacks-to-web-methods-in-aspx-pages.aspx

The following content comes from page in above link
----------------------------------------------------

Making ASP.NET AJAX calls to web services has become increasingly popular these days. This approach not only provides a good separation of concerns but also makes it possible to create a truly ajax'ed web site with JavaScript's power on the client side. However, you may in some situations want to move one or more web methods to ASPX pages. You often have methods that are logically dedicated to specific ASPX pages, and you don't really want them to be exposed to the public through the ASMX file. Generally, this is the most appealing reason why you want to place web methods in ASPX pages.

Both ASP.NET AJAX Extensions and ASP.NET 3.5 support AJAX callbacks to the web methods placed in ASPX pages. It only requires a few simple steps to do this. For example, you want to move a web method called GetProducts to an page named Products.aspx, and you want to invoke the GetProducts method directly from JavaScript. The first step is expose GetProducts as a web method.