Angkor Wat temple in Cambodia

Angkor Wat is a temple complex in Cambodia and the largest religious monument in the world, on a site measuring 162.6 hectares (1,626,000 m2; 402 acres).

Kep twon in Cambodia

Kep is a seaside resort area in Cambodia and includes the small town of the same name which is the capital of Kep Province.

This is default featured slide 3 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.

This is default featured slide 4 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.

This is default featured slide 5 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.

Showing posts with label General Knowledge. Show all posts
Showing posts with label General Knowledge. Show all posts

25 September, 2015

How to store customer profile in CIM (Customer Information Manager) authorize.net

With Customer Information Manager of authorize.net, we can store customer, payment and shipping profile in CIM for next payment without requiring user to input all information in credit card again. You could visit this url (http://developer.authorize.net/api/cim/) and download of library and read it. So, it could help you to implement with it. If you need more any help from me, please contact me by email chouchantha@gmail.com or Skype (chanthachou).

11 November, 2012

Auto re-direct after payment with Google Chekcout?

Hello, everybody I am a new baby of development related with Pay Pay and Google Checkout payment. I am implement with Google Checkout and got a problem that don't solve yet now.


Current now, it could work with Google Checkout that it could pay money with Credit Card that we create it. But at last it provide "Thanks you page" to us that provide link to allow user click to be back to our website. My idea, I don't want to do like, I would like to be auto re-direct to our website after payment process finished.

I would like to have a code that could trigger back to website after payment process ready with Google Checkout. I try to research on some document and other forums but it is not successfully yet. But some forums and documents said that Google Checkout don't provide auto re-direct back to our website after payment ready such as PayPal processing.

Does anybody used to implement like that? Does Google Checkout provide auto re-direct to our website? Please share any ideas if you have.

08 November, 2012

How PayPal withdraw cash from Credit card with Sandbox

PayPal has provided method that allow user to pay cash with credit card in Sandbox testing site or live when users want to buy something online.

I have an implement on it with testing site first and it successes for me with using PayPal API that It could charge money from buyer credit card and transfer to my account in PayPal account, but I have a problem that I don’t see PayPal withdraw cash from credit card of buyer account that I took it to buy item in online.

I try to search with it and some document or forum said that on Sandbox Testing site don’t allow to withdraw cash from credit, but some it will take 5 to 7 day to withdraw or transfer money from bank to PayPal account. Has anybody got problem like that? Does has any methods to solve it? How many day will PayPal withdraw cash from our credit card?

Please share any idea that you know related to it.

06 November, 2012

Save session with session_regenerate_id

Session_destroy is function build in for PHP that will destroy all session in our website. For example: when I add to cart then I log out then my session in cart was destroyed all. And to avoid this problem occur we can use this paragraph {
$oldSession = session_id();
session_regenerate_id();
$newSession = session_id();
session_id($oldSession);


session_destroy();

$oldSession = $_SESSION;
session_id($newSession);
session_start();
$_SESSION = $oldSession;
}

session_regenerate_id() function could help us to solve this problem because we could keep our session to display even though we log out (clear session). Does anybody has good solution more than that? Please share any idea on it.

Related Posts Plugin for WordPress, Blogger...