-
Posts
3,067 -
Joined
-
Last visited
-
Days Won
182
Community Answers
-
Akkarin's post in ROChargenPHP - Mount Problem was marked as the answer
ROCharGen hasn't been updated for years. The sprites don't show because they're not in the default CharGen databases.
If you read the instructions it actually tells you how to update them.
-
Akkarin's post in FluxCP Error Register account was marked as the answer
Stop giving duff info to other users. This isn't the first time. If you don't have an answer to the problem, or have no constructive instructions on how to fix the problem, or to assist with debugging, don't post an answer. Perhaps one day, someone will delete your account by mistake.
Back on-topic.
The error is produced when none of the conditions for registering match the criteria.
https://github.com/rathena/FluxCP/blob/5280fcdd11811e0a311cffafedc14f7bc01d6e88/modules/account/create.php#L152
If your error was based on the user's password containing the username, you would be presented with that error, not the one you have provided.
case Flux_RegisterError::PASSWORD_HAS_USERNAME: $errorMessage = Flux::message ('PasswordHasUsername'); break; The first place to look is in your error logs. Not all errors are displayed on the pages themselves, so you need to check in /data/logs/errors/exceptions/ and /data/logs/mysql/errors/.
-
Akkarin's post in Old Bug - FluxCP was marked as the answer
It's not a bug. Using the "Reset" function for your character's appearance is designed to removed all view IDs from your character so you can login and un-equip them from within the game. It's not meant to unequip anything.
See resetlook function.
-
Akkarin's post in Fluxcp Login and Register Error was marked as the answer
Invalid Login Credentials error is caused by:
Not entering your username/password correctly Using MD5 passwords in rA's /conf/login_athena.conf but not in FluxCP's /config/servers.php Using MD5 passwords in FluxCP's /config/servers.php but not in rA's /conf/login_athena.conf -
Akkarin's post in Help Me Register error was marked as the answer
You're using an old FluxCP theme that doesn't support verifying the entered email address. Add the necessary code from the default theme or ask the author of that particular theme to update their code and design themes correctly using the Inherit system.
-
Akkarin's post in FluxCP Privileges/tables was marked as the answer
FluxCP accesses nearly all tables.
For basic usage, you need to provide
Data: SELECT, INSERT, UPDATE, DELETE
Structure: CREATE, ALTER, INDEX, DROP(not a necessity), CREATE TEMPORARY TABLES, SHOW VIEW, CREATE VIEW
-
Akkarin's post in FLUX CP PROBLEM was marked as the answer
I believe i resolved this issue privately. The webhost did not have outbound ports available to connect to remote MySQL server.
-
Akkarin's post in server mirroring was marked as the answer
You'd need cloud hosting, but even thst wont fully provide what youre asking for. You can't 'mirror' a server to reduce network ping.
-
Akkarin's post in Unpacked 2016 clients? was marked as the answer
None of them - 20151104 is the latest exe that rAthena supports.
https://rathena.org/board/topic/86650-officially-supported-client-versions/
-
Akkarin's post in Script show errors upon loaded was marked as the answer
setarray .maptrigger$, // only these maps will trigger this script // "all", // uncomment this to allow load all maps "new_1-1", If you try to change scripts, try to atleast keep the same formatting for the functions of the script. Change the comma to a semi-colon after "new_1-1"
-
Akkarin's post in How To Install Phpmyadmin on Centos VPS [ Full Guide Please ] was marked as the answer
There's no sense in installing an additional package just to install a package when you can install the package on it's own.. phpmyadmin has it's own installer.
-
Akkarin's post in how to change size of equipment UI? was marked as the answer
I can't imagine anyone will trawl through an unpacked exe just to find the dimensions for the equipment UI. Simply hexing the client won't be enough, you 'd need to thunk it.
-
Akkarin's post in Warning: date(): It is not safe to rely on the system's was marked as the answer
It should be set by default o.O unless you've changed it?
https://github.com/rathena/FluxCP/blob/master/config/application.php#L25
'DateDefaultTimezone' => 'UTC', -
Akkarin's post in 20131223 was marked as the answer
I did a search on the forums using the search function. In future, please make use of it.
Link in a signature led me to here: http://www.mediafire.com/folder/ivfidqkhb6qdd/Ragnarok_2013_client#euir9g9639zwt
Also posted in wrong section. Topic moved.
-
Akkarin's post in Fluxcp convert to eathena was marked as the answer
The original FluxCP is designed for eAthena. https://code.google.com/archive/p/fluxcp/downloads
There's quite a few differences between the two versions now, and changing everything in the rA version to be compatible will take a while @[email protected] You'd be better off using the original and throwing modules into it that you want.
-
Akkarin's post in Request Script @go restrict on base level was marked as the answer
A quick way to do this without changing any of the source would be to overwrite the @go command using bindatcmd:
- script atcmd_go -1,{ OnInit: bindatcmd "go",strnpcinfo(3)+"::OnAtcommand"; end; OnAtcommand: if(!getarraysize([email protected]_parameters$)) { message strcharinfo(0), "Invalid syntax."; end; } [email protected] = [email protected]_parameters$[0]; if([email protected] == 0){ if(BaseLevel < 100){ dispbottom "You need to be atleast Base Level 100 to go there!"; } else { atcommand "@go 0"; } } else { atcommand "@go "+ [email protected]; } end; } Tested and works on my localhost, you'd need to edit to add more if/else's if you want to restrict other locations.
-
Akkarin's post in fluxcp error was marked as the answer
Go to /home/mwsuranol/public_html/addons/vote_for_credits/modules/vote/index.php on line 7 and edit the path to the lib file.
-
Akkarin's post in Flux CP not displaying text was marked as the answer
It's an issue with your theme not outputting the values from the language file correctly, or you have modified the following config to something you don't have.
'DefaultLanguage' => 'en_us', -
Akkarin's post in Give myself donation credits (Admin) was marked as the answer
I'm pretty sure that the account edit page has an input box for credits..
-
Akkarin's post in How add Images on database index viewer was marked as the answer
Then edit the html in /themes/<your_theme>/monster/index.php. Something like this should work:
<td style="width:150px; text-align: center; vertical-alignment: middle"> <img src="<?php echo $this->monsterImage($monster->monster_id) ?>" /> </td> -
Akkarin's post in help? was marked as the answer
There's currently no software (that i know of) that can make you a FluxCP theme. You can find various themes around these forums and in the download section, or you can make your own using photoshop for the design and splice, then start to build the html behind it and finally integrate it within FluxCP's theme files.
-
Akkarin's post in Issues with Purchase page - Flux CP was marked as the answer
Sounds like a permission issue. Ensure your SQL user has the correct permissions from the appropriate host.
-
Akkarin's post in How to Add image for Vending Information FluxCp? was marked as the answer
The code should probably match the item/index.php theme file so the page will only try to show the image if the file is actually there:
<?php if ($icon=$this->iconImage($item->item_id)): ?> <td width="24"><img src="<?php echo htmlspecialchars($icon) ?>?nocache=<?php echo rand() ?>" /></td> <td><?php echo htmlspecialchars($item->name) ?></td> <?php else: ?> <td colspan="2"><?php echo htmlspecialchars($item->name) ?></td> <?php endif ?> The images are served from data/items/icons/
-
Akkarin's post in Help Add RSS to my Flux CP was marked as the answer
Stop stop stop. Smf provides the code you need without needing any 3rd Party code. Check out your SSI.php file in your forum root.
Stop trying to reinvent the well guys.