no sorry i have the same problems to identify the opcodes
Printable View
no sorry i have the same problems to identify the opcodes
Is it possible to add new dungeons to the current version instead of upgrading to a newer version?
i think this would do a lot of problems cause of missing item icons modells or more..
it think first adding opcodes before implementing new dungeons..
but till lvl 58 should do no problems
maybe some 60
Yeah I got some more OpCodes I will commit in a minute to my repository
Anyone can help for this, because i've not modified the core script and it's not fonctional
http://img15.hostingpics.net/pics/394883failed.jpg
Yes my webserver is online
wamp
http://img15.hostingpics.net/pics/684394wamp.jpg
My register page
http://img15.hostingpics.net/pics/409558register.jpg
last my database
http://img15.hostingpics.net/pics/37515888db.jpg
I can't understand the problem...
and my link for localhost in the launcher
http://img15.hostingpics.net/pics/965046lll.jpg
Vilney, i have problem too while try inject .\www folder in my webcombine, so i try only one, maybe i can get it in next time...
P.S. Haw about 80 port of web server? Launcher use standard HTTP port for authorization
use the registered username not email...
"test" not your registered email test@yahoo.fr
bud i saw.. on picture... your password has a lot of *********** in the launcher pass input field
but in database... its md5 encrypted...
098f6bcd4621d373cade4e832627b4f6 = test
so do you use the md5 string? or the password...^^
the launcher & register enc/deccrypts the md 5 if you register...
as test it writes md5 string in database...
and back if you use test in launcher.. >md5 checks database.. if its correct you get an okay
seem you are useing the md5 string^^
use the USERNAME and not email.. shoudl do too but havent tested right..
maybe needs a bit fixing for email in auth.php but i dont think
and use a PASSWORD you entered not the MD5 String from Database
the www i only renamed to www to have auth reg and serverlist folde rin one folder..
www = root of host!
the www folder from my launcher is the root folder on web so it should be
localhost/ "auth,reg,serverlist files here"
if you change the folders
like localhost/webxxxterablabla/ "auth,reg,serverlist files here"
you have to modify the launcher like above with the webgetstring..
PS: i had a same problem on a Vista system from a friend..
registration and else worked..
but when he wanted to log in ...he always got error..
the problem behind that was..vista had running an web service in background
it was i think part of IIS webserver... some host thingy...what used the port 80...
everytime running his own sebserver programm (xampp) he had not hte right port in xamp always "81"
so launcher never got connection to the "auth" page for login..
look your ports if they are correct
like TieLay said..
P5yl0, about files in .\www folder:
- when i try use other webcompine i see PHP enterpretator error, so when i look into files, i see wrong code in .\www\register\index.php
you or other forget adds php in lines 84 and 95 in teg after <?
its not used ass php cause its.. html
<!---- the form to take input ----!>
<html>
<body>
<form action="<? $_SERVER['PHP_SELF'] ?>" method="post">
maybe there is an php error im not very conform with that...
but it worked so far...
if you can repair it do it..
this code is from an older launcher i used for aion before .. only modified for tera...
and after it worked so far i stopped working on launcher...
so its not perfect.. but does its job...
and line 95!
<?
}
?>
you see the "}"
this <? .... ?>
is for closing the html input... so far i know...
if you edit something and it doesnt work... don“t hope for much support
cause files are working correct, launcher, server, and else for localhost !!!
i have more than 10 requests with no problems.. !!!
if you edit.. them.. your on your own..!
I've modified your script and it work
Code:<?php
include "config.php"; // the database configuration file. Update this to connect to your databse
//Gets Input from launcher
if (isset($_POST["username"]))
$username = $_POST['username']; //username
else
$username = "";
if (isset($_POST["password"]))
$password = $_POST['password']; //password
else
$password = "";
if (isset($_POST["email"]))
$email = $_POST['email']; //email
else
$email = "";
//check if the form was submitted
if((isset($username) && $password != ""))
{
//check whether the username and e-mail exist or not
$sql="select Name,Email from accounts where Name='".$username."'or Email='".$email."'";
$results=mysql_query($sql) or die(mysql_error());
if(mysql_num_rows($results)>0)
{
$row=mysql_fetch_row($results);
//check the username
if($username==$row['0'])
{
echo 'username='.$username.'&password='.$password;
}
//checks the e-mail
elseif($email==$row['1'])
{
echo 'username='.$username.'&password='.$password;
}
else
{
//somethings wrong return empty string
echo '(username='.$username.'&password='.$password.')';
}
}
else
//somethings wrong return
{
}
}
?>
lol..
sry.. but this is the register form .. when you delete the last lines where are your input on the webpage
to register a new user goto 127.0.0.1/register with your code ....your site is empty..
you deleted the login part ?!?
No this is the login form i've just modified it
http://img4.hostingpics.net/pics/401467reg.jpg