I have a new installation of php on an existing apache 2 server, and
something strange is happening.  The file 'test.php' works and connects to
the database when run through the command line, but when run from the web
server (http://server/test.php) produces a segmentation fault:

    "child pid 29056 exit signal Segmentation fault"

php itself does work, and a file with only phpinfo() in it runs fine on both
the server and the command line.  Has anyone seen anything like this before?
Any ideas?


<?php
$link = mysql_connect("localhost", "user", "pass")
    or die("Could not connect");
mysql_select_db("disorder") or die("Could not select database");

print "hello";

?>

-- 
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to