Welcome!

Join our community of MMO enthusiasts and game developers! By registering, you'll gain access to discussions on the latest developments in MMO server files and collaborate with like-minded individuals. Join us today and unlock the potential of MMO server development!

Join Today!

[Arcturus] CMS/admin panel

Initiate Mage
Joined
Apr 30, 2014
Messages
21
Reaction score
1
So I made a CMS/admin panel for a new irose server. Nevertheless the server project was canceled,
and it leaves me with an unused CMS.

I will be more then happy to share it. It is not entirely finished, but it contains all the main functionalities, including:

- Account creation
- Sign in
- Beta key system
- Ticket System
- PayPal payments (development stage)
- Admin panel

The CMS is written in PHP inc. Laravel Framework.


If you are interested, please feel free to contact me.

code:
[admin panel]
[website itself]

you can view the CMS here:


kas0IUI - [Arcturus] CMS/admin panel - RaGEZONE Forums
 

Attachments

You must be registered for see attachments list
Last edited:
Experienced Elementalist
Joined
Sep 25, 2006
Messages
214
Reaction score
13
Looks nice m8!
wouldn't mind to have a look at this.
-SirIce
 
Initiate Mage
Joined
Apr 30, 2014
Messages
21
Reaction score
1
I have edited the post and added the links to the github repos
 
Junior Spellweaver
Joined
Jul 29, 2003
Messages
136
Reaction score
5
Nice release, what would be the best files to use with this if you dont mind me asking as I am new to the PT scene.
 
Experienced Elementalist
Joined
Sep 25, 2006
Messages
214
Reaction score
13
Oh this is great! ill have a look though this all tonight thanks!.
-Ice
 
Initiate Mage
Joined
Apr 30, 2014
Messages
21
Reaction score
1
Nice release, what would be the best files to use with this if you dont mind me asking as I am new to the PT scene.

It is made for Arcturus (iRose). Changing it to any order rose server (read as: database scheme) wouldn't be that hard.

If you need any help, feel free to ask.
 
Initiate Mage
Joined
Apr 30, 2014
Messages
21
Reaction score
1
can use now? how to install it?

1. Install an webserver. I think xampp is commonly used in the rose community. Although I would recommend something like
Nginx.

2. Then install composer:

3. Clone the repo and put it in your public directory

4. Change the .env file to your settings

5. Open CMD, goto the public directory and run:
"composer install"
"php artisan migrate"


Everything should be good to go now.
 
Initiate Mage
Joined
Nov 12, 2013
Messages
5
Reaction score
0
1. Install an webserver. I think xampp is commonly used in the rose community. Although I would recommend something like
Nginx.

2. Then install composer:

3. Clone the repo and put it in your public directory

4. Change the .env file to your settings

5. Open CMD, goto the public directory and run:
"composer install"
"php artisan migrate"


Everything should be good to go now.



Guide Please !!!
 
Initiate Mage
Joined
Apr 30, 2014
Messages
21
Reaction score
1
It is because of a duplicate class name. Go to the files in the database\migrations directory. Make sure there aren't duplicate class names.
 
Initiate Mage
Joined
Dec 30, 2015
Messages
8
Reaction score
0
thanks for your replay...
when i try to migrate database.. i have a error...
can you help me again?

bierdopje - [Arcturus] CMS/admin panel - RaGEZONE Forums


sory... im a newbie in laravel :D help me sensai haahahaha
 
Initiate Mage
Joined
Apr 30, 2014
Messages
21
Reaction score
1
thanks for your replay...
when i try to migrate database.. i have a error...
can you help me again?

bierdopje - [Arcturus] CMS/admin panel - RaGEZONE Forums


sory... im a newbie in laravel :D help me sensai haahahaha

This isn't really a Laravel error. It has to do with you database. You are trying to add a column that already exists. Duplicate column names aren't allowed in SQL tables.

So you either have already runned the specific query and you can skip it, or you delete the columns to prevent the error. In your case: delete the created_at column from the UserInfo table.

I suggest to read the error more carefully, since it is really self explaining: Column name "created_at" in table 'UserInfo" is specified more than once



how to use using appserv? :D

Thanks for ur reply

Use this tutorial: http://tutsnare.com/how-to-install-laravel-on-windows-xampp/
With my repository:
 
Back
Top