I get the following error when I go to http://zyz.com/abc/index.php:
Warning: require_once(C:\Inetpub\vhosts\xyz.com\httpdocs\abc\classes/mysqli.cls.inc) [function.require-once]: failed to open stream: No such file or directory in C:\Inetpub\vhosts\xyz.com\httpdocs\abc\classes\_ClassLoader.inc on line 5
below is the class loader.inc file
<?php
function __autoload($clsname) {
$ClassDir = dirname( __FILE__ ) . "/";
require_once $ClassDir . strtolower( $clsname ) . '.cls.inc';
}
?>
You don’t have
mysqliinstalled, but are trying to use it. Your__autoloadfunction tries to load it from the directory of the web application, but that’s not where it would be located if it was installed. Install and configuremysqlito fix the problem. You can check whether it is installed by writingphpinfo();in any.phpfile.