Hello,
In this step it says to do the following:
3) In your
vB index.php file, you will need to add two lines under under these four:
// ######################### REQUIRE BACK-END ############################
require_once('./global.php');
require_once('./includes/functions_bigthree.php');
require_once('./includes/functions_forumlist.php');
include('./photopost/inc_features.php');
include('./photopost/inc_photopost.php');
If I add the following line : include('./photopost/inc_photopost.php'); it is fine. However when I add the other: include('./photopost/inc_features.php');
I get errors. I tried to call up the inc_features.php page and get the following:
Warning: mysql_query() [function.mysql-query]: Access denied for user 'nobody'@'localhost' (using password: NO) in /home/cheftalk/public_html/photopost/inc_photopost.php on line 64
Warning: mysql_query() [function.mysql-query]: A link to the server could not be established in /home/cheftalk/public_html/photopost/inc_photopost.php on line 64
Warning: mysql_fetch_row(): supplied argument is not a valid MySQL result resource in /home/cheftalk/public_html/photopost/inc_photopost.php on line 68
Warning: mysql_free_result(): supplied argument is not a valid MySQL result resource in /home/cheftalk/public_html/photopost/inc_photopost.php on line 89
Warning: mysql_query() [function.mysql-query]: Access denied for user 'nobody'@'localhost' (using password: NO) in /home/cheftalk/public_html/photopost/inc_photopost.php on line 126
Warning: mysql_query() [function.mysql-query]: A link to the server could not be established in /home/cheftalk/public_html/photopost/inc_photopost.php on line 126
Warning: mysql_fetch_row(): supplied argument is not a valid MySQL result resource in /home/cheftalk/public_html/photopost/inc_photopost.php on line 128
Warning: mysql_free_result(): supplied argument is not a valid MySQL result resource in /home/cheftalk/public_html/photopost/inc_photopost.php on line 143
What am I missing.
Thanks in advance Chuck.