Do0mbringer
New Member
- Messages
- 2
- Reaction score
- 0
- Points
- 0
I set up an account yesterday (free host), and requested an upgrade to Intermediate Version of PHP last night as well since I was going to need eval() and cURL. This morning I received an email saying that my request had been approved and the upgrade was pending and it could take up to 4 hours. Tonight I logged into my account to check and it said that my php version was: PHP Version
HP 5.2.4 - Intermediate Ver.
The problem is the website still won't work.
Here is the link to the actual problem. http://conquer.x10hosting.com/eqdkp/admin/index.php?s=
Here is a link to another test: http://conquer.x10hosting.com/info.php
A very simple test that looks like
So any help you guys can give me would be great. Because eval seems to still not be functioning even with v2. If its a time issue as in I didn't wait long enough, then I apologize for posting.
The problem is the website still won't work.
Here is the link to the actual problem. http://conquer.x10hosting.com/eqdkp/admin/index.php?s=
Here is a link to another test: http://conquer.x10hosting.com/info.php
A very simple test that looks like
PHP:
<?php
$string = 'cup';
$name = 'coffee';
$str = 'This is a $string with my $name in it.';
echo $str. "\n";
eval("\$str = \"$str\";");
echo $str. "\n";
?>