Page 17 of 29

Re: Support for Account Manager

Posted: Sun Mar 14, 2010 8:13 pm
by daedalus
@RuJin,

becarefull, when you parse your log there are your password hash on it.

about your problem I've made some modification on the acm today try with the new version and enable debug mode if the issue is still here.

Re: Support for Account Manager

Posted: Sun Mar 14, 2010 10:01 pm
by RuJin
becarefull, when you parse your log there are your password hash on it.
yep , i know , but thx anyway .
about your problem I've made some modification on the acm today try with the new version and enable debug mode if the issue is still here.
Debug - enabled . (DEBUG MODE ON ACM VERSION : 0.9.7 )
Cache - Deleted .

Same problem , even with non existing acc i have blank page . ( no warning like PASSWORD invalid etc)

Re: Support for Account Manager

Posted: Sun Mar 14, 2010 10:04 pm
by daedalus
what say php or apache logs ?

Re: Support for Account Manager

Posted: Sun Mar 14, 2010 10:54 pm
by RuJin
Apache
[Mon Mar 15 00:42:05 2010] [notice] Parent: child process exited with status 255 -- Restarting.
[Mon Mar 15 00:42:06 2010] [notice] Apache/2.2.11 (Win32) mod_ssl/2.2.11 OpenSSL/0.9.8k PHP/5.3.0 configured -- resuming normal operations
[Mon Mar 15 00:42:06 2010] [notice] Server built: Dec 10 2008 00:10:06
[Mon Mar 15 00:42:06 2010] [notice] Parent: Created child process 5704
[Mon Mar 15 00:42:07 2010] [warn] Init: Session Cache is not configured [hint: SSLSessionCache]
[Mon Mar 15 00:42:07 2010] [notice] Child 5704: Child process is running
[Mon Mar 15 00:42:07 2010] [notice] Child 5704: Acquired the start mutex.
[Mon Mar 15 00:42:07 2010] [notice] Child 5704: Starting 64 worker threads.
[Mon Mar 15 00:42:07 2010] [notice] Child 5704: Starting thread to listen on port 80.
and no php errors.

Re: Support for Account Manager

Posted: Mon Mar 15, 2010 12:09 pm
by denser
check your session settings on php or check apache logs.

edit: ops. PHP session have wrong values

Re: Support for Account Manager

Posted: Tue Mar 16, 2010 10:51 pm
by IiIJacKIiI
Working Fine on a payed webhosting with Cpanel :)
:twisted:

Re: Support for Account Manager

Posted: Wed Mar 31, 2010 1:11 am
by promo
Donate system in this system will be good. :D

Re: Support for Account Manager

Posted: Sun Apr 04, 2010 10:50 pm
by Starter
Great work!

But please add an integrated vote-point-system feature and it will be even greater! :mrgreen:

Re: Support for Account Manager

Posted: Mon Apr 12, 2010 2:29 am
by laguna
Hi people.

I have a n issue. I kind of read the whole topic but didn't saw anything similar.

My situation with the l2acm is like this. everything works, but the apache fails. connection reseted, it don't say much. The weird thing is that, the account is create, the email is send. It looks like the acm does it job. but it always throws an error.

I already check, php.ini, and cache rights. Can some tell me more other reason why the apache may be throwing errors?

thks.

Re: Support for Account Manager

Posted: Mon Apr 12, 2010 10:08 am
by jurchiks
you don't say what your errors are... we're not prophets here, you know?

Re: Support for Account Manager

Posted: Mon Apr 12, 2010 3:50 pm
by laguna
thks for the sarcasm jurchiks... here is the error

Image
Image
Image

http://oca.microsoft.com/en/dcp20.asp

and like I said before, everything works, the account is created on the database, and the email is send. but I receive this error which don't say a thing... why?

I believe it may be the php failing when using the smtp, but the email work and I already check that.... just one think, I have a account db and two serverGame database..... but the l2acm have the logins with full access... just to mention it....

thks if anyone have any idea.

Re: Support for Account Manager

Posted: Mon Apr 12, 2010 4:38 pm
by denser
look at Events of Applications in MMC. there can be useful info.

Re: Support for Account Manager

Posted: Mon Apr 12, 2010 7:52 pm
by jurchiks
szModName : php_mysql.dll...
what about that file?

Re: Support for Account Manager

Posted: Mon Apr 12, 2010 10:42 pm
by laguna
event viewer show an error about the php_mysql.dll like jurchiks says...


Faulting application httpd.exe, version 2.2.11.0, faulting module php_mysql.dll, version 5.3.0.0, fault address 0x00002072.

still I am no sure what it means. I'll try to install the php5.3.2. But honestly I don't know what to do with this info... :P

Re: Support for Account Manager

Posted: Tue Apr 13, 2010 6:12 am
by laguna
okey, I found something....

http://www.wampserver.com/phorum/read.p ... iew,page=1

Code: Select all

 There is a bug in PHP 5.3.0 when using function mysql_close with no parameter and cause Apache to crash. So you have to precise the mysql ressource in the function.  $link = mysql_connect( '___', '___', '___' ); // Some stuff mysql_close($link); 
in the l2acm I found the mysql.class.php file with this...

Code: Select all

public function __destruct () {		@mysql_close ();	}
Can anyone tell me the which may be the appropriate way to fix that....?

@mysql_close (NULL); ???