View previous topic :: View next topic |
Author |
Message |
Mikke8 -
Joined: 18 Jul 2004 Posts: 18
|
Posted: Sun Jul 18, 2004 9:24 pm Post subject: won't work on abyss server |
|
|
Hi
i have problems with a website
when i pub the website on tripod the problem is fixed
http://members.lycos.nl/rdtx <-- dutch tripod(i'm dutch)
i was thinking maybe abyss do not support this
<FORM ACTION="chat.php" METHOD="POST">
but please help
the problem is on tripod i get the nick and the channel with the post command and with a abyss i don't get the nick and the channel with post
or maybe recive with echo in php just look the source
btw it's a chatsite
Thanks
Mikke8
sry for my bad english
edit:http://rdtxirc.bounceme.net this is redirected to my computer with no-ip |
|
Back to top |
|
 |
aprelium-beta -
Joined: 24 Jun 2004 Posts: 383
|
Posted: Sun Jul 18, 2004 10:29 pm Post subject: Re: won't work on abyss server |
|
|
Mikke8,
What do you mean by "doesn't work"? Is there an error message? Have you installed correctly PHP support in Abyss Web Server? _________________ Beta Testing Team
Aprelium - http://www.aprelium.com |
|
Back to top |
|
 |
Mikke8 -
Joined: 18 Jul 2004 Posts: 18
|
Posted: Sun Jul 18, 2004 11:12 pm Post subject: |
|
|
i think php is installed succesfull
because i type in notpad this
Quote: |
<html>
<head>
<title>My First page in PHP</title>
</head>
<body>
Current date : <? print (Date("l F d, Y")); ?>
</body>
</html>
|
i get Current date : Monday July 19, 2004
but
i use this at login.htm
Code: |
...
<FORM ACTION="chat.php" METHOD="POST">
<INPUT style="text" name="chatnick" align="center" VALUE="Chatname">
<INPUT name="SUBMIT" TYPE="SUBMIT" VALUE="Chat!">
</FORM>
...
|
at chat.php i use this
Code: |
...
Nick: <?php echo $chatnick; ?>
...
|
i get Nick :'nothing here'
and on tripod this works but no with abyss
do i need to install perl or something else ? |
|
Back to top |
|
 |
aprelium-beta -
Joined: 24 Jun 2004 Posts: 383
|
|
Back to top |
|
 |
Mikke8 -
Joined: 18 Jul 2004 Posts: 18
|
Posted: Mon Jul 19, 2004 9:38 am Post subject: |
|
|
THe problem isn't fixed now i get
Nick: $_REQUEST['chatnick'] |
|
Back to top |
|
 |
aprelium -
Joined: 22 Mar 2002 Posts: 6800
|
Posted: Wed Jul 21, 2004 1:18 am Post subject: |
|
|
Mikke8,
Your code in chat.php should look like:
Code: | Nick: <?php echo $_REQUEST['chatnick']; ?> |
_________________ Support Team
Aprelium - http://www.aprelium.com |
|
Back to top |
|
 |
|