Log in

View Full Version : Blank screen after calling my hook


resurepus
05-26-2008, 05:42 AM
I try to write a hook for "reset_password" event. Hook code looks simply:

global $newpassword;
$fp = fopen("reset_password.txt", "w");
fputs($fp, $newpassword);
fclose($fp);

But when it is active and has been called (e.g., when user follows a link in his email when he losts password), I'v got a blank screen instead of standard "password reseted" message. vBulletin is not crashes at all, it continues work after calling hook, for example, sends an email with new password to user. When I remove all file operations (just leave string "$x = $newpassword") the forum works properly.
The site has been installed on my local computer (Windows XP, Apache 1.x, PHP 5, MySQL 5), I have administrator rights (all filesystem operations are accessible).

What is the matter? If the code above generates some error, how can I view it?

Dismounted
05-26-2008, 05:56 AM
Look in your error log file.

resurepus
05-26-2008, 07:53 AM
Error.log is clear. I forgot to say: reset_password.txt has been created, $newpassword contains right new password and also has been written to the file.
More information: when I've disabled "GZip output" option, all becomes fine (I see the resulting page), but nothing additional information has appeared. How output type depends on non-visual results of code execution?