Gateway Disabled: PayPal does not support your store currency. When we change the currency to INR as store currency in Woocommerce settings then it will result in an error on woocommerce paypal page like this. Reason The reason is quite simple because Paypal does not support Indian Currency and you can check in list of…
PHP Mail Function Logging – mail.log
PHP 5.3.0 comes with many new features and one of important concept is Logging of Mail Function. What does it do ? Log all mail() calls including the full path of the script, line number, to address and headers. How does it work ? Go to your php.ini file. Find mail.log in that file. Enable…
Advance CakePHP Interview Questions
Here is the list of advance Cakephp interview questions that every Cakephp developer should know before going for interview. And here I am just giving overview of answers so for complete answers you should go through respective documentation. Question – How many different type of Cache CakePHP Supports? FileCache ApcCache Wincache XcacheEngine MemcacheEngine RedisEngine FileEngine is always…
How To Open Contact Form 7 in Pop Up in WordPress
Contact Form 7 in Pop Up If you want to create a automatic pop up on your wordpress website’s home page load then there are just two simple steps to do this. So to do this we need two plugins Contact Form 7 and Easy FancyBox. After installing these two plugins we just need to…
Cake PHP Url Rewriting
CakePHP Url Rewriting Some developers don’t like CakePhp Url structure because controller name should end with “s” and that cause a lot of dissatisfaction fro developers while developing with cakephp. For this CakePhp provides a simple and effective way to rewrite url in seo friendly way and according to client requirement. So how to write…
CakePhp Association With Example
CakePhp Association Example CakePhp provides a very powerfull mechanism to handle relation between models ( i.e foreign key relationship between database tables ) by itself with the call of just one function. The four association types in CakePHP are: hasOne, hasMany, belongsTo, and hasAndBelongsToMany (HABTM). Here I am giving expamle for hasOne association in CakePhp. There will…