|
Your path to the files are wrong. The information in our post is an example not an absolute. You need to place the proper path in there. ./ is for a directory in your forums directory. Since your photopost is not there it is back one level
include('./photopost/inc_features.php');
include('./photopost/inc_photopost.php');
would instead be
include('../photopost/inc_features.php');
include('../photopost/inc_photopost.php');
|