Register for your free account! | Forgot your password?

Go Back   elitepvpers > MMORPGs > Eudemons Online > EO PServer Hosting > EO PServer Guides & Releases
You last visited: Today at 20:09

  • Please register to post and access all features, it's quick, easy and FREE!

Advertisement



[Guide] Register Page without CAPTCHA

Discussion on [Guide] Register Page without CAPTCHA within the EO PServer Guides & Releases forum part of the EO PServer Hosting category.

Reply
 
Old   #1
 
.Ash's Avatar
 
elite*gold: 0
Join Date: May 2009
Posts: 1,175
Received Thanks: 540
[Guide] Register Page without CAPTCHA

First of all, If you're thinking this is leeched or w.e, get out.. lol this is for the people that don't know how to. Anything that needs to be edited will be in a Different Color.

Editing Host:


Things need:

(Optional)
Color Chart :

Step 1: Download the Register Page without CAPTCHA.

Step 2: Open Register.php with a Text Editor.
Step 3: See where it says
PHP Code:
<?
$myhost
="localhost";
    
$mypass="test";         //your server login password
    
$myuser="root";         //your server login username
    
$mydbacc="account";        //your server account database
    
$mydbdata="my";            //your server my database name
    
$serverport=3306;        //your server connection port
    
$mydb="my";            //your server my database

    // Dont Edit after this
    
mysql_connect($myhost,$myuser,$mypass);
    
mysql_select_db($mydb);
?>
Edit it.

Step 4: Copy and Paste in your Directory. And done lol


Editing the Body:

Step 1: Edit the Title, Its in <title>Account Registration</title>. Type anything inside the <title> Tags.

Step 2: Next thing you want to edit is the Title on the actual Page.
Code:
<?php
	echo "[COLOR="Red"]Welcome to Our Account Registration[/COLOR]";
 ?>
	[COLOR="Red"]Account Registration[/COLOR]
Step 3: Edit the User Name (Optional)
Code:
<TR>
                <TD align="left" height="32"><b>[COLOR="Red"]UserID:[/COLOR]</b></TD>
                <TD class=it3 height="32">
				<INPUT class=it style="FONT-SIZE: 9pt; font-weight:700" name="id" id="id"><b>
				</b>				</TR>
And so on with the others ( Password, Retype Password, Email). REMOVE Email IF YOU DONT HAVE THAT COLUMN IN ACCOUNT DB. It don't matter but just to make things clear.

Do not edit After this:
PHP Code:
<?php
            
if($_POST['B1'])
                    {
                    
mysql_select_db($mydbacc);
                    
$userid trim($_POST['id']);
                    
$password=trim($_POST['pass']);
                    
$passretype=trim($_POST['retpass']);
                    
$hash=$_POST['hash'];

                if(
$password != $passretype) {
                            echo 
"Password not equal to Retyped Password.";
                        }else{
                            if(!
ereg("^[0-9a-zA-Z]{4,12}$",$password))
                            {
                                echo 
"Only letters or numbers, length of 4 to 12 characters";
                            }
                            else
                            {
                                
$res mysql_query("select * from account where name = '".$userid."' order by id desc");
                                if(
mysql_num_rows($res) == 0)
                                {
                                    
mysql_query("insert into account (name,Password,Reg_date) values ('".$userid."','".$hash."','".date("y-m-d H:i:s"time())."')");
                                    echo 
"Account registered successfully.";
                                }
                                else
                                {
                                    echo 
"Account Already exists in database.";
                                }
                            }
                        }


                        }

            
?>
UNLESS YOU KNOW WHAT YOU'RE DOING.


Extra Things:
Icon
*
Code:
<link REL="SHORTCUT ICON" HREF="[COLOR="Red"]LinkHere[/COLOR]">
Add that right before <head> tags

Background
*
Code:
Delete -->   <body bgcolor="#000000" text="#FFFFFF">
Code:
add -->> <body background=[COLOR="Red"]THEURL[/COLOR] text="[COLOR="Red"]red[/COLOR]">
Change the Red Font to get your own things.

Congratz! You've made a Register Page with no Recaptcha code AND You've Learned HTML

Credits:
Grandalio -> Released the Script
Spongebox -> Made the Guide..

Any questions? Reply below.. Again, I didn't Leech, Lol
.Ash is offline  
Thanks
10 Users
Old 05/11/2010, 19:24   #2
 
elite*gold: 0
Join Date: Nov 2008
Posts: 48
Received Thanks: 3
i need help i every time i go to the register page and register it say

Quote:
Warning: mysql_select_db() [function.mysql-select-db]: Connecting to 3.22, 3.23 & 4.0 is not supported. Server is 4.0.18-nt in C:\wamp\www\register.php on line 72

Warning: mysql_select_db() [function.mysql-select-db]: Connecting to 3.22, 3.23 & 4.0 servers is not supported in C:\wamp\www\register.php on line 72

Warning: mysql_select_db() [function.mysql-select-db]: A link to the server could not be established in C:\wamp\www\register.php on line 72

Deprecated: Function ereg() is deprecated in C:\wamp\www\register.php on line 81

Warning: mysql_query() [function.mysql-query]: Connecting to 3.22, 3.23 & 4.0 is not supported. Server is 4.0.18-nt in C:\wamp\www\register.php on line 87

Warning: mysql_query() [function.mysql-query]: Connecting to 3.22, 3.23 & 4.0 servers is not supported in C:\wamp\www\register.php on line 87

Warning: mysql_query() [function.mysql-query]: A link to the server could not be established in C:\wamp\www\register.php on line 87

Warning: mysql_num_rows() expects parameter 1 to be resource, boolean given in C:\wamp\www\register.php on line 88

Warning: mysql_query() [function.mysql-query]: Connecting to 3.22, 3.23 & 4.0 is not supported. Server is 4.0.18-nt in C:\wamp\www\register.php on line 90

Warning: mysql_query() [function.mysql-query]: Connecting to 3.22, 3.23 & 4.0 servers is not supported in C:\wamp\www\register.php on line 90

Warning: mysql_query() [function.mysql-query]: A link to the server could not be established in C:\wamp\www\register.php on line 90
Account registered successfully.


and when i open Navicat account i found that the account is not created i am about to be mad

if any one know how to fix that contact me
wamo0 is offline  
Old 05/11/2010, 19:27   #3
 
rexes13's Avatar
 
elite*gold: 20
Join Date: Nov 2008
Posts: 1,408
Received Thanks: 405
Well the error is that your .php is not rightly connected to your db.That causes the connection problem and as a result you cant create an account!
rexes13 is offline  
Old 05/11/2010, 19:47   #4
 
elite*gold: 0
Join Date: Nov 2008
Posts: 48
Received Thanks: 3
Angry

Quote:
Originally Posted by rexes13 View Post
Well the error is that your .php is not rightly connected to your db.That causes the connection problem and as a result you cant create an account!
i know that is the error i wanna know how to fix it i asked many times how to fix or edit register.php and no one help or show how to
wamo0 is offline  
Old 05/11/2010, 20:30   #5
 
.Ash's Avatar
 
elite*gold: 0
Join Date: May 2009
Posts: 1,175
Received Thanks: 540
Quote:
Originally Posted by wamo0 View Post
i know that is the error i wanna know how to fix it i asked many times how to fix or edit register.php and no one help or show how to
Do you have a Account DataBase?... Lol if not set it to account table in MY Database.. Heres how.
PHP Code:
$myhost="localhost";
    
$mypass="test";         //your server login password
    
$myuser="root";         //your server login username
    
$mydbacc="Change This from account to where ever it is..";        //your server account database
    
$mydbdata="my";            //your server my database name
    
$serverport=3306;        //your server connection port
    
$mydb="my";            //your server my database 
.Ash is offline  
Thanks
1 User
Old 05/11/2010, 20:47   #6
 
elite*gold: 0
Join Date: Nov 2008
Posts: 48
Received Thanks: 3
Quote:
Originally Posted by SpongeBox View Post
Do you have a Account DataBase?... Lol if not set it to account table in MY Database.. Heres how.
PHP Code:
$myhost="localhost";
    
$mypass="test";         //your server login password
    
$myuser="root";         //your server login username
    
$mydbacc="Change This from account to where ever it is..";        //your server account database
    
$mydbdata="my";            //your server my database name
    
$serverport=3306;        //your server connection port
    
$mydb="my";            //your server my database 
wamo0 is offline  
Old 05/11/2010, 20:50   #7
 
elite*gold: 0
Join Date: Nov 2008
Posts: 48
Received Thanks: 3
Quote:
Originally Posted by SpongeBox View Post
Do you have a Account DataBase?... Lol if not set it to account table in MY Database.. Heres how.
PHP Code:
$myhost="localhost";
    
$mypass="test";         //your server login password
    
$myuser="root";         //your server login username
    
$mydbacc="Change This from account to where ever it is..";        //your server account database
    
$mydbdata="my";            //your server my database name
    
$serverport=3306;        //your server connection port
    
$mydb="my";            //your server my database 
is that right

Quote:
<?
$myhost="localhost";
$mypass="rufeng"; //your server login password
$myuser="root"; //your server login username
$mydbacc="account"; //your server account database
$mydbdata="account"; //your server my database name
$serverport=3306; //your server connection port
$mydb="account"; //your server my database

or that one whatever that's my Email add me to send you my computer team view id and pass to you can log in and change it to right one and here the team view program download link
wamo0 is offline  
Old 05/11/2010, 20:51   #8
 
.Ash's Avatar
 
elite*gold: 0
Join Date: May 2009
Posts: 1,175
Received Thanks: 540
Quote:
Originally Posted by wamo0 View Post
is that right
Wrong..

Code:
<?
$myhost="localhost";
$mypass="rufeng"; //your server login password
$myuser="root"; //your server login username
$mydbacc="account"; //your server account database
$mydbdata="my"; //your server my database name
$serverport=3306; //your server connection port
$mydb="my"; //your server my database
COPY AND PASTE THIS
.Ash is offline  
Thanks
1 User
Old 05/11/2010, 21:02   #9
 
elite*gold: 0
Join Date: Nov 2008
Posts: 48
Received Thanks: 3
Quote:
Originally Posted by SpongeBox View Post
Wrong..

Code:
<?
$myhost="localhost";
$mypass="rufeng"; //your server login password
$myuser="root"; //your server login username
$mydbacc="account"; //your server account database
$mydbdata="my"; //your server my database name
$serverport=3306; //your server connection port
$mydb="my"; //your server my database
COPY AND PASTE THIS


not working too
wamo0 is offline  
Old 05/12/2010, 01:17   #10
 
.Ash's Avatar
 
elite*gold: 0
Join Date: May 2009
Posts: 1,175
Received Thanks: 540
Did you edit it? like your password and user for mysql?
.Ash is offline  
Thanks
1 User
Old 05/12/2010, 03:42   #11
 
elite*gold: 0
Join Date: Nov 2008
Posts: 48
Received Thanks: 3
Quote:
Originally Posted by SpongeBox View Post
Did you edit it? like your password and user for mysql?
ya but i don't know how to get the right user and pass i used navicat user and pass
wamo0 is offline  
Old 05/12/2010, 05:18   #12
 
elite*gold: 0
Join Date: Nov 2009
Posts: 171
Received Thanks: 123
do u need any program for this? i just needd a register script, not a friggen website lmao, but good release spongebox, can u explain to me how to do it? cuz u got me all confused, tell me wwhat programs i need if i do need them and how to do it and then how to acess teh register script or w.e, thanks
jayk10304 is offline  
Old 05/12/2010, 20:40   #13
 
.Ash's Avatar
 
elite*gold: 0
Join Date: May 2009
Posts: 1,175
Received Thanks: 540
Quote:
Originally Posted by wamo0 View Post
ya but i don't know how to get the right user and pass i used navicat user and pass
Quote:
Originally Posted by jayk10304 View Post
do u need any program for this? i just needd a register script, not a friggen website lmao, but good release spongebox, can u explain to me how to do it? cuz u got me all confused, tell me wwhat programs i need if i do need them and how to do it and then how to acess teh register script or w.e, thanks
You dont need anything but both of you follow these steps..

Step 1) Delete my.ini
Step 2) Run WinMySQLAdmin
Step 3) For User put root and For Password put test
Step 4) Go to Navicat and open your Connection.
Step 5) And set it like you see it...

Code:
<? 
$myhost="localhost"; 
    $mypass="test";         //your server login password 
    $myuser="root";         //your server login username 
    $mydbacc="account";        //your server account database 
    $mydbdata="my";            //your server my database name 
    $serverport=3306;        //your server connection port 
    $mydb="my";            //your server my database 

    // Dont Edit after this 
    mysql_connect($myhost,$myuser,$mypass); 
    mysql_select_db($mydb); 
?>
If you can't connect, Right click on the connection and properties. Then put in root and test. Try now. Also Open port 80
.Ash is offline  
Old 05/12/2010, 23:08   #14
 
elite*gold: 0
Join Date: Nov 2009
Posts: 171
Received Thanks: 123
Quote:
Originally Posted by SpongeBox View Post
You dont need anything but both of you follow these steps..

Step 1) Delete my.ini
Step 2) Run WinMySQLAdmin
Step 3) For User put root and For Password put test
Step 4) Go to Navicat and open your Connection.
Step 5) And set it like you see it...

Code:
<? 
$myhost="localhost"; 
    $mypass="test";         //your server login password 
    $myuser="root";         //your server login username 
    $mydbacc="account";        //your server account database 
    $mydbdata="my";            //your server my database name 
    $serverport=3306;        //your server connection port 
    $mydb="my";            //your server my database 

    // Dont Edit after this 
    mysql_connect($myhost,$myuser,$mypass); 
    mysql_select_db($mydb); 
?>
If you can't connect, Right click on the connection and properties. Then put in root and test. Try now. Also Open port 80
my.ini in my windows? or for my server, or from where?
jayk10304 is offline  
Old 05/12/2010, 23:15   #15
 
.Ash's Avatar
 
elite*gold: 0
Join Date: May 2009
Posts: 1,175
Received Thanks: 540
from Windows lol
.Ash is offline  
Reply


Similar Threads Similar Threads
[RELEASE] Register Page without CAPTCHA
05/12/2011 - EO PServer Guides & Releases - 17 Replies
I have been requested to post a register page without captcha so here it goes. njoy & if you have any problems, feel free to ask. :rolleyes: http://www.elitepvpers.com/forum/attachment.php?at tachmentid=20955&stc=1&d=1238665374 Greets, Grandalio
Register page
02/18/2010 - CO2 Private Server - 8 Replies
I tried using this register page. http://www.elitepvpers.com/forum/co2-pserver-guide s-releases/381506-release-simple-regpage-5165-a.ht ml But every account I use it says wrong account or password, anyone know whats wrong? I'm not much of a php person lmao.
Register page
02/12/2010 - Metin2 Private Server - 2 Replies
Hallo liebe Community, Ich möchte gerne eine Registration´s seite machen aber von RapidShare kann ich sie nicht downloaden help pls.
looking for good guide to make register page work well 5095
09/20/2009 - CO2 Private Server - 2 Replies
hey guys really i got bored bcoz i still search all my time on google to find good guide about how to make register page work but i don't know why when i change every thing like server name and server IP it didn't work what code is wrong to make it didn't work good :( if any one know good guide pls post it :)
[Help] Register Page
08/17/2008 - EO PServer Hosting - 1 Replies
ok i using x10hosting.com and i got my account and it shows this wat do i add in there 1 sec ill add pic how do you add pic/screenshots



All times are GMT +1. The time now is 20:09.


Powered by vBulletin®
Copyright ©2000 - 2026, Jelsoft Enterprises Ltd.
SEO by vBSEO ©2011, Crawlability, Inc.
This site is protected by reCAPTCHA and the Google Privacy Policy and Terms of Service apply.

Support | Contact Us | FAQ | Advertising | Privacy Policy | Terms of Service | Abuse
Copyright ©2026 elitepvpers All Rights Reserved.