kangfredy Posted March 9, 2013 Posted March 9, 2013 guys ihave more problem with flux cp..from this picture my server is runing but in here still offline? and why my vote point addons not work.. and how to fix this..
Najara Posted March 9, 2013 Posted March 9, 2013 For the server status: Could it be that your VPS and domain are hosted into seperated hosts? If yes, contact your webhosting provider and ask them to open port 6900, 6121 and 5121 for you. That should solve the problem. Voting problem: V4P is not an default Flux addon, it requires you to install it before you can access the page. If you haven't installed it, do so by downloading Jaypee's release and extract it in your cp/addons. 1
kangfredy Posted March 9, 2013 Author Posted March 9, 2013 no error in status guys.. FluxRO?check your server.php no error in server.php??(config file?) For the server status: Could it be that your VPS and domain are hosted into seperated hosts? If yes, contact your webhosting provider and ask them to open port 6900, 6121 and 5121 for you. That should solve the problem. Voting problem: V4P is not an default Flux addon, it requires you to install it before you can access the page. If you haven't installed it, do so by downloading Jaypee's release and extract it in your cp/addons. no.it's same..from domain and vps..
Najara Posted March 9, 2013 Posted March 9, 2013 Ok, thanks for clearing that up. Could you show us your config/servers.php?
EriN_KillerSoul Posted March 9, 2013 Posted March 9, 2013 Ok, thanks for clearing that up. Could you show us your config/servers.php? Thats what i mean because I see that pic shows LibraRO.How come it shows FluxRO on your server status?
kangfredy Posted March 9, 2013 Author Posted March 9, 2013 this is my server.php... o_Oa..any error?? <?php return array( // Example server configuration. You may have more arrays like this one to // specify multiple server groups (however they should share the same login // server whilst they are allowed to have multiple char/map pairs). array( 'ServerName' => 'LibraRO', // Global database configuration (excludes logs database configuration). 'DbConfig' => array( //'Socket' => '/tmp/mysql.sock', //'Port' => 3306, //'Encoding' => 'utf8', // Connection encoding -- use whatever here your MySQL tables collation is. 'Convert' => 'utf8', // -- 'Convert' option only works when 'Encoding' option is specified and iconv (http://php.net/iconv) is available. // -- It specifies the encoding to convert your MySQL data to on the website (most likely needs to be utf8) 'Hostname' => 'localhost', 'Username' => 'myusername', 'Password' => 'mypassword', 'Database' => 'mydatabase', 'Persistent' => true, 'Timezone' => null // Example: '+0:00' is UTC. // The possible values of 'Timezone' is as documented from the MySQL website: // "The value can be given as a string indicating an offset from UTC, such as '+10:00' or '-6:00'." // "The value can be given as a named time zone, such as 'Europe/Helsinki', 'US/Eastern', or 'MET'." (see below continuation!) // **"Named time zones can be used only if the time zone information tables in the mysql database have been created and populated." ), // This is kept separate because many people choose to have their logs // database accessible under different credentials, and often on a // different server entirely to ensure the reliability of the log data. 'LogsDbConfig' => array( //'Socket' => '/tmp/mysql.sock', //'Port' => 3306, //'Encoding' => null, // Connection encoding -- use whatever here your MySQL tables collation is. 'Convert' => 'utf8', // -- 'Convert' option only works when 'Encoding' option is specified and iconv (http://php.net/iconv) is available. // -- It specifies the encoding to convert your MySQL data to on the website (most likely needs to be utf8) 'Hostname' => 'localhost', 'Username' => 'myusername', 'Password' => 'mypassword', 'Database' => 'mydatabase', 'Persistent' => true, 'Timezone' => null // Possible values is as described in the comment in DbConfig. ), // Login server configuration. 'LoginServer' => array( 'Address' => 'ro.revogamers.us', 'Port' => 6900, 'UseMD5' => true, 'NoCase' => true, // rA account case-sensitivity; Default: Case-INsensitive (true). 'GroupID' => 0, // Default account group ID during registration. //'Database' => 'ragnarok' ), 'CharMapServers' => array( array( 'ServerName' => 'LibraRO', 'Renewal' => true, 'MaxCharSlots' => 9, 'DateTimezone' => null, // Specifies game server's timezone for this char/map pair. (See: http://php.net/timezones) //'ResetDenyMaps' => 'sec_pri', // Defaults to 'sec_pri'. This value can be an array of map names. //'Database' => 'ragnarok', // Defaults to DbConfig.Database 'ExpRates' => array( 'Base' => 100, // Rate at which (base) exp is given 'Job' => 100, // Rate at which job exp is given 'Mvp' => 100 // MVP bonus exp rate ), 'DropRates' => array( // The rate the common items (in the ETC tab, besides card) are dropped 'Common' => 100, 'CommonBoss' => 100, // The rate healing items (that restore HP or SP) are dropped 'Heal' => 100, 'HealBoss' => 100, // The rate usable items (in the item tab other then healing items) are dropped 'Useable' => 100, 'UseableBoss' => 100, // The rate at which equipment is dropped 'Equip' => 100, 'EquipBoss' => 100, // The rate at which cards are dropped 'Card' => 100, 'CardBoss' => 100, // The rate adjustment for the MVP items that the MVP gets directly in their inventory 'MvpItem' => 100 ), 'CharServer' => array( 'Address' => 'ro.revogamers.us', 'Port' => 6121 ), 'MapServer' => array( 'Address' => 'ro.revogamers.us', 'Port' => 5121 ), // -- WoE days and times -- // First parameter: Starding day 0=Sunday / 1=Monday / 2=Tuesday / 3=Wednesday / 4=Thursday / 5=Friday / 6=Saturday // Second parameter: Starting hour in 24-hr format. // Third paramter: Ending day (possible value is same as starting day). // Fourth (final) parameter: Ending hour in 24-hr format. // ** (Note, invalid times are ignored silently.) 'WoeDayTimes' => array( //array(0, '12:00', 0, '14:00'), // Example: Starts Sunday 12:00 PM and ends Sunday 2:00 PM //array(3, '14:00', 3, '15:00') // Example: Starts Wednesday 2:00 PM and ends Wednesday 3:00 PM ), // Modules and/or actions to disallow access to during WoE. 'WoeDisallow' => array( array('module' => 'character', 'action' => 'online'), // Disallow access to "Who's Online" page during WoE. array('module' => 'character', 'action' => 'mapstats') // Disallow access to "Map Statistics" page during WoE. ) ) ) ) ); ?>
Najara Posted March 9, 2013 Posted March 9, 2013 'Hostname' => 'localhost', 'Username' => 'myusername', 'Password' => 'mypassword', 'Database' => 'mydatabase', ^ Configure those parts. Though, that doesn't explain the "FluxRO", perhaps you didn't change the server name in applications.php. Good luck either way.
kangfredy Posted March 9, 2013 Author Posted March 9, 2013 im configure this..but i will not to publish ...hostname local host beacause in my phpmyadmin no IP address in main..but,just local host.
Akbare Posted March 10, 2013 Posted March 10, 2013 reinstall u'r VPS, and use fluxcp default to test status
kangfredy Posted March 10, 2013 Author Posted March 10, 2013 reinstall u'r VPS, and use fluxcp default to test status omg..i was try...to reinstall flux and use default..-_-a and reinstall sql..for reinstal VPS.-__-a ..it can make me greget
Akbare Posted March 10, 2013 Posted March 10, 2013 reinstall u'r VPS, and use fluxcp default to test status omg..i was try...to reinstall flux and use default..-_-a and reinstall sql..for reinstal VPS.-__-a ..it can make me greget don't wory just 20 minutes to reinstall
kangfredy Posted March 10, 2013 Author Posted March 10, 2013 and how to fix news..download button..??? i have different structure from this..i have 2 template's..someone can explain to me? mintaulasan.rar
chatterboy Posted July 2, 2013 Posted July 2, 2013 Same on my server How did you fix this? is it done?
TiMz Posted July 11, 2013 Posted July 11, 2013 suddenly after 2 days this theme started to error here and there. Especially with the server status part. Strange.
pr3p Posted July 17, 2013 Posted July 17, 2013 guys ihave more problem with flux cp..from this picture error flux.JPG my server is runing but in here still offline? and why my vote point addons not work.. votepoint not found.JPG and how to fix this.. news not found.JPG You don't need to reinstall everything just clear you cache on flux in order to show you server status if you configurd it correctly you can check 'servers.php' in the config folder to see if you've correctly put the server IP and ports. 1. Enabled debug mode of application.php and make sure you set to true on error.php config/application.php and config/error.php $showExceptions = false; // Whether or not to show exceptions (only applies to error.php) for Server Status since its already online 2. go to flux directory data/tmp/ and delete serverstatus cache php, refresh your site and should be working now. 3. for the flux addons you should take a look on your themes name every addon has theme names also, check your vote for points themes name for me it shout me like this addons/voteforpoints/themes/default and if your using custom theme thene addons/voteforpoints/themes/yourtheme 1
SinjiPrasetio Posted July 25, 2013 Posted July 25, 2013 It might be help, i have same problem at status bar and i just solve it, open filezilla and right click on your web folder and choose attributes, check all the option and check "apply to all subfolder and files". It works for me, it's worth to try. ^^
adam62 Posted September 17, 2013 Posted September 17, 2013 (edited) Turn off selinux go to etc/selinux/config # This file controls the state of SELinux on the system. # SELINUX= can take one of these three values: # enforcing - SELinux security policy is enforced. # permissive - SELinux prints warnings instead of enforcing. # disabled - No SELinux policy is loaded. SELINUX=disabled <------- Must be disabled # SELINUXTYPE= can take one of these two values: # targeted - Targeted processes are protected, # mls - Multi Level Security protection. SELINUXTYPE=targeted and reboot your vps after that delete file ServerStatus.cache in folder data/tmp finish. click green button if helpful Edited September 17, 2013 by adam62
Question
kangfredy
guys ihave more problem with flux cp..from this picture
my server is runing but in here still offline?
and why my vote point addons not work..
and how to fix this..
17 answers to this question
Recommended Posts