-
Re: [REL] Project Cold Coffeee ~ Jeax Server [C#, MySQL, Source, Executable]
I have everything work. Great coding Jeax. I just need a loader has anyone coded 1?
-
Re: [REL] Project Cold Coffeee ~ Jeax Server [C#, MySQL, Source, Executable]
the login/registration has to be PHP Based so you need to be fairly good at php to get it working right.
-
Re: [REL] Project Cold Coffeee ~ Jeax Server [C#, MySQL, Source, Executable]
Hum.... can someone post his config.txt without password.
I think i mis something.
Because in someone his tut i saw at the end of the password some weird things..
Quote:
the login/registration has to be PHP Based so you need to be fairly good at php to get it working right.
Lol :P ik think basic PHP is enough...
Quote:
I found out the problem! Just install ODBC : MySQL AB :: MySQL Connector/ODBC 3.51 Downloads . Try downloading and installing that Yoshi_Zero worked for me.
Thanks, i gonna try it :)
-
Re: [REL] Project Cold Coffeee ~ Jeax Server [C#, MySQL, Source, Executable]
Hello,
I'm pretty new to MySQL. I setup the config:
Quote:
[database]
host=localhost
port=3306
db=habbo_db
username=puffmac
password=*removed*
And I have uploaded the SQL databse to my MySQL server. But when I run the exe it gives me this error:
http://img259.imageshack.us/img259/2...orhabbozh2.gif
I think you need a MySQL connector or something but where can I get it?
Please Help.
-
Re: [REL] Project Cold Coffeee ~ Jeax Server [C#, MySQL, Source, Executable]
Great server !
Just needs catalogue completing and the loging/registering/habbo home system coded.
Has anyone got a login system we could use ?
-
Re: [REL] Project Cold Coffeee ~ Jeax Server [C#, MySQL, Source, Executable]
It's OK I got it, I just need a loader now :S
-
Re: [REL] Project Cold Coffeee ~ Jeax Server [C#, MySQL, Source, Executable]
It dosen't need a loader it needs a php sso login.
I would have releaed but stupid-ass php where everything must be perfect!
-
Re: [REL] Project Cold Coffeee ~ Jeax Server [C#, MySQL, Source, Executable]
Quote:
Originally Posted by
jetgod
It dosen't need a loader it needs a php sso login.
I would have releaed but stupid-ass php where everything must be perfect!
Where can I get an SSO thingy. Also If someone wants to post a tut as I am up for learning. I can do HTML but not PHP.
-
Re: [REL] Project Cold Coffeee ~ Jeax Server [C#, MySQL, Source, Executable]
The catalogue is 100% Done? :s
-
Re: [REL] Project Cold Coffeee ~ Jeax Server [C#, MySQL, Source, Executable]
Quote:
Originally Posted by
PuffMac
Hello,
I'm pretty new to MySQL. I setup the config:
And I have uploaded the SQL databse to my MySQL server. But when I run the exe it gives me this error:
http://img259.imageshack.us/img259/2...orhabbozh2.gif
I think you need a MySQL connector or something but where can I get it?
Please Help.
i've got that problem 2
-
Re: [REL] Project Cold Coffeee ~ Jeax Server [C#, MySQL, Source, Executable]
-
Re: [REL] Project Cold Coffeee ~ Jeax Server [C#, MySQL, Source, Executable]
-
Re: [REL] Project Cold Coffeee ~ Jeax Server [C#, MySQL, Source, Executable]
Whoever had the idea for the MYSQL connecter, THANK YOU. Although, because I don't work with php much, it's useless without SSO.
-
Re: [REL] Project Cold Coffeee ~ Jeax Server [C#, MySQL, Source, Executable]
Quote:
Originally Posted by
Dj-Rubber
i've got that problem 2
Download the MySQL AB :: MySQL Connector/ODBC 3.51 Downloads connector. Then, after its installed open your config file and make sure the connection is set correctly. The exe will crash if it cant connect to your databse.
The reason mine wasnt working was because i had the wrong port in the settings :wink2:.
-
Re: [REL] Project Cold Coffeee ~ Jeax Server [C#, MySQL, Source, Executable]
Quote:
Originally Posted by
MrGiMmE
jeax ur server is noob becuz u dont have battleball!
Funny think, I havent seen you EVER coding a server or running a server that DOESNT USE HAMACHI!
His better then you, he has worked hard and made this server which is AWESOME!
MrGiMmE
Present 4 u!
:2up:
-
Re: [REL] Project Cold Coffeee ~ Jeax Server [C#, MySQL, Source, Executable]
Quote:
Originally Posted by
PuffMac
Hello,
I'm pretty new to MySQL. I setup the config:
And I have uploaded the SQL databse to my MySQL server. But when I run the exe it gives me this error:
http://img259.imageshack.us/img259/2...orhabbozh2.gif
I think you need a MySQL connector or something but where can I get it?
Please Help.
I have that problem to!!!!!!!!! what can i do ?
-
Re: [REL] Project Cold Coffeee ~ Jeax Server [C#, MySQL, Source, Executable]
Everyone is getting the same error.... don't you people read what jeax says? .... That error happens because the SQL cannot connect to the server.... Check double check and keep checking until it works... That is the only reason :)
-
Re: [REL] Project Cold Coffeee ~ Jeax Server [C#, MySQL, Source, Executable]
-
Re: [REL] Project Cold Coffeee ~ Jeax Server [C#, MySQL, Source, Executable]
I dont understand the sso. Should i create a php file where it checks the username and password and if the username and pass is correct its creating a random string (sso ticket) and echo it in the loader? But shouldnt it echo out the username and password somewhere? Sry for my english im swedish.
-
Re: [REL] Project Cold Coffeee ~ Jeax Server [C#, MySQL, Source, Executable]
The error when it cannot connect to mysql was for me that its squares like this [] after the port number. Remove them and i think it would work Sry for my english
-
Re: [REL] Project Cold Coffeee ~ Jeax Server [C#, MySQL, Source, Executable]
-
Re: [REL] Project Cold Coffeee ~ Jeax Server [C#, MySQL, Source, Executable]
i made som login code :P But i get Wrong password out. :( Heres the code. (The syle is taken from iJeax.com ~ Login)
Quote:
Originally Posted by Check.php
<?php
ob_start();
session_start();
include ("config.php");
$username = $_POST['name'];
$givenpass = $_POST['pass'];
$tmppass = mysql_query("SELECT password FROM users WHERE username='$username'");
if ($givenpass == $tmppass)
{
// Login
$rand1=mt_rand(100000,999999);
$rand2=mt_rand(10000,99999);
$rand3=mt_rand(10000,99999);
$rand4=mt_rand(10000,99999);
$rand5=mt_rand(10000,99999);
$rand6=mt_rand(0,9);
$ticket="ST-".$rand1."-".$rand2.$rand3.$rand4.$rand5."-se-sv".$rand6 ;
mysql_query("UPDATE users SET ssoticket='$ticket' WHERE username='$username'");
$_SESSION['sso'] = $ticket;
session_write_close();
header("Refresh: 0;URL=index.php?client");
}
else
{
echo "Felaktigt password!";
}
?>
[QUOTE=index.php]
<?php
session_start();
if(isset($_SESSION['sso'])) {
$sso = $_SESSION['sso'];
?>
<object classid="clsid:166B1BCA-3F9C-11CF-8075-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/director/sw.cab#version=8,5,1,0" id="habbo" width="720" height="540">
<param name="src" value=http://ijeax.com/Habbo/habbo.dcr>
<param name=swText value="">
<param name="sw8" value="use.sso.ticket=1;sso.ticket=local">
<param name="sw1" value="connection.info.host=sulake.sytes.net">
<param name="sw2" value="connection.info.port=1337">
<param name="sw4" value="connection.mus.host=game.habbohotel.co.uk">
<param name="sw5" value="connection.mus.port=30001">
<param name="sw6" value="external.variables.txt=http://www.ijeax.com/Habbo/variables.txt">""
<param name="sw7" value="external.texts.txt=http://www.ijeax.com/Habbo/external.txt">""
<embed src=http://ijeax.com/Habbo/habbo.dcr
bgColor="#000000" width="720" height="540"
sw1 = "connection.info.host=127.0.0.1"
sw2 = "connection.info.port=1337"
sw4 = "connection.mus.host=sulake.sytes.net"
sw5 = "connection.mus.port=30001"
sw6 = "external.variables.txt=http://www.ijeax.com/Habbo/variables.txt"
sw7 = "external.texts.txt=http://www.ijeax.com/Habbo/external.txt"
sw8 = "use.sso.ticket=1;sso.ticket=<?=$sso?>"
</embed>
</object>
<?
}
?>
<style type="text/css">
.dpbox {
border-color:#000000;
border-style:solid;
border-left-width:thin;
border-right-width:thin;
border-top-width:thin;
border-bottom-width:thin;
margin-bottom:inherit;
font-family: Tahoma;
font-size: 10px;
color: #333333;
background-color: #DBDBDB;
}
.style5 {font-family: Tahoma; font-size: 10px; font-weight: bold; }
</style><title>Login</title><form method="post" action="check.php">
<table width="400" border="0" cellspacing="0" cellpadding="5">
<tr>
<td><span class="style5">Anv
-
Re: [REL] Project Cold Coffeee ~ Jeax Server [C#, MySQL, Source, Executable]
i have the settings good..
but i get a error what now ?
-
Re: [REL] Project Cold Coffeee ~ Jeax Server [C#, MySQL, Source, Executable]
-
Re: [REL] Project Cold Coffeee ~ Jeax Server [C#, MySQL, Source, Executable]
Quote:
Originally Posted by
DarthDie
Yes i have on that site a few progamms downloaded and installed but i get the same error :S :( plz anyone help me!