After several verifications, I confirm than I have modified the right php.ini file
I even modify the php4/php.ini file to be sure
What did I do exactly ?
Code:
# nano /var/www/fcgi/domainname.com/php5/php.ini
I search the string "allow_url_include" :
Code:
;;;;;;;;;;;;;;;;;;
; Fopen wrappers ;
;;;;;;;;;;;;;;;;;;
; Whether to allow the treatment of URLs (like http:// or ftp://) as files.
allow_url_fopen = On
; Whether to allow include/require to open URLs (like http:// or ftp://) as files.
allow_url_include = Off
So, I have just turn On the "allow_url_include" variable because I have this error on the website :
Code:
Warning: include() [function.include]: URL file-access is disabled in the server configuration in /var/www/virtual/domainame.com/htdocs/file.php on line 83
Finaly, I have restarted apache2 :
Code:
# /etc/init.d/apache2 restart
If my memory works well, with the RC3, this procedure works.
Now, I only can see than the error is still present on the website, despite the modification in this php.ini file
Maybe I do something wrong, I don't know....[/code]