Register for your free account! | Forgot your password?

You last visited: Today at 13:39

  • Please register to post and access all features, it's quick, easy and FREE!

Advertisement



Website

Discussion on Website within the Flyff Private Server forum part of the Flyff category.

Reply
 
Old   #1
 
elite*gold: 0
Join Date: Aug 2016
Posts: 99
Received Thanks: 3
Website

How can I make this Online?
I already open my 7 programs (.exe) then still Offline

I put my Ip in "allg_svr_ip"
and I dont know what to put here "allg_svr_channel"



Please help me I'am using Aurea Website Thanks
TheCab is offline  
Old 02/01/2017, 12:59   #2
 
elite*gold: 0
Join Date: Jan 2012
Posts: 55
Received Thanks: 40
You have to change the Worldserver Port in xinc_config.php
JiiGaa is offline  
Old 02/01/2017, 13:15   #3
 
elite*gold: 0
Join Date: Aug 2016
Posts: 99
Received Thanks: 3
Quote:
Originally Posted by JiiGaa View Post
You have to change the Worldserver Port in xinc_config.php
can you tell me how can I know my Worldserver port? i really forgot that one
TheCab is offline  
Old 02/01/2017, 16:14   #4
 
elite*gold: 0
Join Date: Mar 2013
Posts: 200
Received Thanks: 38
or maybe check your cacheserver.ini use the port in there

you can see the ports at MsgHdr.h (_Network foldeR)
flyffdev is offline  
Old 02/01/2017, 22:39   #5
 
elite*gold: 0
Join Date: Jun 2008
Posts: 355
Received Thanks: 5
still nothing I cant still make the Status online even though I've change the port 5400 to my current cache port :3

This is what I've Change


I dont know what is the use of "9987 , 10011"


there is no World Port in im config :3 please help me thanks
khemomo is offline  
Old 02/01/2017, 23:01   #6
 
elite*gold: 0
Join Date: May 2014
Posts: 4,404
Received Thanks: 933
Quote:
Originally Posted by khemomo View Post
still nothing I cant still make the Status online even though I've change the port 5400 to my current cache port :3

This is what I've Change


I dont know what is the use of "9987 , 10011"


there is no World Port in im config :3 please help me thanks
9987 = default Port Udp
10011 = Default serverquery port TCP

You need to find out your server channel port.
Search in your taskmanager the pid ID and then use your cmd consol to find out your port.
Michi is offline  
Old 02/02/2017, 09:19   #7
 
elite*gold: 0
Join Date: Mar 2013
Posts: 200
Received Thanks: 38
go to xinc_functions.php

and check the funcion of


Code:
	function checkServerState($port, $ip = '127.0.0.1') {
		if(@fsockopen($ip, $port, $errno, $errstr, 0.15) >= 0.15) {return '<span class="green">Online</span>';} 
		else {return '<span class="red">Offline</span>';}

Change the IP and DONE ^_^
flyffdev is offline  
Old 02/02/2017, 11:26   #8
 
elite*gold: 0
Join Date: May 2014
Posts: 4,404
Received Thanks: 933
Quote:
Originally Posted by flyffdev View Post
go to xinc_functions.php

and check the funcion of


Code:
	function checkServerState($port, $ip = '127.0.0.1') {
		if(@fsockopen($ip, $port, $errno, $errstr, 0.15) >= 0.15) {return '<span class="green">Online</span>';} 
		else {return '<span class="red">Offline</span>';}

Change the IP and DONE ^_^

Please tell me why he need to change the "local ip"?
It would not work because he need his port.
Michi is offline  
Thanks
1 User
Old 02/02/2017, 13:24   #9
 
elite*gold: 0
Join Date: Mar 2013
Posts: 200
Received Thanks: 38
its because he's using a Web Hosting (PLESK)

and I already tried it and its work
flyffdev is offline  
Old 02/02/2017, 14:11   #10
 
elite*gold: 0
Join Date: Jun 2008
Posts: 355
Received Thanks: 5
Is this what you mean @ ? I Saw this using CMD then tasklist

PID


I've tried to make my

Cache and world port
$_CONFIG['allg_ts3_port'] = array(4260, 4372);

still not working.
khemomo is offline  
Old 02/02/2017, 14:20   #11
 
elite*gold: 0
Join Date: Jan 2012
Posts: 55
Received Thanks: 40
Change your Port in xinc_config.php to 28000 maybe it should work then.

PHP Code:
    $_CONFIG['allg_svr_channel'] = array(
        
=> array(
            
'Channel 1-1',
            
28000
        
),
        
=> array(
            
'Channel 1-2',
            
28001
        
), 

That how it looks in my xinc_config.php
JiiGaa is offline  
Old 02/02/2017, 14:30   #12
 
elite*gold: 0
Join Date: Jun 2008
Posts: 355
Received Thanks: 5
Quote:
Originally Posted by JiiGaa View Post
Change your Port in xinc_config.php to 28000 maybe it should work then.

PHP Code:
    $_CONFIG['allg_svr_channel'] = array(
        
=> array(
            
'Channel 1-1',
            
28000
        
),
        
=> array(
            
'Channel 1-2',
            
28001
        
), 

That how it looks in my xinc_config.php
so here is it.

I've tried to edit mine to this and also tried to make like yours but still not working.


This is what my Cacheserver.ini

MY accountserver.ini

My loginserver.ini

khemomo is offline  
Old 02/02/2017, 17:20   #13
 
elite*gold: 0
Join Date: Mar 2013
Posts: 200
Received Thanks: 38
Follow this and its should be Fixed:



Code:
	$_CONFIG['allg_svr_channel'] = array(
		1 => array(
			'Channel 1-1',
			18256
		),
		2 => array(
			'Channel 1-2',
            15001
		),
	);

xinc_function.inc:


Code:
	function checkServerState($port, $ip = '127.0.0.1') {
		if(@fsockopen($ip, $port, $errno, $errstr, 0.15) >= 0.15) {return '<span class="green">Online</span>';} 
		else {return '<span class="red">Offline</span>';}
	}

Change 127.0.0.1 to your ip
flyffdev is offline  
Old 02/03/2017, 02:32   #14
 
elite*gold: 0
Join Date: Jun 2008
Posts: 355
Received Thanks: 5
Quote:
Originally Posted by flyffdev View Post
Follow this and its should be Fixed:



Code:
	$_CONFIG['allg_svr_channel'] = array(
		1 => array(
			'Channel 1-1',
			18256
		),
		2 => array(
			'Channel 1-2',
            15001
		),
	);

xinc_function.inc:


Code:
	function checkServerState($port, $ip = '127.0.0.1') {
		if(@fsockopen($ip, $port, $errno, $errstr, 0.15) >= 0.15) {return '<span class="green">Online</span>';} 
		else {return '<span class="red">Offline</span>';}
	}

Change 127.0.0.1 to your ip

Still not working bro And i dont have a code like this one on my config

Code:
	function checkServerState($port, $ip = '127.0.0.1') {
		if(@fsockopen($ip, $port, $errno, $errstr, 0.15) >= 0.15) {return '<span class="green">Online</span>';} 
		else {return '<span class="red">Offline</span>';}
	}
I'am now losing my hope
khemomo is offline  
Old 02/03/2017, 09:59   #15
 
elite*gold: 0
Join Date: Mar 2013
Posts: 200
Received Thanks: 38
Maybe you know me contact me on facebook lets teamviewer
flyffdev is offline  
Reply


Similar Threads Similar Threads
[Selling] Website coding & editing! Cann create your website or edit your website cheep!
01/17/2016 - Coders Trading - 20 Replies
Hello i'm a web developer under education. Forum createde by me!: http://luckycs.com/ My skill is the following: asp.net = 5% mvc = 35% Umbraco (CMS) = 60% javascript/jquery = 40%



All times are GMT +2. The time now is 13:39.


Powered by vBulletin®
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
SEO by vBSEO ©2011, Crawlability, Inc.
This site is protected by reCAPTCHA and the Google Privacy Policy and Terms of Service apply.

Support | Contact Us | FAQ | Advertising | Privacy Policy | Terms of Service | Abuse
Copyright ©2024 elitepvpers All Rights Reserved.