| :: |
| Author |
Message |
mrix
Joined: 22 Dec 2007 Posts: 19
|
Posted: Sun Dec 23, 2007 3:40 pm Post subject: Blank Pages ? Search, View active topics and View unanswered |
|
|
Hello all, since I installed the mod re-right which almost works fine apart from these pages are now just blank - Search, View active topics and View unanswered posts ?
any idea`s all
thanks for any help
mrix |
|
|
| Back to top |
|
 |
|
 |
dcz Administrateur - Site Admin

Joined: 28 Apr 2006 Posts: 13354
|
|
| Back to top |
|
 |
mrix
Joined: 22 Dec 2007 Posts: 19
|
|
| Back to top |
|
 |
dcz Administrateur - Site Admin

Joined: 28 Apr 2006 Posts: 13354
|
|
| Back to top |
|
 |
mrix
Joined: 22 Dec 2007 Posts: 19
|
Posted: Sun Dec 23, 2007 3:45 pm Post subject: re: |
|
|
This is what the zip file shows
adv_phpbb3_mod_rewriteV0-4-0RC4
cheers
mrix |
|
|
| Back to top |
|
 |
dcz Administrateur - Site Admin

Joined: 28 Apr 2006 Posts: 13354
|
|
| Back to top |
|
 |
mrix
Joined: 22 Dec 2007 Posts: 19
|
Posted: Sun Dec 23, 2007 3:50 pm Post subject: re: |
|
|
I have made the config changes but how would I activate debugging?
cheers
mrix |
|
|
| Back to top |
|
 |
dcz Administrateur - Site Admin

Joined: 28 Apr 2006 Posts: 13354
|
|
| Back to top |
|
 |
mrix
Joined: 22 Dec 2007 Posts: 19
|
Posted: Sun Dec 23, 2007 4:02 pm Post subject: re: |
|
|
I dont see any errors but I`ll start putting the files back as you say and get back to you asap.
many thanks for your help and your time
cheers
mrix |
|
|
| Back to top |
|
 |
mrix
Joined: 22 Dec 2007 Posts: 19
|
Posted: Sun Dec 23, 2007 4:32 pm Post subject: re: |
|
|
Hi again I have been using the subsilver 2 skin and the code for the advanced mod re-right is not the same so I think thats where my problems lie... is there anywhere in these forums that has the code for the other default skin? ie the overall_header and overall_footer code
really hope so
cheers
mrix |
|
|
| Back to top |
|
 |
dcz Administrateur - Site Admin

Joined: 28 Apr 2006 Posts: 13354
|
Posted: Sun Dec 23, 2007 4:36 pm Post subject: Re: Blank Pages ? Search, View active topics and View unanswered |
|
|
You mean, the blank page was not fully blank, but rather unstyled ?
What didn't you find in these code changes ?
| Code: |
#
#-----[ OPEN ]------------------------------------------
#
styles/subsilver2/template/overall_header.html
#
#-----[ FIND ]------------------------------------------
#
<head>
#
#-----[ AFTER, ADD ]------------------------------------------
#
{SEO_BASE_HREF}
#
#-----[ FIND ]------------------------------------------
#
function jumpto()
{
var page = prompt('{LA_JUMP_PAGE}:', '{ON_PAGE}');
var perpage = '{PER_PAGE}';
var base_url = '{A_BASE_URL}';
if (page !== null && !isNaN(page) && page > 0)
{
document.location.href = base_url.replace(/&/g, '&') + '&start=' + ((page - 1) * perpage);
}
}
#
#-----[ REPLACE WITH ]------------------------------------------
#
// www.phpBB-SEO.com SEO TOOLKIT BEGIN
function jumpto()
{
var page = prompt('{LA_JUMP_PAGE}:', '{ON_PAGE}');
var perpage = '{PER_PAGE}';
var base_url = '{A_BASE_URL}';
var seo_delim_start = '{SEO_START_DELIM}';
var seo_static_pagination = '{SEO_SATIC_PAGE}';
var seo_ext_pagination = '{SEO_EXT_PAGE}';
if (page !== null && !isNaN(page) && page > 0) {
var seo_page = (page - 1) * per_page;
if ( base_url.indexOf('?') >= 0 ) {
document.location.href = base_url.replace(/&/g, '&') + '&start=' + seo_page;
} else if ( seo_page > 0 ) {
var seo_type1 = base_url.match(/\.[a-z0-9]+$/i);
if (seo_type1 !== null) {
document.location.href = base_url.replace(/\.[a-z0-9]+$/i, '') + seo_delim_start + seo_page + seo_type1;
}
var seo_type2 = base_url.match(/\/$/);
if (seo_type2 !== null) {
document.location.href = base_url + seo_static_pagination + seo_page + seo_ext_pagination;
}
} else {
document.location.href = base_url;
}
}
}
// www.phpBB-SEO.com SEO TOOLKIT END
#
#-----[ OPEN ]------------------------------------------
#
styles/subsilver2/template/viewtopic_body.html
#
#-----[ FIND ]------------------------------------------
#
<a href="#wrapheader">
#
#-----[ REPLACE WITH ]------------------------------------------
#
<a href="{U_VIEW_TOPIC}#wrapheader"> |
The first one being the one that could explain an unstyled output with the virtual folder option, if missing of course.
A link to your forum would definitely help now.
++ |
_________________ 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 |
|
 |
mrix
Joined: 22 Dec 2007 Posts: 19
|
Posted: Sun Dec 23, 2007 4:48 pm Post subject: re: |
|
|
Hello I didnt have that code at all so was feeling very hopefull unfortunately it didnt work
could the htacces file cause a problem like this if something is wrong?
cheers
mrix
http://www.christchurchdorset.com/forum/ |
|
|
| Back to top |
|
 |
dcz Administrateur - Site Admin

Joined: 28 Apr 2006 Posts: 13354
|
|
| Back to top |
|
 |
mrix
Joined: 22 Dec 2007 Posts: 19
|
Posted: Sun Dec 23, 2007 4:56 pm Post subject: re: |
|
|
Are you saying you can see a page when you click on the search button and new posts button at the top of the index page?
I mean the forum index page
cheers
mrix |
|
|
| Back to top |
|
 |
dcz Administrateur - Site Admin

Joined: 28 Apr 2006 Posts: 13354
|
Posted: Sun Dec 23, 2007 5:04 pm Post subject: Re: Blank Pages ? Search, View active topics and View unanswered |
|
|
New topic and reply gives me a login form, but there could be a blank page further.
I saw the one on search.php.
So at least this is giving us a better hint on where to search for the error.
These two could be caused by typos in search.php and includes/functions_posting.php, the code change are not this many, please double check and make sure another mod is not requiring some code there.
++ |
_________________ 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 |
|
 |
|
|