Hi - I hope you don't mind if I ask you one more question - but it requires a bit of an explanation. I downloaded a Links hack from the phpbb site that allows me to add a links gallery off my bulletin (and for users to add their own links).
The installation instructions on the hack said:
***
How to install: Download the zip file and language pack(s) - available on this site - for the language(s) you have installed on your forums. Unpack to any directory on your site, change values of $phpbb_root_path and 'INDEX_LINKS_PAGE' and run MOD_Links_install.php. That's all.
***
So, I downloaded the package in my bulletin directory (../bulletin/links...).
I wasn't sure about the chaing values of $phpbb_root_path bit, so I checked my bulletin's index.php file. The line reads:
Code:define('IN_PHPBB', true);
$phpbb_root_path = './';
include($phpbb_root_path . 'extension.inc');
include($phpbb_root_path . 'common.'.$phpEx);
Since the root path looks the same as noted in the installation directions, I didn't change any paths. I did run the MOD_links.php and it ran fine. Now, when I tried to check my links file, I received this error message:
****
Warning: main(./language/lang_english/MOD_links.php): failed to open stream: No such file or directory in /web/htdocs/pages/bulletin/links.php on line 44
Warning: main(): Failed opening './language/lang_english/MOD_links.php' for inclusion (include_path='') in /web/htdocs/pages/bulletin/links.php on line 44
Warning: Cannot modify header information - headers already sent by (output started at /web/htdocs/pages/bulletin/links.php:44) in /web/htdocs/pages/bulletin/includes/page_header.php on line 617
Warning: Cannot modify header information - headers already sent by (output started at /web/htdocs/pages/bulletin/links.php:44) in /web/htdocs/pages/bulletin/includes/page_header.php on line 619
Warning: Cannot modify header information - headers already sent by (output started at /web/htdocs/pages/bulletin/links.php:44) in /web/htdocs/pages/bulletin/includes/page_header.php on line 620
****
The line #44 in my links.php document reads:
Code:include($phpbb_root_path . 'language/lang_' . $board_config['default_lang'] . '/MOD_links.' . $phpEx);
So, where did I go wrong? My header file is located in the bulletin/template/subsilver/ directory....
HOpe you can help!
Thanks,
Natasha