• Dear Pleskians! The Plesk Forum will be undergoing scheduled maintenance on Monday, 7th of July, at 9:00 AM UTC. The expected maintenance window is 2 hours.
    Thank you in advance for your patience and understanding on the matter.

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