| |
| |
|
|
|
|
| |
|
| |
|
| :: |
| Author |
Message |
the0ne
Joined: 25 Oct 2006 Posts: 14
|
Posted: Thu Jul 05, 2007 3:10 am Post subject: T_ENCAPSED AND WHITESPACE, expecting T STRING or ..... |
|
|
I have installed adv_phpbb3_mod_rewriteV0-2-0RC2a & phpBB3_no_dupeV0-2-0RC2 . It throws this error while trying to look @ the post or forum threads
| Code: | | Parse error: parse error, unexpected T_ENCAPSED_AND_WHITESPACE, expecting T_STRING or T_VARIABLE or T_NUM_STRING in /home/content/s/a/i/saijogeorge/html/forum/includes/functions.php on line 3999 |
the code
cant figureout what went wrong ? |
|
|
| Back to top |
|
 |
|
 |
dcz Administrateur - Site Admin

Joined: 28 Apr 2006 Posts: 15242
|
Posted: Sun Jul 08, 2007 4:07 pm Post subject: Re: T_ENCAPSED AND WHITESPACE, expecting T STRING or ..... |
|
|
The line with the error is this one :
| Code: | | $user_online_link = '<a href="' . append_sid("{$phpbb_root_path}memberlist.$phpEx", ",'mode=viewprofile&u=' . $row['user_id']) . '"' . $user_colour . '>' . $user_online_link . '</a>'; |
you're not supposed to touch it while installing the phpBB3 SEO mod rewrite, but it looks like you did.
The original phpBB3.0.RC2 line of code that should be there instead is :
| Code: | | $user_online_link = '<a href="' . append_sid("{$phpbb_root_path}memberlist.$phpEx", 'mode=viewprofile&u=' . $row['user_id']) . '"' . $user_colour . '>' . $user_online_link . '</a>'; |
++ |
_________________ Useful links :
SEO Forum || SEO Directory || SEO phpBB || SEO phpBB3 || Search
____________________
Liens Utiles :
Forum référencement || Annuaire référencement || Référencement phpBB || Référencement phpBB3 || Recherche |
|
| Back to top |
|
 |
the0ne
Joined: 25 Oct 2006 Posts: 14
|
Posted: Tue Jul 10, 2007 3:36 am Post subject: Re: T_ENCAPSED AND WHITESPACE, expecting T STRING or ..... |
|
|
thanks mate will try that again  |
|
|
| Back to top |
|
 |
|
|
|
|
| |
|
|
|
|
| |
|
|
|
|
| |