Register for your free account! | Forgot your password?

You last visited: Today at 01:41

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

Advertisement



[SREmu] Register Page

Discussion on [SREmu] Register Page within the SRO Private Server forum part of the Silkroad Online category.

Reply
 
Old   #1
 
elite*gold: 0
Join Date: Jun 2008
Posts: 112
Received Thanks: 22
Exclamation [SREmu] Register Page

Hey guys my Problem is the Reg Page is buggy whenn i go of the reg site :
come this
PHP Code:
NoticeUndefined indexactiv in D:\xampp\htdocs\reg.php on line 31

Fatal error
Call to undefined function mssql_connect() in D:\xampp\htdocs\reg.php on line 115 
Line 31 is thies
PHP Code:
if($_POST['activ'] == '1') { 
Line 115,116,117 is this
PHP Code:
    $con             mssql_connect($mssql['host'],$mssql['user'],$mssql['pass']);
    
$result1         mssql_query("SELECT * FROM silk.dbo.users",$con);
    
$row1             mssql_num_rows($result1); 
The reg.php code here
PHP Code:
<style type="text/css">
<!--
body,td,th {
    font-family: Verdana, Arial, Helvetica, sans-serif;
    font-size: 11px;
    color: #FFFFFF;
}
body {
    background-color: #000000;
}
-->
</style>
<?php

$mssql 
= array(
        
'host' => "123\SQLEXPRESS",                        //Your mssql host goes here
        
'user' => "sa",                    //Your mssql username goes here
        
'pass' => "1234"                        //Your mssql password goes here
        
    
);

function 
anti_injection($sql) {
   
$sql             preg_replace(sql_regcase("/(from|select|insert|delete|where|drop table|show tables|#|\*|--|\\\\)/"),"",$sql);
   
$sql             trim($sql);
   
$sql             strip_tags($sql);
   
$sql             addslashes($sql);
   return 
$sql;
}

if(
$_POST['activ'] == '1') {

        
$accname         anti_injection($_POST['accname']);
        
$accpass1         anti_injection($_POST['accpass1']);
        
$accpass2         anti_injection($_POST['accpass2']);
        
$con             mssql_connect($mssql['host'],$mssql['user'],$mssql['pass']);
        
$result1         mssql_query("SELECT * FROM silk.dbo.users WHERE id = '".$accname."'",$con);
        
$row1             mssql_num_rows($result1);
        
        if(empty(
$accname) || empty($accpass1) || empty($accpass2)|| empty($accname)) {
            echo 
"<br>You didnt fill in all fields<a href='javascript:history.back()'>Go Back</a>";
        } elseif(
$row1 '0' || $row2 '0') {
            echo 
"<br>This Account name already exists.<a href='javascript:history.back()'>Go Back</a>";
        } elseif(
$accpass1 != $accpass2) {
            echo 
"<br>The passwords did not match<a href='javascript:history.back()'>Go Back</a>";
        } elseif(
$accpass1 == $accname) {
            echo 
"<br>Account name and password are the same.<a href='javascript:history.back()'>Go Back</a>";
        } elseif(!
preg_match("/^[0-9a-zA-Z]{3,15}$/i"$accname)) {
            echo 
"<br>Enter a account name only with 0-9 , a-z and A-Z.<a href='javascript:history.back()'>Go Back</a>";
        } elseif(!
preg_match("/^[0-9a-zA-Z]{3,15}$/i"$accpass1)) {
            echo 
"<br>Enter a password only with 0-9 , a-z and A-Z.<a href='javascript:history.back()'>Go Back</a>";
        } elseif(
strlen($accname) < || strlen($accname) > 15) {
            echo 
"<br>Username Must be above 3 and lower then 15 <a href='javascript:history.back()'>Go Back</a>";
        } elseif(
strlen($accpass1) < || strlen($accpass1) > 15) {
            echo 
"<br>Password Must be above 3 and lower then 15 .<a href='javascript:history.back()'>Go Back</a>";
        } else {

        
$accpass         md5($accpass1);
        
$con             mssql_connect($mssql['host'],$mssql['user'],$mssql['pass']);
                          
mssql_query("INSERT INTO silk.dbo.users (
                                                                      id,
                                                                    password,
                                                                    online,
                                                                    banreason,
                                                                    ban,
                                                                    silk,
                                                                    gold,
                                                                    checkinfo
                                                                )
                                                        VALUES     (
                                                                    '"
.$accname."',
                                                                    '"
.$accpass."',
                                                                    '0',
                                                                    '0',
                                                                    '0',
                                                                    '0',
                                                                    '0',
                                                                    '0'
                                                                )"
,$con);
?>
    <center>
        <table width="500">
            <tr>
                  <td colspan='2' align='center'><img src="top.jpg" width="500" height="300" /></td>
            </tr>
            <tr>
                  <td colspan="2" align="center" bgcolor="#333333">
                    Welcome to srevolution! Below are your details! Keep them safe!
                </td>
            </tr>
            <tr>
                  <td bgcolor="#666666">
                    Account name: 
                </td>
                <td bgcolor="#666666">
                    <b><?php echo "".$accname.""?></b>
                </td>
            </tr>
            <tr>
                  <td bgcolor="#333333">
                    Your password: 
                </td>
                <td bgcolor="#333333">
                    <b><?php echo "".$accpass1.""?></b>
                </td>
            </tr>
        </table>
    </center>

<?php
        
}

} else {

    
$con             mssql_connect($mssql['host'],$mssql['user'],$mssql['pass']);
    
$result1         mssql_query("SELECT * FROM silk.dbo.users",$con);
    
$row1             mssql_num_rows($result1);
?>    

    <form action='reg.php' method='POST'>
        <center>
            <table width="500">
                <tr>
                      <td colspan='2' align='center'>
                        <img src="top.jpg" width="500" height="300" />
                    </td>
                </tr>
                <tr>
                    <td bgcolor="#333333">Account Name</td>
                    <td bgcolor="#333333">
                        <input type='text' name='accname' maxlength='12'>
                    </td>
                </tr>
                <tr>
                    <td bgcolor="#666666">Password</td>
                    <td bgcolor="#666666">
                        <input type='password' name='accpass1' maxlength='12'>
                    </td>
                </tr>
                <tr>
                    <td bgcolor="#333333">Again pass.</td>
                    <td bgcolor="#333333">
                        <input type='password' name='accpass2' maxlength='12'>
                    </td>
                </tr>
                <tr>
                    <td align='center' bgcolor="#666666">
                    </td>
                      <td align='right' bgcolor="#666666">
                        <input type='hidden' name='activ' value='1' />
                        <input name="submit" type='submit' value='Create Account' />
                    </td>
                </tr>
            </table>
        </center>
    </form>
    
<?php
}
?>
Wodkasebi is offline  
Old 02/26/2011, 15:01   #2
 
rofman2008's Avatar
 
elite*gold: 0
Join Date: Jun 2009
Posts: 498
Received Thanks: 86
So why using SrEmu ? its FAIL!

Use SEE Emu or Servoultion Emu

Good Luck
rofman2008 is offline  
Thanks
1 User
Old 02/26/2011, 15:04   #3
 
$eRiaLKiLLeR's Avatar
 
elite*gold: 0
Join Date: Oct 2010
Posts: 61
Received Thanks: 3
I think Srevolation
$eRiaLKiLLeR is offline  
Old 02/26/2011, 15:55   #4
 
elite*gold: 0
Join Date: Jun 2008
Posts: 112
Received Thanks: 22
It's Srevolution
Wodkasebi is offline  
Reply


Similar Threads Similar Threads
[HELP] register page
04/23/2010 - Conquer Online 2 - 0 Replies
#request close i figured it out I don't know if this is the correct place to post this i'm sorry but i'm still a noob But i set up my register page and i get a weird error heres a picture of it: http://i922.photobucket.com/albums/ad68/borntohun t9944/helpmeplease.jpg Can anyone help me with that?
[Help]register page
09/25/2009 - CO2 Private Server - 9 Replies
hey guys i need help to make Register page for TQ binary 3.0 pls if any one know tell me how to make good one or good guide :)
register.php page?
04/11/2009 - CO2 Private Server - 1 Replies
anyone know how to make one... clear instructions plz... im kinda slow lol
Register Page help pls
07/22/2008 - EO PServer Hosting - 0 Replies
OK i have a vista and my wamps Apache wont stay runing can somebody help mepls and ty!!!
register page
07/16/2008 - EO PServer Hosting - 1 Replies
ho can help me with a register page ?..i don't know how to do it and i really need for my server....becouse that i loose alot of ppl's :(:(



All times are GMT +2. The time now is 01:41.


Powered by vBulletin®
Copyright ©2000 - 2024, 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 ©2024 elitepvpers All Rights Reserved.