I have since moved the server path and updated and reupdated the information in config-int.php and config-inc.php.
I'm still getting the same errors:
Warning: chdir(): No such file or directory (errno 2) in /home/liddyslo/public_html/photopost/header-inc.php on line 64
Warning: main(./global.php): failed to open stream: No such file or directory in /home/liddyslo/public_html/photopost/header-inc.php on line 65
Warning: main(./global.php): failed to open stream: No such file or directory in /home/liddyslo/public_html/photopost/header-inc.php on line 65
Warning: main(./global.php): failed to open stream: No such file or directory in /home/liddyslo/public_html/photopost/header-inc.php on line 65
Fatal error: main(): Failed opening required './global.php' (include_path='.:/usr/lib/php:/usr/local/lib/php') in /home/liddyslo/public_html/photopost/header-inc.php on line 65
Here's my config-int.php info:
<?php
//-----------------------------------------------------------------------------------//
// Forum Integration Configuration File
//
// For users using our forum integration files, there are a few things
// we need to know - like the location of PhotoPost and your forums; this
// prevents us from doing alot of extra processing in these scripts we otherwise
// would have to do.
//
// Follow the guides to set your paths and enable the integration options you
// want.
//-----------------------------------------------------------------------------------//
// We need to know the server paths to both your
vB installation and your PhotoPost installation
$vbpath = "/home/liddysloft/public_html/forums";
$pppath = "/home/liddysloft/public_html/photopost";
// We need the URL path to your PhotoPost and
vb installation
$url_path = "/photopost";
$vb_urlpath = "/forums";
// The URL of your photo dir where your images are stored (with / at end)
$data_dir = "/photopost/data/";
// If your PhotoPost tables have a prefix, put it here
// Example:
// $pp_db_prefix = "pp_";
$pp_db_prefix = "pp_";
// If you use the mobile phone integration, set this variable to the CatID for the gallery
define( "MOBILE_CAT", -1 );
//------------------------------------- vB3 -----------------------------------------//
// VB3_INTEGRATION is for using vB3 headers/footers and styles
// VB3_ENHANCEDINT is for Enhanced vB3 Integration (using vB3 elements in PhotoPost)
// requires that VB3_INTEGRATION also be set to 'on'
// VB3_COMMWYSIWYG is for turning on the WYSIWYG interface on the Post A Comment page
// if you set this to 'off' then only the standard input box will appear
//
// Set to 'on' to enable specific integrations
define("VB3_INTEGRATION", 'on');
define("VB3_ENHANCEDINT", 'off');
define("VB3_COMMWYSIWYG", 'off');
//-----------------------------------------------------------------------------------//
//------------------------------------- vB2 -----------------------------------------//
// VB2_INTEGRATION is if you are using vB2 and want to use the vB2 integration
define("VB2_INTEGRATION", 'off');
//-----------------------------------------------------------------------------------//
//---------------------------------- vB2 Portal -------------------------------------//
// To use set path and set flag to 'on'
define("VBP2_INTEGRATION", 'off');
$vbportal="/home/sites/yoursite/web/vbportal";
//-----------------------------------------------------------------------------------//
?>
What am I doing wrong?
Thanks!