Quote:
Originally Posted by NoFatChicks
@PityLee
If u can share your webpage with me.
And you made your EpicWebServer work? Can you tell me what how?
All things i read about register page here and in another forums i tryed and it still fail.
Thanks.
#Searchine#
|
Quote:
Originally Posted by bart2712
ya same here, no matter how many times i try...as soon as i try to run the .exe it just shuts right down again
Ive spent the entire night trying to find some way to make a registration page work on my site, and nothing has worked correctly.
|
Create a folder in C:\OldCODB named WebServer.
The epic webserver just runs if there's 8080 port opened and free to use for it. You have to put the Epic WebServer.exe into the C:\OldCODB\WebServer\ with the reg.html .
And if you have 8080 port opened on your router, or if a program ( like Xampp Tomcat ) isn't using that port, it will run and work.
The only problem with this register I have, is, that the regcomplete.html is written in C#, so the result ( Account succesfully created. ) will be on an empty page. I hope I will do something about this soon.
The solution for me was: I have created a form which reffers to my external IP so it looks like this: "http://myip:8080/regcomplete.htm" . So when my server is online, They can register.
Here is my webpage's form:
PHP Code:
<form action="http://YOURIPHERE:8080/regcomplete.html" method="POST" >
<table>
<tr>
<td><font size="3"><b>Account:</b></font></td>
<td><input type = "text" name ="Account"></td>
</tr>
<tr>
<td><font size="3"><b>Password:</b></font></td>
<td><input class = "button" type = "password" name = "Password"></td>
</tr>
</table>
By registering, you agree with the <a href="http://YOURWEBPAGEHERE/terms-of-use.html" target="_blank">terms of use</a>!<br>
<input type = "submit" name = "submit" value = "Register">
</form>
I don't post here my webpage, cuz I have to create a tutorial for it, since it's using joomla, it includes external php files and so.