dertbv

Members
  • Posts

    220
  • Joined

  • Last visited

Posts posted by dertbv

  1. Ok, I've updated the app, to remove the dependency on unRAID's notifications settings.

     

    Now you enter the mail info in the settings page.

     

    I've also made some UI fixes and added some additional logging.

     

    derbtv, I checked your logs and I have an idea of why it's not doing anything, hopefully you can test this version and send me the logs, so I can check further.

    So I was able to resolve my issue after several reboots, and all was good with the world,  however I noticed before I started having problems the first time the icons in the right hand corner were not in the correct location on the home page.  like the were over lapping.  Lo and behold I go back in just now an the icons are over lapping again and I am getting the same error messages.  I will take a look later tonight to see if I can figure out what is going on. 

  2. OK I have a weird problem.  After installing this docker and configuring it was working great.  Now I am getting errors XHR failed to save config among others.  I think no problem remove the docker and reboot the server.  However after removeing and rebooting I find that I can still get to the unbalance web page with out re-installing the docker app.  it appears to be stuck in autostart mode but not listed in my docker menu?  thoughts

    dockers.jpg.6b763aa4804147ace91c2306f66648c1.jpg

    unbalanced.jpg.3ef5cf559f0f4dfce09f1c6909c7756d.jpg

  3. Are there instructions on how to "install" it? I'd like to give it a try; I know it's usually installed through unMENU. I have a test system running V6.0beta3. Thanks!

     

    Unzip the download in Windows and copy the powerdown-1.05-noarch-unRAID.tgz file to /flash/packages.

    telnet to your server

    cd /boot/packages

    installpkg powerdown-1.05-noarch-unRAID.tgz CTRLALTDEL=YES upgradepkg --install-new

     

    This will have to be done again on a boot.

     

    I am getting the following when i use the command..

     

    Executing install script for powerdown-1.05-noarch-unRAID.tgz.

    Package powerdown-1.05-noarch-unRAID.tgz installed.

     

    Cannot install CTRLALTDEL=YES:  file not found

    Cannot install upgradepkg:  file not found

    Cannot install --install-new:  file not found

     

    thanks

  4. I have updated the plugin with the line

    sed -i "s:^#\( *\"mod_proxy\",\): \1:" /etc/lighttpd.conf

     

    However I still am unable to get the webserver to start when using a a customized dynamix.lighthttpd.cfg file

     

    # User customizations

    # Add your own settings here. These won't get overwritten upon reboot

    ## Abdd your own settings here. These won't get overwritten upon reboot

    #

     

    $SERVER["socket"] == "192.168.0.199:81" {

            server.document-root = "/mnt/user/apps/nZEDb/www/"

     

            url.rewrite-once = (

                    "^/.*\.(css|jpg|jpeg|gif|png|js|ico)" => "$0",

                    "^/(admin|install).*$" => "$0",

                    "^/([^/\.]+)/?(?:\?(.*))$" => "index.php?page=$1&$2",

                    "^/([^/\.]+)/?$" => "index.php?page=$1",

                    "^/([^/\.]+)/([^/]+)/?(?:\?(.*))$" => "index.php?page=$1&id=$2&$3",

                    "^/([^/\.]+)/([^/]+)/?$" => "index.php?page=$1&id=$2",

                    "^/([^/\.]+)/([^/]+)/([^/]+)/?$" => "index.php?page=$1&id=$2&subpage=$3"

            )

    }

    $SERVER["socket"] == "192.168.0.199:9088" {

            server.document-root = "/mnt/user/apps/phpMyAdmin/"

    }

    webserver is pointing to /mnt/user/apps/nZEDb/www  on port 9000

    Any ideal where I am making my mistake?

     

    Can you telnet into your system and do:

     

    lighttpd -f /etc/lighttpd.conf

     

    This will show any error messages upon starting the service.

     

    Using the command I am getting

     

    (configfile.c.949) source: /etc/lighttpd.conf line: 327 pos: 1 parser failed somehow near here: (EOL)

     

    thanks

     

    That sounds like a syntax error in your custom config file. Double-check things like (missing) quotes.

     

    You were right.  I went through line by line and cleaned up everything.  It is now working correctly.  Thanks

  5. I have updated the plugin with the line

    sed -i "s:^#\( *\"mod_proxy\",\): \1:" /etc/lighttpd.conf

     

    However I still am unable to get the webserver to start when using a a customized dynamix.lighthttpd.cfg file

     

    # User customizations

    # Add your own settings here. These won't get overwritten upon reboot

    ## Abdd your own settings here. These won't get overwritten upon reboot

    #

     

    $SERVER["socket"] == "192.168.0.199:81" {

            server.document-root = "/mnt/user/apps/nZEDb/www/"

     

            url.rewrite-once = (

                    "^/.*\.(css|jpg|jpeg|gif|png|js|ico)" => "$0",

                    "^/(admin|install).*$" => "$0",

                    "^/([^/\.]+)/?(?:\?(.*))$" => "index.php?page=$1&$2",

                    "^/([^/\.]+)/?$" => "index.php?page=$1",

                    "^/([^/\.]+)/([^/]+)/?(?:\?(.*))$" => "index.php?page=$1&id=$2&$3",

                    "^/([^/\.]+)/([^/]+)/?$" => "index.php?page=$1&id=$2",

                    "^/([^/\.]+)/([^/]+)/([^/]+)/?$" => "index.php?page=$1&id=$2&subpage=$3"

            )

    }

    $SERVER["socket"] == "192.168.0.199:9088" {

            server.document-root = "/mnt/user/apps/phpMyAdmin/"

    }

    webserver is pointing to /mnt/user/apps/nZEDb/www  on port 9000

    Any ideal where I am making my mistake?

     

    Can you telnet into your system and do:

     

    lighttpd -f /etc/lighttpd.conf

     

    This will show any error messages upon starting the service.

     

    Using the command I am getting

     

    (configfile.c.949) source: /etc/lighttpd.conf line: 327 pos: 1 parser failed somehow near here: (EOL)

     

    thanks

     

     

  6. I have updated the plugin with the line

    sed -i "s:^#\( *\"mod_proxy\",\): \1:" /etc/lighttpd.conf

     

    However I still am unable to get the webserver to start when using a a customized dynamix.lighthttpd.cfg file

     

    # User customizations

    # Add your own settings here. These won't get overwritten upon reboot

    ## Abdd your own settings here. These won't get overwritten upon reboot

    #

     

    $SERVER["socket"] == "192.168.0.199:81" {

            server.document-root = "/mnt/user/apps/nZEDb/www/"

     

            url.rewrite-once = (

                    "^/.*\.(css|jpg|jpeg|gif|png|js|ico)" => "$0",

                    "^/(admin|install).*$" => "$0",

                    "^/([^/\.]+)/?(?:\?(.*))$" => "index.php?page=$1&$2",

                    "^/([^/\.]+)/?$" => "index.php?page=$1",

                    "^/([^/\.]+)/([^/]+)/?(?:\?(.*))$" => "index.php?page=$1&id=$2&$3",

                    "^/([^/\.]+)/([^/]+)/?$" => "index.php?page=$1&id=$2",

                    "^/([^/\.]+)/([^/]+)/([^/]+)/?$" => "index.php?page=$1&id=$2&subpage=$3"

            )

    }

    $SERVER["socket"] == "192.168.0.199:9088" {

            server.document-root = "/mnt/user/apps/phpMyAdmin/"

    }

    webserver is pointing to /mnt/user/apps/nZEDb/www  on port 9000

    Any ideal where I am making my mistake?

  7. Has anyone gotten nZEDb to run on their unraid box.  I keep getting stuck at the creating DB page.  i am getting the errorError inserting: (SQLSTATE[08S01]: Communication link failure: 1153 Got a packet bigger than 'max_allowed_packet' bytes). a quick loo up of the error tells me to raise the value.  I have raised it but still getting the same error message..

  8. When i go to the Newznab plugin the system seems to hang a while to load.  I get

     

    sh: etc/rc/rc.newznab: No such file or directory

     

    It finally loads but take about 20 seconds.  Is any one else seeing this?

     

    I am getting this error on the unraid terminal whenever I click on the newznab icon on the Settings page.  It seems like the path etc/rc/rc.newznab needs a leading "/" so that bash can find rc.newznab (because the file is physically there).  I attempted to look for this line in code and add a slash but to no avail.  I'm not even sure this is a problem.  Anyone have any light to shed on this issue? 

     

    When clicking on the newznab icon in unraid the web interface locks any clues where to look or what I need to do to resolve?

     

    thanks

  9. Why is /var/log full?

     

    Enter "ls -la /var/log"

    [/quotedrwxrwxrwx 11 root root    300 2013-09-16 05:51 ./

    drwxr-xr-x 15 root root      0 2011-06-02 04:51 ../

    -rw-rw-rw-  1 root root      0 2013-09-16 05:45 cron

    -rw-rw-rw-  1 root root  43332 2013-09-16 05:45 dmesg

    lrwxrwxrwx  1 root root    19 2013-09-16 05:51 images -> /boot/unmenu/images/

    drwxrwxrwx  2 root root    80 2013-09-18 04:40 lighttpd/

    drwxr-xr-x  2 root root  1360 2013-09-16 05:51 packages/

    drwxr-xr-x  2 root root    340 2013-09-16 05:51 plugins/

    drwxr-xr-x  2 root root    100 2013-09-16 05:51 removed_packages/

    drwxr-xr-x  2 root root    80 2013-09-16 05:51 removed_scripts/

    drwxrwxrwx  2 root root    100 2013-09-18 00:00 sa/

    drwxrwxrwx  3 root root    100 2013-09-16 05:51 samba/

    drwxr-xr-x  2 root root    820 2013-09-16 05:51 scripts/

    drwxrwxrwx  3 root root    60 2013-08-28 13:46 setup/

    -rw-r--r--  1 root root 585728 2013-09-18 04:47 syslog

  10. du / -shx
    

    and

    df -haT
    

    ?

    du / -shx  1.1G /

     

     

    Filesystem    Type    Size  Used Avail Use% Mounted on

    proc          proc      0    0    0  -  /proc

    sysfs        sysfs      0    0    0  -  /sys

    tmpfs        tmpfs    128M  128M    0 100% /var/log

    /dev/sda1    vfat    7.3G  842M  6.5G  12% /boot

    /dev/md1  reiserfs    1.9T  1.9T  12G 100% /mnt/disk1

    /dev/md2  reiserfs    1.4T  1.2T  229G  84% /mnt/disk2

    /dev/md3  reiserfs    1.4T  1.2T  228G  84% /mnt/disk3

    /dev/md4  reiserfs    1.4T  1.1T  284G  80% /mnt/disk4

    /dev/md5  reiserfs    699G  257G  443G  37% /mnt/disk5

    /dev/md6  reiserfs    699G  275G  424G  40% /mnt/disk6

    /dev/md7  reiserfs    699G  346G  354G  50% /mnt/disk7

    /dev/sdb1 reiserfs    932G  225G  707G  25% /mnt/cache

    shfs    fuse.shfs    8.0T  6.1T  2.0T  76% /mnt/user0

    shfs    fuse.shfs    8.9T  6.3T  2.7T  71% /mnt/user

     

  11. Enter "free -lm" when it happens and post the output.

                        total      used      free    shared    buffers    cached

    Mem:        16217      15477        740          0        281      14353

    Low:              752        613        138

    High:        15465      14863        601

    -/+ buffers/cache:        842      15375

    Swap:        3071          1      3070

     

    thnks

  12. Thanks to everyone who helps support unRaid... I don't know anything about the guy behind flexraid and I have not even looked at the post which prompted this thread - I don't have time for it.  I always give everyone the benefit of the doubt and if he, or any other company comes along, trying to produce storage solutions, I say, "more power to them".  It's a tough business and a lot of work.  I've always said unRaid is not for every application, but for media storage, and other classes of storage, it's really nice.  I'm sure flexraid has it's own niche.  I also regret the seemingly slow-as-molasses ongoing development.  I've been at this now almost 8 years, and during that time there have been all kinds of ups and downs, both professionally and personally.  But rest assured that I'm working very hard on releasing new code and bug fixes.

     

    Comments like these are the exact reason I am glad I went with unRaid so long ago. 

     

  13. When i go to the Newznab plugin the system seems to hang a while to load.  I get

     

    sh: etc/rc/rc.newznab: No such file or directory

     

    It finally loads but take about 20 seconds.  Is any one else seeing this?