| :: |
| Author |
Message |
GoodOmens
Joined: 18 Oct 2007 Posts: 7
|
Posted: Thu Oct 18, 2007 9:18 pm Post subject: RC7 + new phpbbseo code = no ACP access |
|
|
After installing RC7 and following the update guide for php-seo I can no longer access my admin ACP. After authenticating I get kicked back to the index.
Commenting out the following new code solves the problem (but brings up another issue of skins in virtual folders):
| Code: |
// www.phpBB-SEO.com SEO TOOLKIT BEGIN
global $phpbb_seo;
$template->assign_vars( array( 'PHPBB_FULL_URL' => $phpbb_seo->seo_path['phpbb_url'],
'SEO_BASE_HREF' => $phpbb_seo->seo_opt['seo_base_href'],
'SEO_START_DELIM' => $phpbb_seo->seo_delim['start'],
'SEO_SATIC_PAGE' => $phpbb_seo->seo_static['pagination'],
'SEO_EXT_PAGE' => $phpbb_seo->seo_ext['pagination'])
);
// www.phpBB-SEO.com SEO TOOLKIT END |
I made all proper edits to my skin (based off of subsilver2) so the problem lies somewhere in the new code (Or with subsilver2 and the new code).
Posting, registering, logging in/out and everything else works perfectly. |
|
|
| Back to top |
|
 |
|
 |
GoodOmens
Joined: 18 Oct 2007 Posts: 7
|
Posted: Thu Oct 18, 2007 9:33 pm Post subject: Re: RC7 + new phpbbseo code = no ACP access |
|
|
Ok the problem seemed to be a stale phpbb-seo cache file. Manually deleting the cache file *seemed* to have fixed the problem.
I'll keep you posted. |
|
|
| Back to top |
|
 |
TomaS PR2

Joined: 08 Jun 2007 Posts: 226
|
|
| Back to top |
|
 |
FaRuKuZaM
Joined: 20 Oct 2007 Posts: 4
|
Posted: Sat Oct 20, 2007 5:27 am Post subject: Re: RC7 + new phpbbseo code = no ACP access |
|
|
| I have the same problem. When I delete my cache php file the settings deleted and forum comes back to old |
|
|
| Back to top |
|
 |
ALEXIS
Joined: 27 Nov 2006 Posts: 3
|
Posted: Sat Oct 20, 2007 5:53 am Post subject: Re: RC7 + new phpbbseo code = no ACP access |
|
|
| FaRuKuZaM wrote: | | I have the same problem. When I delete my cache php file the settings deleted and forum comes back to old |
url rewrite is disabled because you delete current settings on cache.
Edit rewrite default setting avaible on phpbb_seo/phpbb_seo_class.php file.
For change default setting, folow:
[ OPEN ]
phpbb_seo/phpbb_seo_class.php
[ FIND ]
| Code: | $this->seo_opt = array(
'url_rewrite' => false,
'rem_sid' => false,
'rem_hilit' => true,
'rem_small_words' => false,
'virtual_folder' => false,
'virtual_root' => false,
'cache_layer' => true, // Forum url caching, by default
'rem_ids' => false,
); |
[ REPLACE WITH ]
| Code: | $this->seo_opt = array(
'url_rewrite' => true,
'rem_sid' => true,
'rem_hilit' => true,
'rem_small_words' => false,
'virtual_folder' => true,
'virtual_root' => false,
'cache_layer' => true, // Forum url caching, by default
'rem_ids' => false,
); |
This is my ideal settings  |
|
|
| Back to top |
|
 |
FaRuKuZaM
Joined: 20 Oct 2007 Posts: 4
|
Posted: Sat Oct 20, 2007 6:04 am Post subject: Re: RC7 + new phpbbseo code = no ACP access |
|
|
sağol abi  |
|
|
| Back to top |
|
 |
SeO Administrateur - Site Admin

Joined: 15 Mar 2006 Posts: 4006
|
Posted: Sat Oct 20, 2007 11:29 am Post subject: Re: RC7 + new phpbbseo code = no ACP access |
|
|
Well, it's just that you need to clear phpBB's cache after you updated it.
There is no reason to alter the mod rewrite settings :
| update_file wrote: |
_________________________________________
>>>> INSTALLATION INSTRUCTIONS <<<<<
_________________________________________
This update procedure will keep the previous URL standard used depending on the phpbb_seo_class.php settings.
No particular changes required in the .htaccess or the phpBB SEO class settings. |
And even less to hard code them in phpbb_seo_class.php. |
_________________ phpBB SEO || SEO Forum || Forum Référencement
GYM Sitemap & RSS for phpBB3 has been released ! || GYM Sitemap & RSS for phpBB3 est disponible ! |
|
| Back to top |
|
 |
dcz Administrateur - Site Admin

Joined: 28 Apr 2006 Posts: 15242
|
|
| Back to top |
|
 |
|
|