i have set up multiple web forms on my site that runs very smoothly, whenever a user fills out a webform and submits it i don't receive any sort of notification email and the screen goes straight to the white screen with no error code, i have tried changing multiple components and cannot seem to get anything to work, i would love any help as soon as possible.

Comments

Stefan Lehmann’s picture

Did you check the error log + If you don't see anything there the error log on Apache level or whichever webserver you're using?

I like cookies!

Dev1.addweb’s picture

Enable error reporting by temporarily editing your index.php file (normally located in your root directory) by including following code directly after the first opening PHP tag. You will then be able to see any errors that are occurring directly on the screen.

<?php

error_reporting(E_ALL);
ini_set('display_errors', TRUE);
ini_set('display_startup_errors', TRUE);

Hope this helps!

Thanks