Jump to content

Wynn -

Members
  • Posts

    23
  • Joined

  • Last visited

  • Days Won

    1

Wynn - last won the day on March 3 2014

Wynn - had the most liked content!

2 Followers

Profile Information

Contact Methods

Recent Profile Visitors

1874 profile views

Wynn -'s Achievements

Poring

Poring (1/15)

18

Reputation

  1. Fixed in the last commit.
  2. Does the server's SLQ user has the EVENT privilege and is your CP up to date?
  3. The status is determined by making a request to the servers. I'll add an option to subscribe to updates and comments on each post, send email notifications to admins when someone reports a comment and add the latest comments and reports to the admin dashboard. The online stats and who's online pages seem to be working, what's the value of your server's "Online Stats Interval" on the server settings page?
  4. You have to enable Mysql's event scheduler to log online players, run "SET GLOBAL event_scheduler = ON;" to enable it. Also check if the event exists (SHOW EVENTS IN `charmapdb`), in case it doesn't exist run the query in schema/charmap/ac_online_stats.sql in your server's database and change DISABLE to ENABLE. I've just tested the server status and it seems to be working, are you sure the servers' IPs and ports are correct?
  5. Does your item_db2_re have a atk:matk row? Is it a renewal server? Until CharGen is fixed you'll need a data folder with your char heads, bodies and hat sprites inside assets/client to display the sprites. I've updated the first post with links to the items, mobs, homunculus and map images downloads, just put the folders inside assets/images. The maps still need to be edited, most of them don't have a transparent background. I'll add a theme management page to the admin CP and it'll be up to the designers to add an option for menus. I'm working on the char/map server admin pages now so it's not my priority. You can still edit the default theme in application/themes/default or create a new folder in application/themes and change "default" in the 14th line of application/pages/main.php to the name of folder you've created, that file will likely not be edited (for a long time, anyway). In case you decide to edit the default theme, the menu is generated in the file partial/menu.php. \Aqua\UI\Menu isn't documented yet but that's all you'll need to know: $menu->append(<string:identifier>, <array:menu definition>) : Add a option to the end of the menu $menu->prepend(<string:identifier>, <array:menu definition>) : Add a option to the beginning of the menu $menu->add(<string:identifier>, <int:position>, <array:menu definition>) : Add a option to the position specified $menu->pos(<string:identifier>) : Get the numeric position of a menu option <menu definition> : "title" : Title displayed in the menu "url" : URL string "submenu" : Optional, another menu array Example: $menu->add("your-option-id", $menu->pos("donate"), array( 'title' => 'Download', 'url' => ac_build_url(array( 'path' => array( 'page', 'download' ) )) )); // Add a link to ?path=page.download before "donate"
  6. Alright, the second error have been fixed and it's safe to use multiple servers now, everything's working and the menu is doesn't look weird anymore. In the latest version of rAThena the item_db2_re has an "attack" row but no "mattack" nor atk:matk", I'm not sure if that's right. Just saw upgrade_12131231.sql. I'm working on a fix for CharGen. You can use a data folder, it works just fine.
  7. Have you edited the data.ini to load your grf files? The mkdir error is an issue with the default permissions which I've changed to 775 (public) and 770 (private), if you run into this error you should change the folder's permission and define the values of Aqua\x_y_PERMISSION inside options.php. The issue with the "description" column is already fixed, you must have added your server before that. All you have to do is add the description column to your item_db_re table, the query can be found in schema/charmap/item_db_re.description.sql. The last one might be misconfiguration in the .htaccess or permissions, I suggest checking your access log for anything on js files inside the tpl folder. I'll fix the 3rd and 4th errors as soon as I can. The 4th one is really the CP, thank you for reporting it. Edit: All fixed, including the 403 error.
  8. You need to put your grf file or sprites folder inside /assets/client for the sprites to show up. All item, homunculus and mob icons will be available for download separately, it's the same structure as flux's. Can you send me your last error messages regarding the item shop and DB errors? I suspect it's the item_db name, if you've checked Renewal in the server settings the table name should be "item_db_re". Table names can be mapped in settings/ragnarok.php, just edit the "tables" array in your server's confs ( <login key> => array( .... <sub-server key> => array() ).
  9. The main site should be working correctly. The default theme only displays one server in the menu (bad design). Can you post the urls you're using to access those pages (Who's online, Monster DB, etc) and send your error logs? Edit: I just fixed the errors. The server menu looks weird when there are more than 1 sub-servers though, I'll have to fix too.
  10. The admin CP isn't complete. The character, guild, party, most char/map logs and settings pages aren't done yet, that's why you're getting 404 errors when you access these pages. I'm working on the admin server pages, for now the char/map page is just a var_dump of the server class (The long string starting with object(Aqua\Ragnarok\Server\CharMap)). I'll be pushing a commit soon with new settings and log pages. You can edit the rates in admin/?path=r.<login server key>.<char/map server key>&action=rates
  11. You can change the permissions set to new files and folders by defining the values of "Aqua\PRIVATE_FILE_PERMISSION", "Aqua\PUBLIC_FILE_PERMISSION", "Aqua\PRIVATE_DIRECTORY_PERMISSION" and "Aqua\PUBLIC_DIRECTORY_PERMISSION" in the options.php file. Regarding the password hashing, all of the installation options are for the CP, that's the encryption used for the site accounts. When you add a server to the site in the admin CP you can choose whether to use MD5. You'll get a 404 in some pages if you've added a login server but no char/map servers. You can't view your characters if there's only a login server. I've fixed that error in the last commits, added the cache folder and changed the default permissions. Thanks
  12. Yes, you can add as many login and char/map server as you want in the admin CP but you can't set a default server yet. Each server has separate pages in the admin CP and the main site.
  13. Yah, I've exceeded my quota on openshift, so the site is down. I'll setup another demo on a vps and replace the link as soon as I can. Edit: The new demo is up, you can login as admin or a regular user. http://aquacore.org/
  14. Have you tried changing session.gc_maxlifetime in your php.ini file? From the documentation: So if your session is idle for the specified amount of seconds it may be deleted.
×
×
  • Create New...