Need working registration for Zone Gamers web template...PLEASE!!!!!

Page 1 of 2 12 LastLast
Results 1 to 15 of 16
  1. #1
    Tantra/Web Development jbeitz107 is offline
    MemberRank
    Mar 2012 Join Date
    USALocation
    1,471Posts

    Need working registration for Zone Gamers web template...PLEASE!!!!!

    please share a working register.php for zone gamers web template that creates the tad file. you can email it to jbeitz107@gmail.com or upload it and share it. PLEASE!!! and THANK YOU!!!


  2. #2
    Ronin Dev John is offline
    MemberRank
    Mar 2011 Join Date
    /dev/nullLocation
    382Posts

    Re: Need working registration for Zone Gamers web template...PLEASE!!!!!

    So difficult is it create a new page to you server?.

  3. #3
    Tantra/Web Development jbeitz107 is offline
    MemberRank
    Mar 2012 Join Date
    USALocation
    1,471Posts

    Re: Need working registration for Zone Gamers web template...PLEASE!!!!!

    Quote Originally Posted by John View Post
    So difficult is it create a new page to you server?.
    Yes and No lol. It just depends if you have the right software to make it easier. Adobe Dreamweaver is a nice program for editting the page using a design template with code. Just take a look at what I have done so far on my site. Tantra Infinix - Tantra Online K5 - Neo Oriental Fantasy MMORPG and let me know what you think of it so far.

  4. #4
    Novice kleyzito is offline
    MemberRank
    Mar 2011 Join Date
    4Posts

    Re: Need working registration for Zone Gamers web template...PLEASE!!!!!

    you could provide as using the registry, please ...

  5. #5
    Tantra/Web Development jbeitz107 is offline
    MemberRank
    Mar 2012 Join Date
    USALocation
    1,471Posts

    Re: Need working registration for Zone Gamers web template...PLEASE!!!!!

    Quote Originally Posted by kleyzito View Post
    you could provide as using the registry, please ...
    please explain. this is the code i am using but, it doesn't work. it creates the .tad file but, it doesn't configure the password correctly.

    $fp = fopen("C:/kathana6/Share/Serv02/New/$UserID.txt","w");
    fwrite($fp,$UserID."\r\n");
    fwrite($fp,$Password."\r\n");
    fwrite($fp,"000000\r\n");
    fwrite($fp,$UserKey."\r\n");
    $password2=strtoupper(md5(trim($Password)));
    $initial=substr($UserID,0,1);
    $userlenght=strlen(trim($UserID));
    $accdir="C:\kathana6\DBSRV\Account";
    $f=fopen("./inc/sample.tad", "r");
    $acc = fread($f,7124);
    $demoid=substr($acc,0,$userlenght);
    $demopass=substr($acc,52,32);
    $acc = str_replace($demoid,$UserID,$acc);
    $acc = str_replace($demopass,$Password,$acc);
    // echo $accdir."\\".$initial."\\".$UserID;
    $f2=fopen($accdir."\\".$initial."\\".$UserID.".tad", "a");
    fwrite($f2,$acc);
    fclose($fp);
    fclose($f);

  6. #6
    Tantra/Web Development jbeitz107 is offline
    MemberRank
    Mar 2012 Join Date
    USALocation
    1,471Posts

    Re: Need working registration for Zone Gamers web template...PLEASE!!!!!

    Quote Originally Posted by jbeitz107 View Post
    please explain. This is the code i am using but, it doesn't work. It creates the .tad file but, it doesn't configure the password correctly.

    $fp = fopen("c:/kathana6/share/serv02/new/$userid.txt","w");
    fwrite($fp,$userid."\r\n");
    fwrite($fp,$password."\r\n");
    fwrite($fp,"000000\r\n");
    fwrite($fp,$userkey."\r\n");
    $password2=strtoupper(md5(trim($password)));
    $initial=substr($userid,0,1);
    $userlenght=strlen(trim($userid));
    $accdir="c:\kathana6\dbsrv\account";
    $f=fopen("./inc/sample.tad", "r");
    $acc = fread($f,7124);
    $demoid=substr($acc,0,$userlenght);
    $demopass=substr($acc,52,32);
    $acc = str_replace($demoid,$userid,$acc);
    $acc = str_replace($demopass,$password,$acc);
    // echo $accdir."\\".$initial."\\".$userid;
    $f2=fopen($accdir."\\".$initial."\\".$userid.".tad", "a");
    fwrite($f2,$acc);
    fclose($fp);
    fclose($f);
    problem fixed!!!!

  7. #7
    Enthusiast killpatrick is offline
    MemberRank
    Dec 2010 Join Date
    41Posts

    Re: Need working registration for Zone Gamers web template...PLEASE!!!!!

    pls. tell us how did you fix it.. coz i have same problem..

  8. #8
    Ronin Dev John is offline
    MemberRank
    Mar 2011 Join Date
    /dev/nullLocation
    382Posts

    Re: Need working registration for Zone Gamers web template...PLEASE!!!!!

    Quote Originally Posted by jbeitz107 View Post
    Yes and No lol. It just depends if you have the right software to make it easier. Adobe Dreamweaver is a nice program for editting the page using a design template with code. Just take a look at what I have done so far on my site. Tantra Infinix - Tantra Online K5 - Neo Oriental Fantasy MMORPG and let me know what you think of it so far.
    I use only the Notepad, Adobe Dreamweaver is for novice.

  9. #9
    Tantra/Web Development jbeitz107 is offline
    MemberRank
    Mar 2012 Join Date
    USALocation
    1,471Posts

    big grin Re: Need working registration for Zone Gamers web template...PLEASE!!!!!

    Quote Originally Posted by John View Post
    I use only the Notepad, Adobe Dreamweaver is for novice.
    Adobe Dreamweaver only tells you that there is an error. It doesn't tell you how to fix it. And if you are so good why didn't you help me when I needed it?
    lol

  10. #10
    Novice kleyzito is offline
    MemberRank
    Mar 2011 Join Date
    4Posts

    Re: Need working registration for Zone Gamers web template...PLEASE!!!!!

    Quote Originally Posted by jbeitz107 View Post
    please explain. this is the code i am using but, it doesn't work. it creates the .tad file but, it doesn't configure the password correctly.

    $fp = fopen("C:/kathana6/Share/Serv02/New/$UserID.txt","w");
    fwrite($fp,$UserID."\r\n");
    fwrite($fp,$Password."\r\n");
    fwrite($fp,"000000\r\n");
    fwrite($fp,$UserKey."\r\n");
    $password2=strtoupper(md5(trim($Password)));
    $initial=substr($UserID,0,1);
    $userlenght=strlen(trim($UserID));
    $accdir="C:\kathana6\DBSRV\Account";
    $f=fopen("./inc/sample.tad", "r");
    $acc = fread($f,7124);
    $demoid=substr($acc,0,$userlenght);
    $demopass=substr($acc,52,32);
    $acc = str_replace($demoid,$UserID,$acc);
    $acc = str_replace($demopass,$Password,$acc);
    // echo $accdir."\\".$initial."\\".$UserID;
    $f2=fopen($accdir."\\".$initial."\\".$UserID.".tad", "a");
    fwrite($f2,$acc);
    fclose($fp);
    fclose($f);
    Thanks ... I managed to do to run it properly .... Ando with password change as just wrong ... if something happened I move the code and tanks saudos

  11. #11
    Ronin Dev John is offline
    MemberRank
    Mar 2011 Join Date
    /dev/nullLocation
    382Posts

    Re: Need working registration for Zone Gamers web template...PLEASE!!!!!

    Quote Originally Posted by jbeitz107 View Post
    Adobe Dreamweaver only tells you that there is an error. It doesn't tell you how to fix it. And if you are so good why didn't you help me when I needed it?
    lol
    I'm not a diviner or sorcerer. ;)

  12. #12
    Tantra/Web Development jbeitz107 is offline
    MemberRank
    Mar 2012 Join Date
    USALocation
    1,471Posts

    Re: Need working registration for Zone Gamers web template...PLEASE!!!!!

    you should be lol but, this is my fix that i have uploaded to share for only 14 days though. ADrive | Online Storage, Online Backup, Cloud Storage
    hope this helps others. goodluck.

  13. #13
    Novice kleyzito is offline
    MemberRank
    Mar 2011 Join Date
    4Posts

    Re: Need working registration for Zone Gamers web template...PLEASE!!!!!

    Quote Originally Posted by jbeitz107 View Post
    you should be lol but, this is my fix that i have uploaded to share for only 14 days though. ADrive | Online Storage, Online Backup, Cloud Storage
    hope this helps others. goodluck.
    Tanks man...

  14. #14
    Novice kleyzito is offline
    MemberRank
    Mar 2011 Join Date
    4Posts

    Re: Need working registration for Zone Gamers web template...PLEASE!!!!!

    Quote Originally Posted by jbeitz107 View Post
    you should be lol but, this is my fix that i have uploaded to share for only 14 days though. ADrive | Online Storage, Online Backup, Cloud Storage
    hope this helps others. goodluck.
    Tanks Man n.n

  15. #15
    We Are The GAMERS ryandzzz is offline
    MemberRank
    May 2012 Join Date
    MDOLocation
    261Posts

    Re: Need working registration for Zone Gamers web template...PLEASE!!!!!

    Need help....
    Why my web zonagamers....
    Web Ranking not work and my kasta in game not work... -_-

    if others already successful
    problem live on web ranking....

    tq b4...



Page 1 of 2 12 LastLast

Advertisement