145 server files

Page 11 of 24 FirstFirst ... 34567891011121314151617181921 ... LastLast
Results 151 to 165 of 356
  1. #151
    Enthusiast ADMSakyo is offline
    MemberRank
    Jun 2012 Join Date
    Brazil, Rio:)Location
    46Posts

    Re: 145 server files

    Yea I know about the print, but I see no reason to post a simple error message xD well.. the problem is that there are a lot of table.xml, and I don't know if I have to change only in my_authd or I have to change in both (my_authd and ms_authd)...

  2. #152
    Account Upgraded | Title Enabled! sxymxd84 is offline
    MemberRank
    Aug 2004 Join Date
    ArizonaLocation
    612Posts

    Re: 145 server files

    both with these files

  3. #153
    Enthusiast ADMSakyo is offline
    MemberRank
    Jun 2012 Join Date
    Brazil, Rio:)Location
    46Posts

    Re: 145 server files

    Oh sure. I'll try.

  4. #154
    Snow Mania lvdrake is offline
    MemberRank
    Jun 2012 Join Date
    237Posts

    Re: 145 server files

    Everything in place but i keep getting the error "Please update" when login server ping is ok, also no errors in the server btw what is the Server iweb or jetty pwadmin link in the browser?

  5. #155
    Account Upgraded | Title Enabled! sxymxd84 is offline
    MemberRank
    Aug 2004 Join Date
    ArizonaLocation
    612Posts

    Re: 145 server files


    Diff between these 2? (download speed on these sites arnt good enough to dl and look for myself)
    Asking because I am compiling a guide etc. I might even work on a translation project but not to sure. Just list the diff's between wm145 link 1 and 2 compared to mc145 link 1 and 2. Thanks

  6. #156
    Proficient Member TheBow is offline
    MemberRank
    Aug 2011 Join Date
    ragezoneLocation
    159Posts

    Re: 145 server files

    Quote Originally Posted by gunse View Post
    i guess, what we need is not downgrading process but the conversion from CN base into PWI base...
    u mean translate item name?

  7. #157
    Enthusiast chavman69 is offline
    MemberRank
    Mar 2008 Join Date
    UKLocation
    31Posts

    Re: 145 server files

    wm145 is wmware Mc145SERVER.7z is pure files

  8. #158
    Account Upgraded | Title Enabled! sxymxd84 is offline
    MemberRank
    Aug 2004 Join Date
    ArizonaLocation
    612Posts

    Re: 145 server files

    Gotcha, So Mc145 is completely untouched in its original form/state ^^

  9. #159
    Enthusiast ADMSakyo is offline
    MemberRank
    Jun 2012 Join Date
    Brazil, Rio:)Location
    46Posts

    Re: 145 server files

    Quote Originally Posted by sxymxd84 View Post
    both with these files
    I changed everything in my_authd and ms_authd, what's wrong? :{
    Do I also have to change something in this line: (authd.conf)

    [AuthServer]
    SQLServerDriver=192.168.1.200:1433;account;sa;admin

  10. #160
    dev gunse is offline
    MemberRank
    Mar 2009 Join Date
    IndonesiaLocation
    476Posts

    Re: 145 server files

    Quote Originally Posted by ADMSakyo View Post
    Yea I know about the print, but I see no reason to post a simple error message xD well.. the problem is that there are a lot of table.xml, and I don't know if I have to change only in my_authd or I have to change in both (my_authd and ms_authd)...
    Do you use mysql or mssql? just pick one instead both of them :) if you can configure 1.2.6 servers then you will make this 1.4.5 easy...
    For table.xml:
    you have to point the right SQL server type: MSSQL or MYSQL
    you have to point the right Database name
    you have to use correct username and password
    you have to use the right file type of table.xm, dos compatible in windows, posix in Linux and its derivatives
    you have to have knowledge base of table.xml editing...
    you have to sure that your authd point to the right place of table.xml...
    ...etc...

    you thought that is simple issue so make it easy ;)

    Quote Originally Posted by ADMSakyo View Post
    I changed everything in my_authd and ms_authd, what's wrong? :{
    Do I also have to change something in this line: (authd.conf)

    [AuthServer]
    SQLServerDriver=192.168.1.200:1433;account;sa;admin
    this is for MSSQL database

  11. #161
    Enthusiast ADMSakyo is offline
    MemberRank
    Jun 2012 Join Date
    Brazil, Rio:)Location
    46Posts

    Re: 145 server files

    Hum... I suppose I got it ;] Take a look:

    Db name = pw
    username = root
    password = silva434
    IP: 192.168.1.122
    I'm using MYSQL.

    /my_authd/build/table.xml

    <application debug="false" >
    <driver name="com.mysql.jdbc.Driver" />
    <connection name="auth0" poolsize="3" url="jdbc:mysql://192.168.1.122:3306/pw?useUnicode=true&amp;characterEncoding=utf-8&amp;zeroDateTimeBehavior=convertToNull&amp;transformedBitIsBoolean=true" username="root" password="silva434"/>


    /my_authd/etc/table.xml

    <application debug="false" >

    <!-- SYBASE -->
    <!--
    <driver name="com.sybase.jdbc2.jdbc.SybDriver" />
    <connection name="auth0" poolsize="8" url="jdbc:sybase:Tds:dbserver:4100/passport" username="username" password="password"/>
    -->

    <!-- MYSQL -->
    <driver name="com.mysql.jdbc.Driver" />
    <connection name="auth0" poolsize="3" url="jdbc:mysql://192.168.1.122:3306/pw?useUnicode=true&amp;characterEncoding=utf8" username="root" password="silva434"/>

    <!-- MSSQL -->
    <!--
    <driver name="com.microsoft.jdbc.sqlserver.SQLServerDriver" />
    <connection name="auth0" poolsize="8" url="jdbc:microsoft:sqlserver://59.50.199.7:1433;databasename=passport" username="sa" password="hacker"/>
    -->
    And this is my authd :


    #!/bin/sh
    cd /root/pwserver/my_authd/build

    export HOME=/uusr/java/jdk1.6.0_12/
    export PATH=$HOME/bin:$PATH
    #export PATH=$PATH:$HOME/bin:/usr/java/jdk1.6.0_12/bin

    export CLASSPATH=.:/usr/java/jdk1.6.0_12/lib/dt.jar:/usr/java/jdk1.6.0_12/lib/tools.jar:/usr/java/jdk1.6.0_12/lib/mysql-connector-java-5.0.8-bin.jar

    export JAVA_HOME=/usr/java/jdk1.6.0_12/


    while true; do

    java -cp ../lib/jio.jar:../lib/application.jar:../lib/commons-collections-3.1.jar:../lib/commons-dbcp-1.2.1.jar:../lib/commons-pool-1.2.jar:../lib/commons-logging-1.0.4.jar:../lib/log4j-1.2.9.jar:.:$CLASSPATH authd table.xml
    sleep 2

    done
    I'm still getting the same error.

  12. #162
    Apprentice athame is offline
    MemberRank
    Oct 2011 Join Date
    21Posts

    Re: 145 server files

    Quote Originally Posted by sxymxd84 View Post
    Gotcha, So Mc145 is completely untouched in its original form/state ^^
    Mc145 are on only the server files u must copy them in your virtual machine and set up them wm145 is the same server files + redhat linux in a single virtual image u only mount the image and is ready to play without not so many settings to change

    and idk if u tryed guys but this sv files have some buggs idk if is from client side or sv side one is u can't use hypers he dont take them from your inventory if u make hypers with tokens sometimes he fail u can't drop items from inventory or coins i will try with the chinese version of game
    Last edited by athame; 26-06-12 at 02:08 PM.

  13. #163
    dev gunse is offline
    MemberRank
    Mar 2009 Join Date
    IndonesiaLocation
    476Posts

    Re: 145 server files

    Quote Originally Posted by ADMSakyo View Post
    Hum... I suppose I got it ;] Take a look:

    Db name = pw
    username = root
    password = silva434
    IP: 192.168.1.122
    I'm using MYSQL.

    /my_authd/build/table.xml



    /my_authd/etc/table.xml



    And this is my authd :




    I'm still getting the same error.
    please do command: netstat -na | grep 29200
    post the result

  14. #164
    Enthusiast ADMSakyo is offline
    MemberRank
    Jun 2012 Join Date
    Brazil, Rio:)Location
    46Posts

    Re: 145 server files

    /root/pwserver/my_authd/etc$ netstat -na | grep 29200
    tcp6 0 0 :::29200 :::* LISTEN
    tcp6 96 0 127.0.0.1:29200 127.0.0.1:54075 CLOSE_WAIT
    tcp6 67 0 127.0.0.1:29200 127.0.0.1:52575 CLOSE_WAIT
    tcp6 100 0 127.0.0.1:29200 127.0.0.1:53192 CLOSE_WAIT
    tcp6 33 0 127.0.0.1:29200 127.0.0.1:35490

    That's the result.
    Last edited by ADMSakyo; 26-06-12 at 03:21 PM.

  15. #165
    Enthusiast chavman69 is offline
    MemberRank
    Mar 2008 Join Date
    UKLocation
    31Posts

    Re: 145 server files

    Db name = pw
    username = root
    password = silva434
    IP: 192.168.1.122
    I'm using MYSQL.
    y not localhost ?
    auth is listening on localhost and you got ip for database ?

    i am using net dchp and not set ip and my authed works one from the build

    anyone have a link for idapro v6 other than the non savable demo ?
    Last edited by chavman69; 26-06-12 at 03:48 PM.



Advertisement