define('DIR_WS_PHPBB', '/home/C/csstempl/www/forum/');
define('DIR_WS_PHPBB', '/home/C/csstempl/www/forum/');
If this is located where I think it is from your post try changing it to this:
Code:define('DIR_WS_PHPBB', '/forum/');
Zen-Venom Get Bitten
I have tried but nothing works if I do it like that![]()
if you hover over the forum link in your info sidebox you see thisnote the extra /
could you post your configure.php without user/password of course
Mike
AEIIA - Zen Cart Certified & PCI Compliant Hosting
The Zen Cart Forum...Better than a monitor covered with post-it notes!
OK I just did this locally and this is the result for the configure.php entry:
My directory for the forum sits with the Zen Cart files in a folder named phpbbCode:define('DIR_WS_PHPBB', 'phpbb/');
You have it installed with/in a folder named "forum"
so change what I incorrectly posted earlier to:
And see if that corrects it. This is due to the heading in the configure.php file for these entries that states:Code:define('DIR_WS_PHPBB', 'forum/');
And not as the next set of entries requires which is this:// NOTE: be sure to leave the trailing '/' at the end of these lines if you make changes!
// * DIR_WS_* = Webserver directories (virtual/URL)
// these paths are relative to top of your webspace ... (ie: under the public_html or httpdocs folder)
Which is what you are attempting with:// * DIR_FS_* = Filesystem directories (local/physical)
//the following path is a COMPLETE path to your Zen Cart files. eg: /var/www/vhost/accountname/public_html/store/
Code:define('DIR_WS_PHPBB', '/home/C/csstempl/www/forum/');
Zen-Venom Get Bitten
These are a couple of the lines from my config fileMaybe this will help......Code:define('DIR_FS_CATALOG', '/home/staband/public_html/'); define('DIR_WS_PHPBB', '/home/staband/public_html/forum/');
Mike
AEIIA - Zen Cart Certified & PCI Compliant Hosting
The Zen Cart Forum...Better than a monitor covered with post-it notes!
Thanks for the help
I removed the / before "forum" and it works perfect now.
Code:define('DIR_WS_PHPBB', 'forum/');