Thread: Connection Problems Help!!

Results 1 to 6 of 6
  1. #1 Connection Problems Help!! 
    Registered Member
    Join Date
    Aug 2014
    Posts
    138
    Thanks given
    5
    Thanks received
    1
    Rep Power
    14
    I am Arios Source 0.3
    I am having a problem with connecting the client to the server.
    The Source runs through another Server Files Which runs Via, SQL to save player files into the "database" i assume. and i want to know how to get rid of it?
    or even fix it so i can just get the client to just connect to the server?

    Some of the Code that i think is being use but not completed


    Sql Handler in the ServerManagement Folder that holds all the players.
    Code:
    public static void init() {
    		try {
    			Class.forName("com.mysql.jdbc.Driver");
    		} catch (ClassNotFoundException e) {
    			e.printStackTrace();
    		}
    		initialized = true;
    		WorldListSQLHandler.clearWorldList();
    	}
    	
    	/**
    	 * Gets a connection from the pool.
    	 * @return The connection.
    	 */
    	public static Connection getConnection() {
    		
    		try {
    			return DriverManager.getConnection("jdbc:mysql://" + DATABASE_URL,  USERNAME, PASSWORD);
    		} catch (SQLException e) {
    			System.out.println("Error: Mysql error message=" + e.getMessage() + ".");
    		}
    		return null;
    	}
    
    	/**
    	 * Releases the connection so it's available for usage.
    	 * @param connection The connection.
    	 */
    	public static void close(Connection connection) {
    		try {
    			connection.close();
    		} catch (SQLException e) {
    			e.printStackTrace();
    		}
    	}

    and what i get in the source is just its not connecting anything... if im not explaining clearly please let me know.

    -Thanks Best reguards
    -Tyler
    Reply With Quote  
     

  2. #2  

    Join Date
    Dec 2014
    Posts
    9
    Thanks given
    0
    Thanks received
    2
    Rep Power
    0
    The player files are saved locally even if you are using sql. You can disable sql in server.properties file.
    Reply With Quote  
     

  3. #3  
    Registered Member
    Join Date
    Aug 2014
    Posts
    138
    Thanks given
    5
    Thanks received
    1
    Rep Power
    14
    Quote Originally Posted by Liat View Post
    The player files are saved locally even if you are using sql. You can disable sql in server.properties file.
    Okay even if, the client does not connect to the server.
    Reply With Quote  
     

  4. #4  

    Join Date
    Dec 2014
    Posts
    9
    Thanks given
    0
    Thanks received
    2
    Rep Power
    0
    Is there an error message? Which version of the client and server are you running?
    Reply With Quote  
     

  5. #5  
    Registered Member
    Join Date
    Aug 2014
    Posts
    138
    Thanks given
    5
    Thanks received
    1
    Rep Power
    14
    Quote Originally Posted by Liat View Post
    Is there an error message? Which version of the client and server are you running?
    The full rease the 0,3 of Arios the only error message i get is..
    Unhandled handshake opcode: 88.
    But i do not know what that means..
    i mean i understand theres an error of it not letting the client connect to the source it notices it, but wont let it. all the ports are right client builds, ip's all that i know is correct.
    Reply With Quote  
     

  6. #6  

    Join Date
    Dec 2014
    Posts
    9
    Thanks given
    0
    Thanks received
    2
    Rep Power
    0
    There is something wrong with your client and you should try to re download it if you have edited it. The client should send either opcode 14 or 15.
    Reply With Quote  
     


Thread Information
Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)


User Tag List

Similar Threads

  1. Replies: 4
    Last Post: 01-18-2012, 12:09 AM
  2. [P.I] error HELP! Connection problem
    By Owner God in forum Help
    Replies: 2
    Last Post: 01-17-2012, 08:18 AM
  3. [PI]SoulSplit Connection Problems HELP[PI]
    By pistolpete332 in forum Help
    Replies: 6
    Last Post: 08-15-2010, 06:42 AM
  4. Help, Connection Problem
    By IamLukifer in forum Help
    Replies: 2
    Last Post: 01-24-2010, 10:55 PM
  5. Help, Connection Problem [Will Rep++]
    By Icepkz in forum Help
    Replies: 5
    Last Post: 05-31-2009, 09:17 AM
Posting Permissions
  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •