Conquer Site

05/25/2011 12:34 Kiyono#16
Quote:
Originally Posted by AlienGod View Post
LoLz when will EU co get a website like that :D
Never, there is no EU co.
05/25/2011 12:39 BaussHacker#17
Quote:
Originally Posted by Kiyono View Post
Never, there is no EU co.
Only European servers, but they are under the English co.
05/27/2011 14:19 petje1#18
Quote:
Originally Posted by matt003 View Post
CAPTCHA on register is bugged :X
Help me for resolve this pleasse?
Remove evrything with with captcha in : class.accounts

then go to modules/register then remove the captcha code there, and your done ^^


EDIT:
Code:
Warning: scandir() [function.scandir]: Directory name cannot be empty in C:\AppServ\www\conquer2\classes\class.account.php on line 112
I'm getting that error, what should i do now? o.o
Somehow he says that i need to set a patch to my accounts or something?

edit:

when i use mysql, it doesn't give any error, or confirmation.
What should i do?
06/13/2011 07:32 jorge25#19
i get a error Login Server›
Warning: fsockopen() [function.fsockopen]: unable to connect to 127.0.0.1:9958 (Se produjo un error durante el intento de conexi�n ya que la parte conectada no respondi� adecuadamente tras un periodo de tiempo, o bien se produjo un error en la conexi�n establecida ya que el host conectado no ha podido responder. ) in C:\AppServ\www\classes\class.configs.php on line 129
Offline Game Server›
Warning: fsockopen() [function.fsockopen]: unable to connect to 127.0.0.1:5816 (Se produjo un error durante el intento de conexi�n ya que la parte conectada no respondi� adecuadamente tras un periodo de tiempo, o bien se produjo un error en la conexi�n establecida ya que el host conectado no ha podido responder. ) in C:\AppServ\www\classes\class.configs.php on line 129
??

WHY?
06/13/2011 14:53 alaa410#20
You can do this to me by teamviewer
06/13/2011 15:25 alismeckeru#21
Who know how to make work on 5369+ server?
06/13/2011 22:45 agathom#22
Cool thanks
06/26/2011 00:19 Mangtesu#23
Hello, i have tried this.
i got it working to some point.
i CAN change the password of an existing account, tested it by making one in phpmyadmin and seeing the password being changed.
however when i try to make an account it throws me an error saying it cannot create an account.
any idea ?

im using it in combination of a MySQL server

ps. the site looks really nice!
06/26/2011 01:53 BioHazarxPaul#24
need to make sure that all the tables match up and it passes any checks he has added into his php coding
06/26/2011 20:24 alex4war#25
Is this working on 12talis source(5368+) ? if yes.. tell me.
06/27/2011 03:44 chickmagnet#26
Quote:
Originally Posted by alex4war View Post
Is this working on 12talis source(5368+) ? if yes.. tell me.
i think u can easily make it work for any source that uses mysgl for database
06/27/2011 17:13 alex4war#27
not for me :S i got many errors.
06/27/2011 23:00 BioHazarxPaul#28
looks to me that you just need to edit
Code:
 $check = $this->conn->query("SELECT * FROM accounts WHERE username = '".$this->username."'"); 

//accounts is your table, and username is your row.

$ins_m = $this->conn->prepare("INSERT INTO accounts (username, password, email, question, answer, idnumber) VALUES (:username, :password, :email, :question, :answer, :idnumber)");

//as for this each insert into is for your rows, you will need to change this for different databases. some wont have a question and answer field or an id number.
oh forgot to add values are from the register page so you will need to remove values if u remove a row.
06/28/2011 01:21 alex4war#29
Quote:
Originally Posted by BioHazarxPaul View Post
looks to me that you just need to edit
Code:
 $check = $this->conn->query("SELECT * FROM accounts WHERE username = '".$this->username."'"); 

//accounts is your table, and username is your row.

$ins_m = $this->conn->prepare("INSERT INTO accounts (username, password, email, question, answer, idnumber) VALUES (:username, :password, :email, :question, :answer, :idnumber)");

//as for this each insert into is for your rows, you will need to change this for different databases. some wont have a question and answer field or an id number.
oh forgot to add values are from the register page so you will need to remove values if u remove a row.
Where do i have to add that?

I got some errors like in register:
Quote:
Warning: session_start() [function.session-start]: Cannot send session cache limiter - headers already sent (output started at C:\AppServ\www\conquer2\index.php:81) in C:\AppServ\www\conquer2\classes\class.account.php on line 2
and in change pass:
Quote:
Warning: session_start() [function.session-start]: Cannot send session cache limiter - headers already sent (output started at C:\AppServ\www\conquer2\index.php:81) in C:\AppServ\www\conquer2\modules\change_password.ph p on line 2
And in Ranking:
Quote:
Warning: include(../classes/class.configs.php) [function.include]: failed to open stream: No such file or directory in C:\AppServ\www\conquer2\classes\class.rank.php on line 16

Warning: include() [function.include]: Failed opening '../classes/class.configs.php' for inclusion (include_path='.;C:\php6\pear') in C:\AppServ\www\conquer2\classes\class.rank.php on line 16
and at server status

Quote:

Warning: fsockopen() [function.fsockopen]: unable to connect to 5.181.18.192:9958 ... in C:\AppServ\www\conquer2\classes\class.configs.php on line 129
Offline
I tried to google the problems and i tried to solve it but nothing works :S
so how to fix this?
06/28/2011 01:40 BioHazarxPaul#30
Right sorry about that, class.account.php is where ur going to want to edit the table names and rows, and you will also have the register.php file is where all the user input comes from for the values..