Page 1 of 1

Permissions, print, phpinfo

Posted: Sat Dec 09, 2006 4:40 am
by bogdan
Hi, long time no posting but I've been reading "none the less"(spelling?).
Sorry for posting in here, was unsure of the proper place to put it.

Ok, the problem:
I have some code taht I have tested and seems to work. Uploaded the code to a remote server and I have this problem:
index_test.php has a this code inside:

Code: Select all

<?php
print "0 #####<br>\n";
phpinfo();
print "1 #####";
?>
What I get is the prints, but no phpinfo().
Cheers,

Posted: Sat Dec 09, 2006 6:49 am
by feyd
Try using function_exists() against ini_get(), ini_set() and more importantly phpinfo().

Posted: Sat Dec 09, 2006 9:15 am
by bogdan
Thank you. phpinfo seems not to be there, duh me newby.