php error

PHP programming forum. Ask questions or help people concerning PHP code. Don't understand a function? Need help implementing a class? Don't understand a class? Here is where to ask. Remember to do your homework!

Moderator: General Moderators

Post Reply
silver163
Forum Newbie
Posts: 2
Joined: Tue Jul 24, 2007 7:03 pm

php error

Post by silver163 »

so i have uploaded php-nuke 7.9 onto my site. i did the needed changes in config.php but i am having issues that whenever i go to any pages they are entirely blank. why does this happen and how can i fix this? thanks in advance.
User avatar
yacahuma
Forum Regular
Posts: 870
Joined: Sun Jul 01, 2007 7:11 am

try phpinfo

Post by yacahuma »

is php working?
create a file called test.php and put this inside

Code: Select all

<?php
phpinfo();
?>
if you dont see anything, your php is not working
User avatar
John Cartwright
Site Admin
Posts: 11470
Joined: Tue Dec 23, 2003 2:10 am
Location: Toronto
Contact:

Post by John Cartwright »

Moved to PHP-Code.
User avatar
Gente
Forum Contributor
Posts: 252
Joined: Wed Jun 13, 2007 9:43 am
Location: Ukraine, Kharkov
Contact:

Post by Gente »

Turn on error_reporting
miro_igov
Forum Contributor
Posts: 485
Joined: Fri Mar 31, 2006 5:06 am
Location: Bulgaria

Re: try phpinfo

Post by miro_igov »

yacahuma wrote:is php working?
create a file called test.php and put this inside

Code: Select all

<?php
phpinfo();
?>
if you dont see anything, your php is not working
If php is not working the PHP source will be displayed in the browser, but no blank page.

Better enable display_errors
Post Reply