php version?

thinkhouse

New Member
Messages
2
Reaction score
0
Points
0
Hi Guys,

Is it possible to find out or change which Php version x10 hosting is running. I host my facebook app from a free x10 hosting account but it no longer works. According to the facebook developers forum it looks like my PHP is now PHP4 instead of the required PHP5.

Is there anyway to change this from the control panel??

Thanks!
 

dlukin

New Member
Messages
427
Reaction score
25
Points
0
PHP:
$ver = phpversion ( ) ;
 
 echo "The current PHP version is: $ver " ;

Chopin shows 5.2.13

Some things are disabled by x10 for security/performance issues.
 

mvnhen66

New Member
Messages
2
Reaction score
0
Points
0
and if you want to get the whole list of what is working and what features are turned off put the following code into a file and call it up with your browser:

<html>
<head>
<title>PHP Test</title>
</head>
<body>
<?php

phpinfo();
?>
</body>
</html>
 
Top