I want to add allow_url_fopen to my server using .htaccess because I don't have access it to add it directly.So I want to add it using .htaccess
I search on google and found some solution that by adding this line to .htaccss it will work so I add it this php_value allow_url_fopen On into my existing .htaccess now complete code it this
RewriteEngine on
RewriteCond $1 !^(index\.php|system|css|functions)
RewriteRule ^(.*)$ index.php?/$1 [L]
php_value allow_url_fopen On
but now I run my website it gives me Internal Server Error
can anybody tell me what I am doing wrong.
php_value allow_url_fopen Onin .htaccess, you can test it nowphp_value allow_url_fopen On? and vice-versa?