• Plesk Uservoice will be deprecated by October. Moving forward, all product feature requests and improvement suggestions will be managed through our new platform Plesk Productboard.
    To continue sharing your ideas and feedback, please visit features.plesk.com

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