PDA

View Full Version : Error message


tobyandjenny375881
04-08-2009, 03:01 PM
I created the database with all of the forms, local host is working and I put all of the correct information into Globals.

I uploaded the registration page to the server with all of the necessary files.

Warning: session_start() [function.session-start]: Cannot send session cookie - headers already sent by (output started at /home/heavyme1/public_html/users_Registration.php:9) in /home/heavyme1/public_html/WA_ValidationToolkit/WAVT_ValidatedForm_PHP.php on line 3

How do I correct this?
Thanks,
Jenny Hansen

Ray Borduin
04-09-2009, 06:51 AM
what is on line 9 of users_Registration.php and what is on line 3 of ValidatedForm_PHP?

tobyandjenny375881
04-09-2009, 08:17 AM
Warning: require_once(/home/heavyme1/public_html/WA_Universal_Email/Email_Templates/registration.php) [function.require-once]: failed to open stream: No such file or directory in /home/heavyme1/public_html/WA_Universal_Email/WAUE_users_Registration_1.php on line 43


This is the error I am now getting. Below is all of the includes in order line 1-8

<?php require_once("WA_Globals/WA_Globals.php"); ?>
<?php require_once("WA_Universal_Email/mail_PHP.php"); ?>
<?php require_once("WA_Universal_Email/MailFormatting_PHP.php"); ?>
<?php require_once("WA_SecurityAssist/WA_RandomPassword.php"); ?>
<?php require_once('Connections/localhost.php'); ?>
<?php require_once("WA_DataAssist/WA_AppBuilder_PHP.php"); ?>
<?php require_once("WA_ValidationToolkit/WAVT_Scripts_PHP.php"); ?>
<?php require_once("WA_ValidationToolkit/WAVT_ValidatedForm_PHP.php"); ?>

Thanks

tobyandjenny375881
04-09-2009, 08:19 AM
I double checked and the file WAUE_users_Registration_1.php is located in the folder on the server
Jenny

Ray Borduin
04-09-2009, 10:37 AM
The file that is missing is:

WA_Universal_Email/Email_Templates/registration.php

tobyandjenny375881
04-09-2009, 10:55 AM
Thanks for your help. The form works now.
Jenny