With nusphere 4 in Windows XP, debugging php5 scripts, execution stops in a mysql_connect sentence. Mysql is on local and the page works fine with the web server, also using php5.
No errors or warnings shown, just execution stops there, like if it was waiting for something
The line is this:
if (!($this->_resource = @mysql_connect( $host, $user, $pass ))) {
die( 'FATAL ERROR: Connection to database server failed.' );
SOLUTION: The problem was that $host was set to $_SERVER['HTTP_HOST'], so it was 'localhost:8080'. Put it as 'localhost' and now it works right. Sorry