Page 1 of 1
[Resolved] Blank Profile page

Posted:
Wed Jan 24, 2007 10:08 am
Author: Imajica
Your phpBB Version: 2.0.
phpBB Type: Integramod 141
MODs: No
Your knowledge: Basic Knowledge
Board URL: http://www.ashadeofblue.net/portal/portal.php PHP Version: 5.0.4
MySQL Version: 4.1.14
What was done before the problem appeared?fresh install What was done to try to solve the problem?checked all permissions and file sizes De.scription and MessageMorning folks.
I just did a clean install of 141 this morning and profile.php?mode=viewprofile&u=2 is coming up blank
(Public :: Base Info)
all other screens seem to be coming up
any ideas?
Imajica

Posted:
Wed Jan 24, 2007 2:02 pm
Author: Imajica
just installed 141 on my home server
windows 2k3 server, php4 and it works fine
anyone else on php5 seeing an issue?

Posted:
Wed Jan 24, 2007 4:18 pm
Author: shedt_v
yeah i'm on php5 too nothing is showing there.
Just blank, no private message the user or anything under base.
I'm using 1.4.1 RC 5 right now, going to upgrade soon...

Posted:
Wed Jan 24, 2007 4:39 pm
Author: Imajica
are you on 5.0.4 too?

Posted:
Wed Jan 24, 2007 4:55 pm
Author: shedt_v
yes i think so, for sure php5.
yeah
PHP5 Version 5.0.4

Posted:
Wed Jan 24, 2007 6:03 pm
Author: Imajica
I've never upgraded php and I don't want to learn on my active site.
does anyone on Dev know if this is a 5.0.4 issue only?

Posted:
Thu Jan 25, 2007 6:24 pm
Author: Imajica
I don't code... but I went thru till my eyes crossed
everything LOOKS to be in order
any ideas?
Re: Blank Profile page

Posted:
Thu Jan 25, 2007 6:38 pm
Author: Teelk
PCP can be a problem as it doesn't provide error messages at times. Can you check to see what your display_errors is set to in your php.ini file? Even if you don't have access to your php.ini file you can check using phpinfo in the ACP. If it's not on, turn it on and see if you get any error messages in your profile afterwards.
If you don't have access to your php.ini file, you can add this code to common.php to turn it on(may be blocked on some servers).
OPEN common.php
FIND
- Code: Select all
if ( !defined('IN_PHPBB') ){ die("Hacking attempt");}
AFTER ADD
- Code: Select all
ini_set('display_errors','On');
It may also be a memory_limit issue, you can increase it through the php.ini file or add this to your common.php file as well.
- Code: Select all
ini_set('memory_limit','16');
16 being the memory in MB.

Posted:
Thu Jan 25, 2007 9:12 pm
Author: Imajica
memory_limit 32M 32M
display_errors Off Off
I did add ini_set('display_errors','On'); to common.php
no errors show up...
just this:
[flash=,:djp9ndrr]http://www.ashadeofblue.net/portal/images/141error.jpg[/flash:djp9ndrr]
what's next?

Posted:
Sun Jan 28, 2007 12:30 pm
Author: Imajica
well I have a guy coming in to help me upgrade php on my server because I just don't have the experience
unless anyone else has a bright shiny idea...

Posted:
Thu Feb 01, 2007 3:57 pm
Author: shedt_v
yeah i'm having the same problem, memory set to 16. going to change the php.ini file.

Posted:
Sun Feb 04, 2007 10:22 pm
Author: Imajica
ok I am officially boned
it's not easy to update my VPS to a higher version of php
I'm open to ANY suggestions here short of changing hosts

Posted:
Mon Feb 12, 2007 6:58 pm
Author: Imajica
other folks on the same service I am running have been having issues with
"php_admin_value open_basedir"
any chance this could be contributing to my problem as well?
Imajica

Posted:
Mon Feb 12, 2007 9:21 pm
Author: Michaelo
If you are using php version 5.xx and have white pages and selected mysqli during install (may be the default I can't remember)...? Open you config.php and change mysqli to mysql
Mike

Posted:
Mon Feb 12, 2007 9:51 pm
Author: Imajica
I didn't select mysqli... I chose mysql..
- Code: Select all
<php>

Posted:
Tue Feb 13, 2007 12:08 am
Author: Michaelo
OK... I have just done a full install with a two day old download and all is fine...
PHP Version: 5.2.0
MySQL Version: 5.0.22
I'm at a loss as I can't test MySql 4.1.1... I googled for php + mysql 4.1.14 problems and found several but I can't determine if the updated code is responsible. We need to check if anyone is using this combination successfully... Back to searching for now...
One suggestion would be to temporarily replace functions_profile .php with older copy and see if the error was the same... it's worth a try...
If we can identify where the problem is we might be able to find a fix for it without having to upgrade versions which if almost definitely the cause as this problem only surfaces with these versions/combinations (so far)
Mike

Posted:
Tue Feb 13, 2007 5:56 am
Author: Imajica
replaced functions_profile.php and profilcp_public_base.php with the versions from 140 and get the same thing
my DL is a couple weeks old at this point.
Is there an updated version?

Posted:
Tue Feb 13, 2007 8:29 am
Author: Michaelo
It was worth a try... Download the attachment (my copy of (pafiles directory)) and overwrite you current one... can't hurt...

Posted:
Tue Feb 13, 2007 8:58 am
Author: Imajica
well it was worth a shot anyways...
same thing... it's weird that it's only the profile.php?mode=viewprofile&sub=base&u=2
that is not working

Posted:
Thu Feb 15, 2007 6:53 am
Author: shedt_v
I am going to try a fresh install, first time using command line. I'm excited, changing file permissions sucks
<img>
Re: Blank Profile page

Posted:
Tue Feb 20, 2007 7:47 am
Author: Imajica
I GOT IT!!!!!!
I was having issues with an OSCommerce install on the same VPS and had to add
- Code: Select all
php_flag register_globals onphp_flag register_long_arrays on
to .htaccess and then OSCommerce started working... so I thought I'd give it a shot on my Integramod site.. and POOF... it's working...
now I am off to edit my php.ini