Sean
01-21-2002, 03:23 PM
Does anyone know why this gay Plesk server won't let me load global.php? I renamed it and uploaded, didn't work. I created a new file, and put in a variable, names yo.php, included on the same page from the same places, worked FINE!! What tha heck is going on with this global file? When ever I load the page is blank. After including it, no other PHP is parsed. What could be causing this problem? It worked before, but then my CP didn't work (gave me this adminlog() error). I found out it was because the global.php file was from an earlier vB. Uploaded the new global (from 2.2.1) adn then I couldn't include global.php anymore..... :( What could be going on...... :confused:
here's the source of my test file:
<?
echo "Is this working?";
require ('/usr/local/psa/home/vhosts/forums.electron-designs.com/httpdocs/admin/global2.php');
echo "This code WILL NOT parse...";
echo $codeversionnumber;
?>
This page is here: http://g-designs.electron-designs.com/test5.php
If I changed the above to:
<?
echo "Is this working?";
require ('/usr/local/psa/home/vhosts/forums.electron-designs.com/httpdocs/admin/yo.php');
echo "This code WILL NOT parse...";
echo $var; //this is in yo.php
?>
It would work just fine!!
here's the source of my test file:
<?
echo "Is this working?";
require ('/usr/local/psa/home/vhosts/forums.electron-designs.com/httpdocs/admin/global2.php');
echo "This code WILL NOT parse...";
echo $codeversionnumber;
?>
This page is here: http://g-designs.electron-designs.com/test5.php
If I changed the above to:
<?
echo "Is this working?";
require ('/usr/local/psa/home/vhosts/forums.electron-designs.com/httpdocs/admin/yo.php');
echo "This code WILL NOT parse...";
echo $var; //this is in yo.php
?>
It would work just fine!!