Some times you need to on allow_url_fopen in server. then you can try by the following two ways:
1. Create a .htaccess file and keep it to root folder ( sometimes it may need to place it one step back folder of the root) and paste this code there.
php_value allow_url_fopen On
2. Create a php.ini file (for update srver php5.ini) and keep it to root folder( sometimes it may need to place it one step back folder of the root) and paste the following code there
allow_url_fopen = On;
I, personally get effet by using the above solutions.
1. Create a .htaccess file and keep it to root folder ( sometimes it may need to place it one step back folder of the root) and paste this code there.
php_value allow_url_fopen On
2. Create a php.ini file (for update srver php5.ini) and keep it to root folder( sometimes it may need to place it one step back folder of the root) and paste the following code there
allow_url_fopen = On;
I, personally get effet by using the above solutions.
No comments:
Post a Comment