Using PayPal WPP (Express Checkout) with Django
A couple days ago I had to deal with PayPal WPP (Express Checkout) for some application and I found the module in the GitHub: https://github.com/dcramer/django-paypal.
Which works great but it was very hard to find how to set up the PayPal Payment Pro with Express Checkout method and fill customer forms in PayPal. I decided to find how to deal with it and I figured out how to do that.
After all developing stuff related to install this module to your django aplication you need to know how to send requests to PayPal using this method. And here’s the answer:
Read the full article »
How to Add a New Custom Field in Prestashop
I’ve figured out how to add new field to database using Prestashop (1.4.3, but I think for the newer versions would be the same). This solution gives you new field in database and you will be able to edit / save data to this field in your admin panel, for my example I needed a field which was called “number of photos”. Below you can see how it works.
Read the full article »
Beginning Working With Android
Hi there,
A couple days ago I decided to improve my programming skills by learning something new. And that thing is android. It’s a very powerful tool and I can say it for using it only for couple days. For me as a programmer beginning was easy. All variables, classes, constructions etc. are almost the same, of course Java is more powerful than PHP is but even though I can handle it : )
In next note I will put some code which may be interested for you. See you!