Hi, I am getting this strange error returned after the form is submitted:
Warning: session_start() [function.session-start]: Cannot send session cache limiter - headers already sent (output started at /home/xxxxxxxx/public_html/forms/membership/processor.php:1) in /home/xxxxxxxxx/public_html/forms/membership/processor.php on line 5
Line 5 reads:
session_start();
The form sends an email which works fine. Any ideas on what on the server is causing this error? Thanks in adavance.
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Usually due to some extra or missing characters but can also be that the session_start() function is late in the processor.php file. It's hard to know without seeing the file but you might try and move this function to the top of the file just after the <?php line.
Hi, I am getting this strange error returned after the form is submitted:
Warning: session_start() [function.session-start]: Cannot send session cache limiter - headers already sent (output started at /home/xxxxxxxx/public_html/forms/membership/processor.php:1) in /home/xxxxxxxxx/public_html/forms/membership/processor.php on line 5
Line 5 reads:
session_start();
The form sends an email which works fine. Any ideas on what on the server is causing this error? Thanks in adavance.
Usually due to some extra or missing characters but can also be that the session_start() function is late in the processor.php file. It's hard to know without seeing the file but you might try and move this function to the top of the file just after the <?php line.
https://sourceforge.net/forum/message.php?msg_id=5059523