Jump to content

AquaCore Control Panel


Wynn -

Recommended Posts


  • Group:  Members
  • Topic Count:  27
  • Topics Per Day:  0.01
  • Content Count:  161
  • Reputation:   5
  • Joined:  02/07/13
  • Last Seen:  

Hm, I uploaded all of the sprite and other images files that I had on my other server.

I'm getting the dark 'shadow' circle that sits under the character, but nothing else:

http://ro.templar-gaming.com/img.php?x=body&s=tgro&c=torment&i=150659

 

Going to grab the changes from GIT and re-add that other server. Thanks!

 

Edit:

 

#2 is fixed for the original server I added.

The item database shows as intended - (I just need to upload some images for the items. ;))

However, I re-added the second server, and am getting this error:

 

Note: Server #1 displays the item DB, server #2 presents error:

 

Date:            Apr 09, 2014 10:27:35 PM
URL:            http://ro.templar-gaming.com/?path=ragnarok.s.valor.item
--------------------------------------------------------------------
Exception
-------------------------------------------------------------------
File:   /ro/lib/Aqua/SQL/Select.php
Line:    508
Type:    PDOException
Code:    42S22
- Message ---------------------------------------------------------
SQLSTATE[42S22]: Column not found: 1054 Unknown column 'i.atk:matk' in 'field list'
- Trace ------------------------------------------------------------
* Aqua\Site\Dispatcher->dispatch()     /ro/index.php:43
* Aqua\Site\Page->action()     /ro/lib/Aqua/Site/Dispatcher.php:94
* call_user_func_array()     /ro/lib/Aqua/Site/Page.php:70
* Page\Main\Ragnarok\Server\Item->index_action()
* Aqua\SQL\Select->query()     /ro/application/pages/main/ragnarok/server/item.php:113
* PDOStatement->execute()     /ro/lib/Aqua/SQL/Select.php:508

 

 

-------

(Unrelated question: Will there be an ability to add menu items from the admin backend, or will it be manually handled through the templating system?)

Edited by Talaysen
Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  2
  • Topics Per Day:  0.00
  • Content Count:  23
  • Reputation:   18
  • Joined:  02/27/14
  • Last Seen:  

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"
Edited by Wynn -
Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  27
  • Topics Per Day:  0.01
  • Content Count:  161
  • Reputation:   5
  • Joined:  02/07/13
  • Last Seen:  

For whatever reason (I've run all of the SQL files, and updates, etc) for my second server, it didn't have the atk:matk column.

Server is renewal. I manually added the column.

 

Either way, it fixed that error, the item database is working for the second server, as intended.

 

--

 

I noticed that the Login/Char/Map servers always appear offline on the Server Information page (?path=ragnarok.s."server"&action=info).

Online stats, all time player peak, and this month's player peak are all blank/0.

Is this something that isn't finished yet?

Edited by Talaysen
Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  2
  • Topics Per Day:  0.00
  • Content Count:  23
  • Reputation:   18
  • Joined:  02/27/14
  • Last Seen:  

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?

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  27
  • Topics Per Day:  0.01
  • Content Count:  161
  • Reputation:   5
  • Joined:  02/07/13
  • Last Seen:  

Yeah, the IP and ports are correct.

I think the event scheduler may have been disabled.

It shows up in my database when I do 'SHOW EVENTS', and now the Online Stats are showing that I have '2' (sigh) users online.

 

All three (login/char/map) servers are still showing as offline (red circles).

Is that status pulled from the server database, or is it done by TCP/UDP query?

Just wondering if maybe it's due to a blocked port on my webhost, or some such silliness.

 

Minor issue:

 

-Cannot toggle 'featured' state of news posts. Changing the setting and hitting submit doesn't save.

 

Feature request:

 

-Some sort of alert mechanic for comments on news articles.
(Currently have to manually check for comments, would be nice to have an alert, perhaps on the admin backend notifying a new comment.)

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  2
  • Topics Per Day:  0.00
  • Content Count:  23
  • Reputation:   18
  • Joined:  02/27/14
  • Last Seen:  

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?

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  27
  • Topics Per Day:  0.01
  • Content Count:  161
  • Reputation:   5
  • Joined:  02/07/13
  • Last Seen:  

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?

It's showing as '30', and when I attempt to change it, it changes back to 30 when I hit submit, however:

 

From the database (server 1):

dbname ac_online_stats_event dbusername@host SYSTEM RECURRING 2 MINUTE 2014-04-15 20:17:10 ENABLED 0 utf8 utf8_general_ci latin1_swedish_ci
 
From the database (server 2):
dbname2 ac_online_stats_event dbusername2@host SYSTEM RECURRING 2 MINUTE 2014-04-10 08:49:54 ENABLED 0 latin1 latin1_swedish_ci latin1_swedish_ci
 
Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  2
  • Topics Per Day:  0.00
  • Content Count:  23
  • Reputation:   18
  • Joined:  02/27/14
  • Last Seen:  

Does the server's SLQ user has the EVENT privilege and is your CP up to date?

Link to comment
Share on other sites

  • 1 month later...

  • Group:  Members
  • Topic Count:  1
  • Topics Per Day:  0.00
  • Content Count:  5
  • Reputation:   0
  • Joined:  03/03/14
  • Last Seen:  

Hi, when i create a news  received this error

 Fatal error: Call to undefined function Aqua\Core\boolval() in /home/*****/public_html/lib/Aqua/Core/Meta.php on line 182

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  2
  • Topics Per Day:  0.00
  • Content Count:  23
  • Reputation:   18
  • Joined:  02/27/14
  • Last Seen:  

Hi, when i create a news  received this error

 Fatal error: Call to undefined function Aqua\Core\boolval() in /home/*****/public_html/lib/Aqua/Core/Meta.php on line 182

 

Fixed in the last commit.

Link to comment
Share on other sites

  • 3 months later...

  • Group:  Members
  • Topic Count:  14
  • Topics Per Day:  0.00
  • Content Count:  36
  • Reputation:   1
  • Joined:  05/05/14
  • Last Seen:  

Error when trying to upload a plugin

Fatal error: Class 'finfo' not found in /home/rogalaxy/public_html/Home/lib/Aqua/UI/Form/File.php on line 244

Uploading on any other page is fine

 

also getting

Fatal error: Access to undeclared static property: Aqua\UI\Template::$directories in /home/rogalaxy/public_html/Home/plugins/V4p-master/startup.php on line 20

Cant use admin panel now :(

Edited by rom3r
Link to comment
Share on other sites

  • 3 months later...

  • Group:  Members
  • Topic Count:  4
  • Topics Per Day:  0.00
  • Content Count:  16
  • Reputation:   0
  • Joined:  08/25/14
  • Last Seen:  

Posted (edited) · Hidden by Emistry, December 3, 2014 - non-english
Hidden by Emistry, December 3, 2014 - non-english

a ver si me entiende, no funciona ninguna wuea lo e echo todo al pie de la letra, pero no puedo instalar el puto panel!!!

 

Luciar Edit: Posting in languages other than English outside of International Support forums or Graphical Enhancements (with translation) is not allowed.

Edited by Luciar
Non-English Post information
Link to comment

  • Group:  Members
  • Topic Count:  4
  • Topics Per Day:  0.00
  • Content Count:  16
  • Reputation:   0
  • Joined:  08/25/14
  • Last Seen:  

hmm think being in development will not see much forward motion, is free and know, but a panel more like fluxcp, but I find it somewhat complicated, this panel is not for people who are newly learning to build a server a web , also later to realize that not work for me, and it was because it has to be in the root directory and not in a folder like any web,
my love of my loves, if one day this panel is complete gladly pay money for their panel and I want to install your own heart!
 
hmm creo estar en desarrollo no ver mucho movimiento hacia adelante, es gratis y no sé, pero un panel más como fluxcp, pero me resulta un tanto complicado, este panel no es para personas que están recién aprendiendo a construir un servidor de una red, también más tarde darse cuenta de que no funciona para mí, y era porque tiene que estar en el directorio raíz y no en una carpeta como cualquier web,
mi amor de mis amores, si un día este panel se completa con gusto pagar dinero para su panel y quiero instalar tu propio corazón!

sorry use translator google   :(
Edited by tokomoxo
Link to comment
Share on other sites

  • 2 weeks later...

  • Group:  Members
  • Topic Count:  31
  • Topics Per Day:  0.01
  • Content Count:  491
  • Reputation:   19
  • Joined:  11/19/11
  • Last Seen:  

how to enable  

  • MB String   ???
Link to comment
Share on other sites

  • 2 years later...

  • Group:  Members
  • Topic Count:  16
  • Topics Per Day:  0.00
  • Content Count:  171
  • Reputation:   15
  • Joined:  01/26/12
  • Last Seen:  

@hervin this control panel has not been updated in quite sometime i would use fluxcp it has alot more features and works alot better with rathena.

 

https://github.com/rathena/FluxCP

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  3
  • Topics Per Day:  0.00
  • Content Count:  11
  • Reputation:   0
  • Joined:  11/07/16
  • Last Seen:  

@sikiro thank you. done ^^

Link to comment
Share on other sites

×
×
  • Create New...