Jump to content

vladonix

Members
  • Posts

    27
  • Joined

  • Last visited

    Never
  • Donations

    0.00 GBP 

Posts posted by vladonix

  1. Hallo all :D

    Excuse me, I'm busy in my work :(

    Gimp: I'll try it on my Fedora...

    Kray: I wrote you email with possible solution. Please, try encode all php files yo UTF-8, I forgot it :(

    Durotar: Thank You very much, I'll add your translation to new revision. Like Kray, try encode php files in your favourite editor (PSPad for example) to UTF-8 (now is CP1250 )

    XD5: update to support 3.1.3 in progresss....... :D

    v.

  2. 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.

  3. 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.

  4. 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.

  5. 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.

  6. 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.

  7. When i go to (like the tutorial vid shows) go to http://localhost/reggacc/index.php (created the map reggacc inside htdocs) then i just get a white page (not BC screen like the vid) and the address changes to: http://localhost/reggacc/world1.php?nr=0

    What to do?

    Did You set your rospora (configuration.php)?

    Index.php is automatically redirected to world1.php, when you have only one realm defined in configuration.

    v.

  8. Yeah, I tied that site, did not work, only with localhost as hostname on server1.. with server2 as hostname, it fails, even tho right's and database names are the same on both servers.. (did that to make it easy on myself)

    I really do not comprehend what's wrong.

    Hallo.

    I don't know... :(

    Try to run simple script to test connection:

    [color=#000000] [color=#0000bb]<?php
    $link [/color][color=#007700]= [/color][color=#0000bb]mysql_connect[/color][color=#007700]([/color][color=#dd0000]'server2'[/color][color=#007700], [/color][color=#dd0000]'mysql_user'[/color][color=#007700], [/color][color=#dd0000]'mysql_password'[/color][color=#007700]);
    if (![/color][color=#0000bb]$link[/color][color=#007700]) {
       die([/color][color=#dd0000]'Could not connect: ' [/color][color=#007700]. [/color][color=#0000bb]mysql_error[/color][color=#007700]());
    }
    echo [/color][color=#dd0000]'Connected successfully'[/color][color=#007700];
    [/color][color=#0000bb]mysql_close[/color][color=#007700]([/color][color=#0000bb]$link[/color][color=#007700]);
    [/color][color=#0000bb]?>
    [/color][/color]

    v.

  9. For some reason I cant get this to work..

    ...

    Hallo.

    I think, it is mysql issue.

    Script tries to connect to remote MYSQL server throught mysql_connect PHP function, but fails with error.

    Try to open 'directly' link http://server1/reggacc/world1.php . Have you got identical error again?

    Did you set proper values for characters and realm databases too? (hostc, userc, ... hostr, userr, ...)

    v.

  10. For Fedora system I made before compiliing:

    yum install openssl cpp gpp gcc gcc-c++ openssl-devel libgcrypt-devel zlib-devel make libtool subversion automake autoconf git mysql-devel mysql-server mysql mysql-libs

    Fedora 10. Compiled without errors.

    P.S. Thanks. Tutorial is very helpfull.

    Hmm, no need gpp (gnome picture printing) ;)

    Option -j2 can be used for one core processor too. For more cores use -jNUM_PROC_CORES+1

    Works fine for newest mangos. Great!

    v.

  11. Hi very nice work although I have noticed that player levels show up as 0 when I am on wotlk. Any Ideas on how to fix this? I don't know php so not sure where to look to try. Thanks for releasing it pwns. B)

    Hallo. My mistake - different data field for 2.4.3 and 3.0.3 patch. Repaired. Please, download new reggacc version and set in reggacc administration page variable with label patch to 3.0.3 (it is radio button)

    Thank you

    vladonix

    Edit reason: fix answer

×
×
  • 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