Thread: [RUSE] Website sided admin panel

Page 1 of 2 12 LastLast
Results 1 to 10 of 16
  1. #1 [RUSE] Website sided admin panel 
    Unfortunately we’re all human. Except me


    Join Date
    Aug 2011
    Posts
    926
    Thanks given
    539
    Thanks received
    439
    Rep Power
    601
    Hello,
    Due to paypal fucking shit up, I can no longer sell my web-sided admin panel. I decided to release it to public for everyone to use.
    if you want to know a little more about the system you can check this thread: https://www.rune-server.org/programm...much-more.html
    Installing system is pretty simple.

    if you want to see server sided click here https://www.rune-server.org/runescap...ml#post5242786


    First you'll have to download server files which you can find here http://download.furlan.online/server-panel.zip

    then you'll open up your phpmyadmin and add this table to your desired database

    Code:
    CREATE TABLE `users` (
      `id` int(11) NOT NULL,
      `username` varchar(255) NOT NULL,
      `password` varchar(255) NOT NULL,
      `loginHash` varchar(255) NOT NULL,
      `userRights` int(2) NOT NULL
    ) ENGINE=InnoDB DEFAULT CHARSET=latin1;
    ALTER TABLE `users`
      ADD PRIMARY KEY (`id`);
    ALTER TABLE `users`
      MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=4;
    INSERT INTO `users` (`id`, `username`, `password`, `loginHash`, `userRights`) VALUES
    (1, 'Administrator', '$2y$10$yghLPSZgyl4L98vYuaQQyuN5KHUvxsplJv43ssbYLwGzzMAKemaCy', '', 3);
    after this is done, open up class/constants/Configuration.class.php
    and insert your server details in. (LEAVE WEB_SERVER_PORT BLANK IF YOU DONT KNOW WHAT YOU'RE DOING)

    After that is done website should we able to read data from server and send commands to it.

    Default account for admin panel is Administrator:admin

    If you like this feel free to rep and thank.

    (any constructive critisism is welcome even tho its release, also please keep in mind that I kind of rushed this system. Thank you)


    Quote Originally Posted by Jc6689 View Post
    FYI users also have to edit

    AutoLoader.php and set a path or you get PHP errors.

    Code:
    'basepath' => '/usr/www/yourserver/public/acp',
    Reply With Quote  
     


  2. #2  
    Donator

    Superman's Avatar
    Join Date
    Feb 2015
    Posts
    870
    Thanks given
    316
    Thanks received
    247
    Rep Power
    1326
    Thanks man
    founder of hdos

    Attached imageAttached image
    Reply With Quote  
     

  3. Thankful user:


  4. #3  
    aaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaa
    Planets's Avatar
    Join Date
    Aug 2014
    Age
    29
    Posts
    2,159
    Thanks given
    673
    Thanks received
    1,955
    Rep Power
    5000

    Reply With Quote  
     

  5. Thankful users:


  6. #4  
    Jake from State Farm

    FKN Jake's Avatar
    Join Date
    Nov 2013
    Posts
    675
    Thanks given
    45
    Thanks received
    58
    Rep Power
    153
    Vouch for this it works perfectly.
    Reply With Quote  
     

  7. #5  
    Im an albatraoz

    Nand0's Avatar
    Join Date
    Feb 2010
    Age
    31
    Posts
    948
    Thanks given
    233
    Thanks received
    128
    Rep Power
    241
    what encryption is used for the password?



    Looking for blazing fast and affordable vps or web hosting?
    AllGeniusHost



    Reply With Quote  
     

  8. #6  
    Registered Member
    Anthony`'s Avatar
    Join Date
    Sep 2008
    Age
    29
    Posts
    763
    Thanks given
    75
    Thanks received
    164
    Rep Power
    204
    Quote Originally Posted by Nand0 View Post
    what encryption is used for the password?
    It's bcrypt. You can tell by looking at $2y$ (which means Blowfish) from the beginning of the salt.
    Reply With Quote  
     

  9. #7  
    Registered Member
    Join Date
    Jul 2016
    Age
    27
    Posts
    392
    Thanks given
    19
    Thanks received
    61
    Rep Power
    68
    Thabks for release


    Sent from my iPhone using Tapatalk
    Thanks,
    Mikk
    Reply With Quote  
     

  10. #8  
    Jake from State Farm

    FKN Jake's Avatar
    Join Date
    Nov 2013
    Posts
    675
    Thanks given
    45
    Thanks received
    58
    Rep Power
    153
    Reply With Quote  
     

  11. #9  
    Unfortunately we’re all human. Except me


    Join Date
    Aug 2011
    Posts
    926
    Thanks given
    539
    Thanks received
    439
    Rep Power
    601
    Quote Originally Posted by Yalu View Post
    nothing is permanent but thank you very much for reupload
    Reply With Quote  
     

  12. #10  
    Registered Member
    Anthony`'s Avatar
    Join Date
    Sep 2008
    Age
    29
    Posts
    763
    Thanks given
    75
    Thanks received
    164
    Rep Power
    204
    Quote Originally Posted by LukaFurlan View Post
    nothing is permanent but thank you very much for reupload
    very deep philosophical quote has got me thinking...
    Reply With Quote  
     

  13. Thankful user:


Page 1 of 2 12 LastLast

Thread Information
Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)


User Tag List

Similar Threads

  1. [RUSE] Website sided admin panel
    By Mr. Robot in forum Snippets
    Replies: 4
    Last Post: 09-30-2016, 12:59 AM
  2. Replies: 19
    Last Post: 09-27-2016, 06:42 AM
  3. Replies: 27
    Last Post: 06-23-2013, 12:51 AM
  4. My Second Interface (Admin Panel) nearly complete
    By The evil ways in forum Show-off
    Replies: 42
    Last Post: 03-20-2012, 09:39 AM
  5. Replies: 3
    Last Post: 01-04-2012, 06:05 PM
Posting Permissions
  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •