I need help getting started with the program. I think that I've done everything that I'm supposed to do, so I'm not sure where I went wrong. I downloaded phpFormGenerator v.2.09. After downloading it I unzipped the contents to a folder that was on the server I was going to use (IIS). I opened the folder properties for the forms and use folders and added write and also execute permissions to scripts and executables. I think clicked on browse index.php from IIS and a web page loaded and step one was shown and asked how may fields I wanted. I entered 1 and went on to step two. At the top of the page it said:
Notice: Undefined variable: error in c:\Inetpub\wwwroot\New Folder\phpform\fields.php on line 174
And then on the pages after that as I filled in more information, more errors would pop up. Where did I go wrong?
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
You could simply add this line to the top of each file where the notices appear to stop displaying them:
error_reporting(E_ALL ^ E_NOTICE);
of course put that inside the <?php tag. This will only turn off them being displayed. If you recieve and error thats not just a notice, such as warning or fatal error, please let me know.
Developer on this project whos been away for too long, Steve
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Anonymous
-
2004-09-14
Stephen,
Thanks alot for responding to my post. I was able to get that error to go away by making the global variables on in the php.ini . I can get through all of the steps, but then on "step 5: generation status" It says generating form, but then it stops and says: Warning: fopen(forms/form1.html) [function.fopen]: failed to open stream: Permission denied in c:\Inetpub\wwwroot\Form\phpform\process3.php on line 468
cannot create file
I don't know what I can do to fix this. I know that I have the write permissions given everywhere that I was supposed to and I don't know what else there is to do.
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
I need help getting started with the program. I think that I've done everything that I'm supposed to do, so I'm not sure where I went wrong. I downloaded phpFormGenerator v.2.09. After downloading it I unzipped the contents to a folder that was on the server I was going to use (IIS). I opened the folder properties for the forms and use folders and added write and also execute permissions to scripts and executables. I think clicked on browse index.php from IIS and a web page loaded and step one was shown and asked how may fields I wanted. I entered 1 and went on to step two. At the top of the page it said:
Notice: Undefined variable: error in c:\Inetpub\wwwroot\New Folder\phpform\fields.php on line 174
And then on the pages after that as I filled in more information, more errors would pop up. Where did I go wrong?
You could simply add this line to the top of each file where the notices appear to stop displaying them:
error_reporting(E_ALL ^ E_NOTICE);
of course put that inside the <?php tag. This will only turn off them being displayed. If you recieve and error thats not just a notice, such as warning or fatal error, please let me know.
Developer on this project whos been away for too long, Steve
Stephen,
Thanks alot for responding to my post. I was able to get that error to go away by making the global variables on in the php.ini . I can get through all of the steps, but then on "step 5: generation status" It says generating form, but then it stops and says: Warning: fopen(forms/form1.html) [function.fopen]: failed to open stream: Permission denied in c:\Inetpub\wwwroot\Form\phpform\process3.php on line 468
cannot create file
I don't know what I can do to fix this. I know that I have the write permissions given everywhere that I was supposed to and I don't know what else there is to do.