BukkitAdmin 0.4 PreAlpha ~ Premier Web Administrator [677]

Discussion in 'Bukkit Tools' started by MonsieurApple, Feb 24, 2011.

Thread Status:
Not open for further replies.
  1. Offline

    WolfGangSen

    I had allot of 500 error issues as well.

    Fixed by enabeling modrewrite for apache and enabeling/allowing options to be set in htaccess.

    I now only have 2 issues (1 of which isnt really an issue :p).

    1. when pressing start it wont launch the minecraft server. (not sure whats causing this)

    2. the plugin isn't working on my current server setup (but thats becasue it says for 440 or so and imusing 49- something becasue one of my own plugins needs it).
     
  2. Offline

    MonsieurApple

    I'll update the plugin today when I have some spare time.
     
  3. Offline

    WolfGangSen

    i am guessing that i can launch my server else where and just have the plugin running on it and so long as port and pass are correct then it wont matter if i launch it from the webadmin page it can still get the player info etc
     
  4. Offline

    MonsieurApple

    If i understood this, yes you can start it via another method as long as the plugin is loaded.
     
  5. Offline

    Dopply

    Hello, thank you for this tool. My server has been dying for something like this.

    However, I am a little confused about the whole .htaccess procedure. How do I go about this?

    Thank you!
     
  6. Offline

    MonsieurApple

    If its not working on first install, don't worry. The first thing I'm doing once I get some sleep (it's 1 am here) is I'm going to remove the need for .htacess and mod_rewrite all together.
     
  7. Offline

    contex

    If I buy the plugin do I get unlimited support + updates?
     
  8. Offline

    MonsieurApple

    Most likely. I'm not signing any contracts or stuff :p
     
  9. Offline

    contex

    Hah, I'll think about it, need an easy way to manage my server from my website.
     
  10. Offline

    MonsieurApple

    This aims at doing it, and works well, however it's still not bug free. Don't expect perfect performance.
    --- merged: Mar 7, 2011 4:13 PM ---
    Hi everyone-

    If you're running build 493 (the latest recommended) here is a new version of the plugin that will work.

    Download

    I was going to release 0.3.4, but there are still a lot of bugs, so I'm holding onto that for now
     
  11. Offline

    Dopply

    Hate to be a bother about this, but this is important for my server. How is the .htaccess file set up? I put my root directory in where it tells me, and it still doesn't work.
     
  12. Offline

    MonsieurApple

    Paste your htaccess here please and the full url.
     
  13. Offline

    Dopply

    Code:
    RewriteEngine On
    
    # Example:
    # http://www.example.com/test/ ---> RewriteBase /test/
    
    http://youchew.net/minecraft/
    
    RewriteBase /wa/
    
    http://youchew.net/minecraft/
    
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule .* index.php/$0 [PT,L]
    
    Options -Indexes
    I know it's probably something obvious.
     
  14. Offline

    MonsieurApple

    Yes it is :p This is what it should look like:
    Code:
    RewriteEngine On
    
    # Example:
    # http://www.example.com/test/ ---> RewriteBase /test/
    
    RewriteBase /minecraft/
    
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule .* index.php/$0 [PT,L]
    
    Options -Indexes
    Because your url was http://youchew.net/minecraft/, your rewrite base is /minecraft/
     
  15. Offline

    Dopply

    ...*walks away in shame*

    :p Thanks though.
     
  16. Offline

    MonsieurApple

    Glad i could help :)
     
  17. Offline

    68x

    Are you going to be adding a ban and kick feature?
     
  18. Offline

    MonsieurApple

    Yes
     
  19. Offline

    Dopply

    It still doesn't work. :p I navigate to the directory and I get a blank page. I have the JSON extension enabled under PHP 5.2 and every other requirement. I'm not sure what's up.
     
  20. Offline

    MonsieurApple

    Strangely enough, other users were reporting the "blank page" thing too. I'm not sure what's up either ;(
     
  21. Offline

    Insers

    Stucked when trying to Start.

    Clicked Start.
    waiting a while.
    Server Started! Loading plugins...

    and then nothing happens
     
  22. Offline

    MonsieurApple

    Does the server.log show anything?
     
  23. Offline

    Insers

    nope nothing. It seems not starting
     
  24. Offline

    MonsieurApple

    Is PHP in safe mode? Is it allowed to use exec() ?
     
  25. Offline

    Insers

    where i need to check this?
    i'm using XAMPP 1.7.3
     
  26. Offline

    MonsieurApple

    Make a new php file, and in it put
    Code:
    <?php
    if( ini_get('safe_mode') )
    echo 'Safe mode is on<br>';
    else
    echo 'Safe mode is off<br>';
    $disabled = explode(', ', ini_get('disable_functions'));
    if(!in_array('exec', $disabled))
    echo 'Exec is enabled<br>';
    else
    echo 'Exec is disabled<br>';
    echo ini_get(safe_mode_exec_dir);
    ?>
    And paste your results
     
  27. Offline

    Insers

    Safe mode is off
    Exec is enabled
     
  28. Offline

    MonsieurApple

    Is that all? There should be more.
     
  29. Offline

    Insers

    thats all ;p
     
  30. Offline

    MonsieurApple

    Replace the file in pages/exec.php with the php file in http://mc.oc.tc/BukkitAdmin/exec.zip
    [MERGETIME="1299801244"][/MERGETIME]
    Then try to start it and tell me what it says
     
Thread Status:
Not open for further replies.

Share This Page