Hi,
I am using Linux sysvinit-2.85, Apache 1.3.34, MySql 4.1.20 and php 4.4.1.
And I want to upgrade php 4.4.1 to php5 through webmin.
One of my script using the fopen() function does not work anymore since my website has been moved to a new server. The fopen() function does not work under php 4.4.1 and 4.4.2. See:
http://bugs.php.net/bug.php?id=36017 Here is the script:
<?
$domain = "http://www.google.com/";
$handle = fopen($domain, "r");
?>
Script result on my website:
Warning: fopen(http://www.google.com/): failed to open stream: Connection timed out in /home/account/public_html/file.php on line 5
How should I do that step by step to upgrade? Thanks in advance.

PS: or is it other easy way to do that without webmin?