Posted on: 08/05/03 11:50pm
By: Anonymous (tilight)
I tried to install it, and I got this:
Warning: main(system/databases/mysql.class.php): failed to open stream: No such file or directory in /home/tilight/system/lib-database.php on line 110
Fatal error: main(): Failed opening required \'system/databases/mysql.class.php\' (include_path=\'.:/usr/lib/php:/usr/local/lib/php\') in /home/tilight/system/lib-database.php on line 110
Re:Please help, install probs.
Posted on: 08/06/03 12:07am
By: DTrumbower
Are you paths correct in config.php and lib-common.php?
Re:Please help, install probs.
Posted on: 08/06/03 08:55am
By: Anonymous (tilight)
I think so, and my server uses Linux.
// This should point to the directory where your config.php file resides.
$_CONF[\'/home/tilight/\'] = \'/path/to/geeklog/\'; // should end in a slash
// You only need to change this if you moved or renamed the public_html
// directory. In that case, you should specify the complete path to the
// directory (i.e. without the $_CONF[\'path\']) like this:
// $_CONF[\'path_html\'] = \'/path/to/your/public_html/\';
$_CONF[\'public_html/\'] = $_CONF[\'path\'] . \'public_html/\';
Re:Please help, install probs.
Posted on: 08/06/03 08:57am
By: Anonymous (tilight)
And here is my libcommon
require_once( \'/home/tilight/config.php\' );
Re:Please help, install probs.
Posted on: 08/06/03 05:10pm
By: rawdata
What is this?
$_CONF['/home/tilight/'] = '/path/to/geeklog/'; // should end in a slash
You should never ever change anything on the left side of an equals sign because those are variables used by the script. Only change info on the right side. In your case, that should probably be:
$_CONF['path'] = '/home/tilight/';