• The BIND DNS server has already been deprecated and removed from Plesk for Windows.
    If a Plesk for Windows server is still using BIND, the upgrade to Plesk Obsidian 18.0.70 will be unavailable until the administrator switches the DNS server to Microsoft DNS. We strongly recommend transitioning to Microsoft DNS within the next 6 weeks, before the Plesk 18.0.70 release.
  • The Horde component is removed from Plesk Installer. We recommend switching to another webmail software supported in Plesk.

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