Welcome!

Join our community of MMO enthusiasts and game developers! By registering, you'll gain access to discussions on the latest developments in MMO server files and collaborate with like-minded individuals. Join us today and unlock the potential of MMO server development!

Join Today!

An Account Manager

Newbie Spellweaver
Joined
May 5, 2007
Messages
35
Reaction score
4
Hey,
I need an account manager but XPT 1.21 acc manager gives me lots of errors
and gregoo deleted his account manager for the public

So can someone give me an download link to one?

Thanks,
Rutger
 
Imri Persiado
Joined
May 17, 2008
Messages
941
Reaction score
26
Use the xpt's one, we will help you with the errors.
 
Newbie Spellweaver
Joined
May 5, 2007
Messages
35
Reaction score
4
Use the xpt's one, we will help you with the errors.

Ok this is the error:
Rutgertje - An Account Manager - RaGEZONE Forums


How to fix?
 
Skilled Illusionist
Joined
Apr 20, 2009
Messages
351
Reaction score
212
Allow the short open tag (<?) in your php.ini file.
That's arround lines 120~130

Code:
; Allow the <? tag.  Otherwise, only <?php and <script> tags are recognized.
; NOTE: Using short tags should be avoided when developing applications or
; libraries that are meant for redistribution, or deployment on PHP
; servers which are not under your control, because short tags may not
; be supported on the target server. For portable, redistributable code,
; be sure not to use short tags.
short_open_tag = Off

Replace Off with On.
 
Newbie Spellweaver
Joined
May 5, 2007
Messages
35
Reaction score
4
I use xampp to host my site so there's no PHP.ini the php is already inside it.

It should be working normally :S

EDIT1: Replacing all <? by <?php ;)

EDIT2: Worked! Thanks Gregoory

EDIT3: When I try to register or login it makes me go to
Code:
http://127.0.0.1/pt/accmngr/<?php=$_SERVER[PHP_SELF].'?'.$_SERVER[QUERY_STRING]?>
 
Last edited:
Skilled Illusionist
Joined
Apr 20, 2009
Messages
351
Reaction score
212
I use xampp to host my site so there's no PHP.ini the php is already inside it.

It should be working normally :S

EDIT1: Replacing all <? by <?php ;)

EDIT2: Worked! Thanks Gregoory

EDIT3: When I try to register or login it makes me go to
Code:
http://127.0.0.1/pt/accmngr/<?php=$_SERVER[PHP_SELF].'?'.$_SERVER[QUERY_STRING]?>
...
Damn the new generation doesn't know how to use a search engine nowadays.
Of course it won't work if you think you can do whatever you want.

No php.ini ? Weird, look what I found with a Google search : . Oh snap, there's a php.ini file...

As for you error, hmm let's see, what about a Google search for "short tags" since it was mentionned...
Ooooh, results.. .

Now I get it, I replaced all <? by <?php, but short tag syntax is <?= and not <?php=

Yeah now I fixed my problem, and I didn't even have to ask!
Wait...

:thumbdown:
 
Newbie Spellweaver
Joined
May 5, 2007
Messages
35
Reaction score
4
...
Damn the new generation doesn't know how to use a search engine nowadays.
Of course it won't work if you think you can do whatever you want.

No php.ini ? Weird, look what I found with a Google search : . Oh snap, there's a php.ini file...

As for you error, hmm let's see, what about a Google search for "short tags" since it was mentionned...
Ooooh, results.. .

Now I get it, I replaced all <? by <?php, but short tag syntax is <?= and not <?php=

Yeah now I fixed my problem, and I didn't even have to ask!
Wait...

:thumbdown:

Sorry gregoory you're totally right.

It does have a php.ini in xampp\php folder

Ok I edited short_open_tag to On gonna test now.

EDIT: Turned it off again since it acted weird now I changed the
Code:
<?php=$_SERVER[PHP_SELF].'?'.$_SERVER[QUERY_STRING]?>
to
Code:
<?php pring $_SERVER[PHP_SELF].'?'.$_SERVER[QUERY_STRING]; ?>

and it kinda worked

EDIT2: Turned Short Tags On again made a new folder with the original unedited files,
Worked perfectly..
 
Last edited:
Back
Top