phpBB SEO
Boards
Directory  
SEO  
Downloads
  phpBB SEO : Search Engine Optimization, Directory, Forums  
Index
Forums
Annuaire
Référencement
Télécharger
 
  Search Rechercher
    Register
Username :  Password :  Log me on automatically each visit  
S'enregistrer  
 
   
problem with member pages after server move
Goto page 1, 2  Next
 
Post new topic   Reply to topic    phpBB SEO » SEO Forum  » phpBB mod Rewrite
::  
Author Message
noworyz
PR0
PR0


Joined: 08 Jan 2007
Posts: 83

problem with member pages after server movePosted: Sun Apr 29, 2007 5:15 pm    Post subject: problem with member pages after server move

I just moved to a new server yesterday and everything seems to be working fine except the member pages. When you click a member's name it take you to the member page but it doesn't load fully. Only the header loads. Any ideas?

http://www.egriz.com/GrizBoard/member1620.php

Thanks
Back to top
dcz
Administrateur - Site Admin
Administrateur - Site Admin


Joined: 28 Apr 2006
Posts: 13354

problem with member pages after server movePosted: Mon Apr 30, 2007 9:47 am    Post subject: Re: problem with member pages after server move

mm interesting.

php5 ?

I still can't find the last touch though Wink

++

_________________
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
Visit poster's website
noworyz
PR0
PR0


Joined: 08 Jan 2007
Posts: 83

problem with member pages after server movePosted: Mon Apr 30, 2007 2:15 pm    Post subject: Re: problem with member pages after server move

yeah, I did notice the new server is php5. Is there something I have to do to get it to work?

I have other forums on this same server that all work just fine.

I have also ut in vanilla copies of profile.php and the template file for it and I still can't access the file.
Back to top
dcz
Administrateur - Site Admin
Administrateur - Site Admin


Joined: 28 Apr 2006
Posts: 13354

problem with member pages after server movePosted: Mon Apr 30, 2007 2:21 pm    Post subject: Re: problem with member pages after server move

The problem is, phpBB itself does not fully support php5, so the problem could come from a lot of places, phpBB, mods ...

Have you read this topic ?

I did not see any duplicate var declaration in the phpbb_seo_class.php file you posted though.

++

_________________
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
Visit poster's website
noworyz
PR0
PR0


Joined: 08 Jan 2007
Posts: 83

problem with member pages after server movePosted: Mon Apr 30, 2007 2:23 pm    Post subject: Re: problem with member pages after server move

that is weird though cause I have other forums that work fine on same server. I also put vanilla copies of the files trying to be viewed and it still doesn't work. Would mods in other files affect this?
Back to top
noworyz
PR0
PR0


Joined: 08 Jan 2007
Posts: 83

problem with member pages after server movePosted: Mon Apr 30, 2007 2:24 pm    Post subject: Re: problem with member pages after server move

dcz wrote:
mm interesting.

php5 ?

I still can't find the last touch though Wink

++


i'll get that, sorry Embarassed
Back to top
noworyz
PR0
PR0


Joined: 08 Jan 2007
Posts: 83

problem with member pages after server movePosted: Mon Apr 30, 2007 2:29 pm    Post subject: Re: problem with member pages after server move

got the link on there. I have been very forgetful, please forgive me!
Back to top
dcz
Administrateur - Site Admin
Administrateur - Site Admin


Joined: 28 Apr 2006
Posts: 13354

problem with member pages after server movePosted: Mon Apr 30, 2007 2:50 pm    Post subject: Re: problem with member pages after server move

hey no problem, it's just that it's not much for quite a lot, far from a one way thing.

And it really helps out to develop the site, which helps us to provide with even better solutions, have you checked GYM sitemaps ?

++

_________________
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
Visit poster's website
noworyz
PR0
PR0


Joined: 08 Jan 2007
Posts: 83

problem with member pages after server movePosted: Mon Apr 30, 2007 3:19 pm    Post subject: Re: problem with member pages after server move

Ok I figured it out I think. I was using profile.php when it was actually includes/usercp_viewprofile. I uploaded a vanilla copy of that file and it works. So it must be a mod that is affecting it. I will remod the file one a at a time to find the culprit.

As far as GYM sitemaps go, the styling now works on the new server. It had something to do with a php funtion called short open tags that doesn't allow php to work with XML or something like that.

"short_open_tag boolean

Tells whether the short form (<? ?>) of PHP's open tag should be allowed. If you want to use PHP in combination with XML, you have to disable this option. If disabled, you must use the long form of the open tag (<?php ?>). "


I see that new versions of the mod rewrite came out. I will try and upgrade those today. Maybe I will just do a complete fresh install of the mixed mod rewrite and mixed zero dupe to see if I can get it to work.

Thanks for your help.
Back to top
dcz
Administrateur - Site Admin
Administrateur - Site Admin


Joined: 28 Apr 2006
Posts: 13354

problem with member pages after server movePosted: Mon Apr 30, 2007 3:33 pm    Post subject: Re: problem with member pages after server move

This short open tag thing is really interesting.
I would not have though that it could affect .xml files, since usually allowed php file extensions are filtered.

So it seems that all your problem came from the update and the zero duplicate functions to keep in phpbb_seo_class.php file.

Or maybe it is that you just did not update the used extension to ".php" :
Code:

      $this->seo_ext = array('cat' => '.php',
         'forum' => '.php',
         'topic' => '.php',
         'user' => '.php',
         'gz_ext' => '',
      );


You should as well check again the headers sent by the zero duplicate, since you've upgraded php version, it's wise to check again, just in case Wink

++

_________________
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
Visit poster's website
noworyz
PR0
PR0


Joined: 08 Jan 2007
Posts: 83

problem with member pages after server movePosted: Mon Apr 30, 2007 3:39 pm    Post subject: Re: problem with member pages after server move

thanks, I will look into that when I work on the zero dupe and mod rewrite.


I found the culprit with my member pages.

it is the cash mod with this line in my usercp_viewprofile.php
Code:
$cm_viewprofile->post_vars($template,$profiledata,$userdata);


the error is this
Code:
"[Sat Apr 28 22:54:10 2007] [error] PHP Fatal error: Call to a member function post_vars() on a non-object in /var/www/vhosts/egriz.com/httpdocs/GrizBoard/includes/usercp_viewprofile.php on line 277 "


any ideas on how to fix this?

Thanks
Back to top
dcz
Administrateur - Site Admin
Administrateur - Site Admin


Joined: 28 Apr 2006
Posts: 13354

problem with member pages after server movePosted: Tue May 01, 2007 9:27 am    Post subject: Re: problem with member pages after server move

Well, I'm not sure, maybe the first check would be to make sure the cash mod is php5 compatible, which is not obvious, since phpBB itself isn't officially compatible with php5.

Usually, this kind of errors occurs when the class used was not started, make sure you've installed fully the cash mod as well.

++

_________________
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
Visit poster's website
noworyz
PR0
PR0


Joined: 08 Jan 2007
Posts: 83

problem with member pages after server movePosted: Tue May 01, 2007 2:14 pm    Post subject: Re: problem with member pages after server move

I got this fixed. Thought I made a post to let ya know. Sorry.
Back to top
wharriso



Joined: 21 Jan 2008
Posts: 2

problem with member pages after server movePosted: Mon Jan 21, 2008 12:30 am    Post subject: Re: problem with member pages after server move

Noworyz - Would you please tell me how you fixed this? I am having the exact same problem.

Thanks
Back to top
SeO
Administrateur - Site Admin
Administrateur - Site Admin


Joined: 15 Mar 2006
Posts: 3137

problem with member pages after server movePosted: Mon Jan 21, 2008 12:39 am    Post subject: Re: problem with member pages after server move

php5 and profile page only show header ?

_________________
Back to top
Display posts from previous:   
Post new topic   Reply to topic    phpBB SEO » SEO Forum  » phpBB mod Rewrite
Page 1 of 2 Goto page 1, 2  Next

Navigation Similar Topics

Jump to: