Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 09/21/21 in all areas

  1. PHP 4 style constructors were deprecated in PHP 7. However, the warning messages should not prevent your theme scripts from executing. Perhaps there is another issue elsewhere. Did you check for error messages? https://stackoverflow.com/questions/1053424/how-do-i-get-php-errors-to-display?rq=1 You could modify the theme source code to resolve any outstanding issues or suppress the deprecation warning messages.
    1 point
  2. Hey, you can edit the skills in skill_db.yml. Search for - Id: 24 Name: AL_RUWACH Description: Ruwach MaxLevel: 1 Type: Magic TargetType: Self and change Type: Magic to Misc - Id: 24 Name: AL_RUWACH Description: Ruwach MaxLevel: 1 Type: Misc TargetType: Self or remove Type. That should work.
    1 point
  3. Check the "./themes/default/main/sidebar.php" file on line (45) : <th class="menuitem"><strong><?php echo htmlspecialchars(Flux::message($menuCategory)) ?></strong></th> </tr> <?php foreach ($menus as $menuItem): ?> <tr> <td class="menuitem"> <a href="<?php echo $menuItem['url'] ?>"<?php if ($menuItem['module'] == 'account' && $menuItem['action'] == 'logout') echo ' onclick="return confirm(\'Are you sure you want to logout?\')"' ?>> <span><?php echo htmlspecialchars(Flux::message($menuItem['name'])) ?></span> </a> </td> </tr The Anchor behavior appears to be hardcoded, affecting all menuItem objects the same. See the following W3schools entry: https://www.w3schools.com/tags/att_a_target.asp The (target="_blank") Attribute would need to go in here. You will need to develop logic to check for the appropriate module and action, otherwise all links will open in a new tab.
    1 point
  4. It appears that the database query handling the account registration did not return any results. Check the "./modules/account/create.php" file: // Woohoo! Register ;) $result = $server->loginServer->register($username, $password, $confirm, $email, $email2, $gender, $birthdate, $code); if ($result) { ... } else { exit('Uh oh, what happened?'); } Check the database "login" Table. Do you see the newly registered account? Make sure the FluxCP software has access to the database "login" Table, and that the associated MySQL user holds the appropriate privileges.
    1 point
  5. I am not sure if support for a player referral system is available. If no referral plug-ins exist, you should be able to code a solution without much issue. You could capture "referral codes" by passing them through a PHP script via the provided URL. Check out the PHP documentation for the $_GET array. Record the visiting IP address and referral code within the database, then use IP associations to track the users who clicked on a link.
    1 point
  6. WooZy here - I am new to the scene, and late by many years it seems. I have never deployed a Ragnarok Online private server. The rAthena software is helping me break the ice. I am interested in improving my Systems Engineering skillset and am focused on maintaining cloud environments. I will admit, deploying the rAthena software is challenging for me. It appears that I am missing generations worth of important Ragnarok Online development knowledge. If I were to contribute anything to this community, I hope that I can provide a process to simplify deployment. Thank you all for having me. I am looking forward to learning and spending time with the rAthena community.
    1 point
  7. Nice to meet you. I'm pretty sure rAthena can improve your skills in many ways.
    1 point
  8. I am not sure if Web Support is the proper sub-forum for your question. Perhaps you would find more luck submitting the question to Web Requests, or asking in the Discord #fluxcp channel. Did you have a support issue with some web software?
    1 point
  9. Please do not execute "chmod -R 777" against anything open to the public internet. That command grants all privileges to all users to all files and directories, exposing the webserver to potential exploits. Run the following command on your CentOS 8 server: yum install php-mysqlnd
    1 point
  10. I am unfortunately unable to setup a test environment to see if I can replicate the issue. However, the messages that you provided begin with the keyword "Notice". Although ignoring Notices is not advised, Notice messages are considered to be soft errors that will not prevent the PHP script from completing execution. Perhaps those Notice messages are unrelated to the Password Reset failure. Were you able to send mail via FluxCP before you submitted this question? You might need to make corrections in the FluxCP configuration.
    1 point
  11. I managed to compile an unmodified rAthena release within an Ubuntu 20.04.3 LTS (Focal Fossa) environment using gcc-9.
    1 point
  12. You changed the mode for every object in your webroot to "777". That is a security risk and you should reconsider performing that action as a solution. Your webroot directory and content permissions are wide open. Instead, change permissions only for the files and directories that require it.
    1 point
  13. Version 4.0

    2684 downloads

    This is an archive of all 'item' and 'collection' .bmp's in data.grf and rdata.grf - extracted and converted from upto-date GRF's. Images extracted, converted to .png and replaced #FF00FF with transparency, then saved as their item ID e.g: File for apple image »¡°£Æ÷¼Ç.bmp converted and renamed to 501.png. Ideal for uploading to websites/control panel shop pages. Please note: This is a .7z file. You will need 7-Zip or a capable version of (Win/un)RAR to unpack it.
    Free
    1 point
  14. ~ Graphical Resources ~ I post here some links to websites who contains sprites for Ragnarok. Those sites gets free-downloads, so check in the website specifics conditions of use. You can of course share your own links to websites that offers free-downloads and release their own work, not stolen one. Links: Green Peach : Website Headgears/Mobs/NPC w/ Recolors Icabit Packs: Exclusives, Sprite Package Collection of Sprites Icabit left on their departure from RO Community. Sasami : Website Alpha RO Client and Assets. Mirror: Google Drive Dead Links: 2020-12-18: @Haziel edit, all broken links moved to Dead Links.
    1 point
×
×
  • Create New...