I installed the generator, changed all the permissions and when I try to open it in netscape, all the shows is php code and html code. what am i doing wrong? I thought I'd be able to enter my info, no such luck.
thanks-pam
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Where did you install the code. When I install php code in my Comcast home account I get the same result. Comcast does not allow running php scripts, or any other scripts for that matter.
It appears you've installed the php code on a host that has similar rules.
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
This is an issue that many of us have had, including me. My files get owner and group set to 33191 (not me).
Get your host to modify the group and/or owner to you, then you can do what you need to do.
FYI, this may happen everytime you create a new form.
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
I installed the generator, changed all the permissions and when I try to open it in netscape, all the shows is php code and html code. what am i doing wrong? I thought I'd be able to enter my info, no such luck.
thanks-pam
Where did you install the code. When I install php code in my Comcast home account I get the same result. Comcast does not allow running php scripts, or any other scripts for that matter.
It appears you've installed the php code on a host that has similar rules.
our server does allow php ... i've tried several others.... any other suggestions?
Take this simple test case (hello.php).
<?php
// Hello World in PHP
echo 'Hello World!';
?>
Copy this text into a file called hello.php, upload it to your host, then use your browser to point to this file.
Go here to see what you should get if the file can execute:
http://www.tnteverett.com/hello.php
Go here to see what you should get if the file can not execute:
http://home.comcast.net/~tnteveret1/hello.php
If you get the second case, your server is not allowing php files to execute. Make sure the file permissions are 755.
I solved one problem got another...
it did show up as code, so i moved phpformgen to another site that i work on...
i was able to get the generator working BUT
drwx------ 4 _httpd feelingood 512 Sep 27 15:57 partner
_httpd is the owner, not me, so I can't get any further. Why is it giving something else ownership of a file I'm trying to create?
thank you so much everyone that's helping me :-)
This is an issue that many of us have had, including me. My files get owner and group set to 33191 (not me).
Get your host to modify the group and/or owner to you, then you can do what you need to do.
FYI, this may happen everytime you create a new form.