Jump to content

ReggAcc - register account, show map, change layout etc.


Recommended Posts

Screen of the white page: http://img266.imageshack.us/img266/4131/whitepagetl3.png

Screen of the configurations: http://img21.imageshack.us/img21/9916/configst2.png

Screen of my map with the files: http://img124.imageshack.us/img124/3661/reggaccmapgb9.png

If you don't know solution then i think it's because i'm 3.0.8a and this supports 3.0.3 only?

I though it supported 3.0.x but i think it's 2.4.3 or 3.0.3 only.

However it should show me a page through.

Link to comment
Share on other sites

  • Replies 92
  • Created
  • Last Reply

Top Posters In This Topic

Screen of the white page: http://img266.imageshack.us/img266/4131/whitepagetl3.png

Screen of the configurations: http://img21.imageshack.us/img21/9916/configst2.png

Screen of my map with the files: http://img124.imageshack.us/img124/3661/reggaccmapgb9.png

If you don't know solution then i think it's because i'm 3.0.8a and this supports 3.0.3 only?

I though it supported 3.0.x but i think it's 2.4.3 or 3.0.3 only.

However it should show me a page through.

Hallo.

Thank You for nice screenshots.

I'm using newest database (from mangos's sql scripts) on my develop computer.

So, I don't know :(

Please, try to open page in other web browser or

try to set 2 realms (set only Num. of realms), so ChooseRealm page will display (?) (it is index page) or

try to write some new text on first line in file world1.php (displays?) or

try to delete browser's cache or ..... I don't know

:(

v.

Link to comment
Share on other sites

Using internet explore and mozilla firefox both don't work.

Writing some lines in world1.php or set realms to 2 also (how you guess? :D) don't work.

Maybe it's because i'm not using newest versions of apache and php?

I"m using apache 2.2.2 and PHP 5.2.8 because i only found a guide for this versions.

Else i also don't know, i also got this if i use the armory, beatiful white pages.

Thanks for your help btw.

Link to comment
Share on other sites

Hiho,

I think my topic was deleted, so I write it into this thread (because it's the regacc thread) :)

My problem is the Online Player List.

My Server is allways "offline", but the server runs.

I host with hamachi and use MaNGOS.

I don't have to forward any ports, because Hamachi does all this ;)

How can I get my Online Player List working?

Would be nice, if you can help me :)

Regards,

Mythos

PS: When would there be a WotLK Online Player Map, because there is only Azeroth with the Outland (TBC) and no Northrend :(

Link to comment
Share on other sites

Hiho,

My problem is the Online Player List.

My Server is allways "offline", but the server runs.

I host with hamachi and use MaNGOS.

How can I get my Online Player List working?

Regards,

Mythos

PS: When would there be a WotLK Online Player Map, because there is only Azeroth with the Outland (TBC) and no Northrend :(

Hallo.

I have not experiences with hamacchi :(

Test network connection from your web site to game server (telnet ...)

and then set in configuration proper values serverHost and ServerPort.

I'm working on new map ;)

v.

Link to comment
Share on other sites

Vladonix I want to thank you for taking this (formerly Basic code by mirage666 and PoWeRLoGY) project to a new dimension for WOTLK. Vladonix is great with helping you out if you have problems. He helped me with the php 4.x issues ( I am using AppServ v 2.4.7). I wasnt able to see this website with this version of appserv so he found the problem and fixed it. He tells me that he will fix this also with the new release. Untill then I want to share this fix with people also having issues with php 4.x (i havent tested it yet...). Maybe someone can give feedback on it?

Hallo.
So, I found problem.
PHP 4.X do not support function file_put_contents().
Please, write to file lang.php (in my newest version) this code (before ?> characters):

function file_put_contents($name = "", $data = "")
{
 $file = @fopen($name, "w");

 if (!$file) {
   return false;
 }
 else {
   fwrite($file, $data);
   fclose($file);

   return true;
 }
}

I'll add it to new version.

v.

Link to comment
Share on other sites

Hallo.
So, I found problem.
PHP 4.X do not support function file_put_contents().
Please, write to file lang.php (in my newest version) this code (before ?> characters):

function file_put_contents($name = "", $data = "")
{
 $file = @fopen($name, "w");

 if (!$file) {
   return false;
 }
 else {
   fwrite($file, $data);
   fclose($file);

   return true;
 }
}

I'll add it to new version.

v.

Hi Vladonix, I tried to find this

Please, write to file lang.php (in my newest version) this code (before ?> characters):
in lang.php i can not find it. I have downloaded version reggacc_2.0.2

when are you releasing the new version with this fix?

Link to comment
Share on other sites

Hi Vladonix, I tried to find this in lang.php i can not find it. I have downloaded version reggacc_2.0.2

when are you releasing the new version with this fix?

Hallo.

I thought last two characters in file (?>).

Old code from lang.php :

}

 return $ret_arr;
}

?>

New code:

}

 return $ret_arr;
}

// ADD THIS CODE  - php 4 compatibility
if (!function_exists('file_put_contents')) {
 function file_put_contents($name = "", $data = "") {
   $fl = @fopen($name, "w");
   if (!$fl) {
     return false;
   } else {
    @fwrite($fl, $data);
    fclose($fl);

    return true;
   }
 }
}

?>

I'm working on new map, so new code will come with new map.... :cool:

v.

Link to comment
Share on other sites

  • 2 weeks later...
great work

for now:

location in online players list dont work if you are in northrend.

p.s

how to set the default option expansion "WOTLK" to first??

Ops, I forgot to add new names to zonelist. I'll add it.

To set default option WOTLK, change code:

<option value="0" selected>Classic WoW</option>    
     <option value="1">The Burning Crusade</option>';

 if (${$extenG} > 1)  // WOTLK
   $cont .= '<option value="2">Wrath of the Lich King</option>';

to

<option value="0">Classic WoW</option>    
     <option value="1">The Burning Crusade</option>';

 if (${$extenG} > 1)  // WOTLK
   $cont .= '<option value="2" selected>Wrath of the Lich King</option>';

in file world1.php

v.

Link to comment
Share on other sites

ok. i found one thing. on IE7 everthing is fine. but then when im on google chrome or firefox, the fonts at the online list and online players is enlarged. no idea why. im using 2 realms.

Hallo.

I develop on newest FF and everything works fine. What about my demopage on FF? (I see no errors...)

Try again copy *.css files and refresh page (F5).

v.

Link to comment
Share on other sites

Vladonix, you know what is important, the restart pasword, "forgot password" or something like that.

If player forgot password, he must request admin to set new password - admin send new password on players email....

I don't want 'implement' functions to send, retreive forgotten passworsd, sent mail to all players, ...... , because it is hard to manage for admin ...

And reggacc is still fork of spora (SIMPLE page of .....)

v.

Link to comment
Share on other sites

  • 2 weeks later...
Guest
This topic is now closed to further replies.
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. Privacy Policy Terms of Use