• If you are still using CentOS 7.9, it's time to convert to Alma 8 with the free centos2alma tool by Plesk or Plesk Migrator. Please let us know your experiences or concerns in this thread:
    CentOS2Alma discussion

PHP Problem

G

Gicik

Guest
Warning: main(): Failed opening '' for inclusion (include_path='.;./includes;./pear') in


I get this error when i use include function like:

switch($page) {

case "dosyalar": $icerik = "dosyalar.php";
break;
..
..
}

I didn't change any value that in php.ini .... But i can't use this function.

Please help (this is not a programming problem. This is about PLESK's configuration)
 
As far as I know, message "Failed opening 'filename'" means that PHP engine cannot find file named 'filename' in standard registered pathes. But if filename is empty, it means that you use script like
include_once($page_to_load);
but value for $page_to_load variable is empty.
IMHO.
 
Back
Top