[WEB/ADMIN] PermissionsEx Web Panel

Discussion in 'Bukkit Tools' started by EnZiGuRi, May 17, 2012.

Thread Status:
Not open for further replies.
  1. it is good to add pages (pagination) to player-list and group-perm-list. (i am working on it. if i make it i will post it)

    i also made the iconomy editor page from where you can create accounts or delete other accounts from players.

    here is the file (you need to place it to pages folder)
    http://ultimatepczone.com/old_archives/permissionsex.zip

    make sure you add this under player group editor in index.php file
    PHP:
    //iConomy Balance Editor
    if(isset($_POST['balanceset'])){
        
    $id $_POST['id'];
        
    $balance $_POST['balance'];
        
    $username $_POST['username'];
     
        
    $query "SELECT * FROM iConomy WHERE id='$id'";
        
    $result mysql_query($query) or die('Cannot Execute:'mysql_error());
        
    $num mysql_num_rows($result);
     
        if(
    $num 1){
            
    $insert "INSERT INTO iConomy (id, username, balance) VALUES ('','$username','$balance')";
            
    mysql_query($insert);
        }
        
    header("location: index.php?page=iconomy-editor");
    }
    if(isset(
    $_POST['removeacc'])){
        
    $pid $_POST['pid'];
        
    $remove "DELETE FROM iConomy WHERE id='$pid'";
        
    mysql_query($remove);
     
        
    header("location: index.php?page=iconomy-editor");
    }
    if you want to make it accessible via main menu go to menu.php and add this line
    HTML:
    <input type="submit" onClick="parent.location='index.php?page=iconomy-editor'" value="iConomy Database" />
    this is a really beneficial tool for server owners and production servers. i will take it into account :)
     
  2. Offline

    serpi90

    Could you add preffix/suffix per player (besides the current per group)? PEX supports them.

    And permission listing, separated per group (including the inherited) would be nice too.
     
  3. Offline

    EnZiGuRi

    i will add it soon.. its in to-do list. ;)

    yorgaraz: thanks for helping. i will add it soon ;)

    EDIT by Moderator: merged posts, please use the edit button instead of double posting.
     
    Last edited by a moderator: May 25, 2016
  4. Offline

    Cannedbeefy

    Mass add function?
    Usually use excel to track permissions. cut and paste all would be awesome.
     
  5. Offline

    Lolmewn

    Is there any way to convert flatfile to MySQL with PermissionsEx? This looks like a nice tool, but I'm currently using flatfile...
     
  6. there is one way of converting FF to MySQL. You can read this page @ PEX Wiki:
    https://github.com/PEXPlugins/PermissionsEx/wiki/Migration
     
  7. Offline

    Lolmewn

  8. Offline

    Brant Wladichuk

    You really should ask permission or at least give credit when you use someone else's work... 'specially not claim it as your own. This is just a re-skin of my Pexinator web panel.

    With that being said.. you're more then welcome to continue using my code. I admit, it's pretty poorly written, and not that secure.

    Since I've just released thePexinator2.0, I feel its appropriate to include a link to it here.
    http://forums.bukkit.org/threads/thepexinator-handy-pex-sql-manager.54539/
    It's more secure, simpler, better looking. It's now uses the Websend plugin to refresh pex on every change. As well as an ajax powered user search, pagination, and more. Enjoy!
     
  9.  
  10. Offline

    killally0un00bs

    hwo to install?
     
  11. Offline

    Kartus

    does this still work?
     
  12. Offline

    NotYetRated

  13. Offline

    AlexMerser

    Oh, Can you update download link?
     
  14. Offline

    turkeybird90

    Screenshot links are broken. EnZiGuRi
     
  15. Offline

    dark_hunter

    I think this project is dead, should be marked as inactive now.
     
Thread Status:
Not open for further replies.

Share This Page