Jump to content

Akkarin

Forum Manager
  • Posts

    3144
  • Joined

  • Last visited

  • Days Won

    212

Everything posted by Akkarin

  1. item_db.txt is the item database, without which your server would not function. Use the item_db from rAthena to reduce issues.
  2. Just update your version of rAthena by using 'git pull' on your linux server and you'll get all of the updates. Copying code from a Pull Request dated middle of last year is a foolish idea since it's already inside the main repo. Don't expect old code to work with current code.
  3. <?php if ($session->isLoggedIn()): ?> <a href="<?php echo $this->url('account', 'login') ?>">Register / Login</a>&nbsp;:&nbsp; <?php else: ?> <a href="<?php echo $this->url('items', 'index') ?>">Database</a>&nbsp;:&nbsp; <?php endif;?> <a href="<?php echo $this->url('downloads', 'index') ?>">Downloads</a>&nbsp;:&nbsp; <a href="<?php echo $this->url('vote4points', 'link') ?>">Vote and Stuffs</a>
  4. If it helps, have a look at my Cervantes installer. Step 8 is where the desktop icons are picked up from my server, created on the desktop and chmod'ed so users can double-click them. https://vhost.rocks/cerv
  5. Rejected connections is your MySQL server not allowing you to connect from a remote location.
  6. SMTP is recommended. As Daegaladh mentioned this is generally a misconfiguration by your host, more often than not though it's due to a missing SPF DNS record so your users' mailboxes are rejecting the mail as it can't be recognised as coming from an authenticated source.
  7. Oh! That's quite easy. I'll give it a go this afternoon.
  8. What exactly is a "ranking card"? Or do you mean to rank players by the cards they have? How exactly would you rank this? There is so much information missing from this topic.
  9. I'm pretty sure i told you when you were harassing me via discord. As i've said, i personally test paid files as moderators can't. I've told you paid files get left in a queue until i can test them. Your script isn't straight-forward so it's not a case of just reading but actually testing thoroughly. Smaller paid scripts get approved if there's only been a small change to them (i run re-uploads through winmerge to check for changed content so i don't need to re-test everything) and the moderators take care of any other files pending approval. So, from the above chatlog, you -did- get an answer last week. I'm not here to cater to everyone's demands 24/7. Wait your turn and stop harassing my staff too.
  10. It's mostly to do with how Gravity's files are read as their file-formats are intellectual property. It also contains tools to compile/decompile game data, which is a violation of the game's terms of service.
  11. You're missing the WHERE clause in your SQL statement. query_sql("~code~ WHERE `char_id` = "+ getcharid(0)); Otherwise your script will execute for a character that you didn't mean to change
  12. See, the part where you're going wrong is changing things that shouldn't be changed. You can't change variables like $rss and still expect the feed to display. Once you've changed the appropriate config values, check to see if it works. If it doesn't work, then you can post here with the code you've got and someone can try to help you - no one in their right might will try to undo all of your unnecessary changes :/ use clean unmodified code, change the configs, then post your code here and i'll have a look.
  13. The only config you need to modify is in /config/application.php about half way down the file and change the new display option from built-in to rss feed. It'll then display the rss feed that you paste into the config for feed url. You don't need to modify anything else unless you want to change the layout of the feed. If you're using a theme developed by someone and they provide an alternative rss feed solution, you will find this setting in their config file instead of the main fluxcp application.php file.
  14. If you need a tutorial you shouldn't be trying to set this up. Google is your friend! Hint: you can unpack .apk's with winrar to view the files. Other than that, there are many tutorials online for android application development.
  15. Try again. I wonder how long that section had been broken for
  16. Wrong section. Moved to "Scripting Support".
  17. The download works just fine.
  18. You add the fields to the form within the theme files, then add the code to the already existing code within the module file, then amend the code within /lib/.Looking at the code will make it easy to follow and alter.
  19. That means the pop command didn't return your files, possibly due to a conflict. It's generally best practise to commit your local changes and pull from remote "github.com/rathena/rathena" so your changes are correctly merged. Stashing is only effective if you're making minimal edits and making full use of the import directories.
  20. If you followed the guides on how to update your local repo you would be able to recover them.
  21. The script is trying to insert the value "1" in a column labelled as a primary key, so you can't re-insert nor update that value. You script need fixing.
  22. Gmail is very picky with where it allows smtp connections from. It has a special table somewhere that lists what you need to configure with specific ports and smtp host. From memory your setup looks fine, though.
  23. It's generally helpful to update the original post with how you resolved your issue, incase any users have a similar problem in the future.
  24. It's generally an issue caused by suexec, but only for CentOS servers. Disable it and chown your entire fluxcp directory to the apache user.
×
×
  • Create New...