I new to drupal and I'm using it on a windows platform, PHP5 and mysql 4. It seem that the installation went smoothly until I clicked on "Creat a New Account". When I tried to create a new account all I get is a white screen...no errors. Has anyone experinced this and if so, how do I fix it.

Thanks.

Comments

jasonwhat’s picture

This often happens due to an error when your files upload with space at the bottom. Check that node.module has no white space after the closing php tag.

thall’s picture

Thanks Jason...I looked at th file and there was no white space after the closing tag. Any other suggestions?

jasonwhat’s picture

Go to mysite.com/admin an see what the error that it is producing is.

thall’s picture

When I go to mysite.com/admin, I get a 404 error. Drupal doesn't seem to be pointing to the correct directory when I select "create and account"

thall’s picture

I was able to get it to work. Originally I had drupal in a subdirectory for testing. I removed it from the subdirectory and placed it in the htdocs root and it seems to be working fine. I'm not sure why it didn't work well in the subdirectory but I'll play around with it some more.

Thanks.

pgregg’s picture

Add this to the top of your index.php file (after the php open tag):

#ini_set("display_errors", 0);
ini_set("display_errors", 1);
error_reporting(E_ALL);

Then you'll see the errors instead of the white space.

Personally, I'd recommend this be on in Drupal by default so you can install to a point where you are ready to launch and can then turn off the display errors.

Paul.

black2night’s picture

i have the same problem and i added the snippets you suggested but i don't get any thing and all i get is a white screen.