"SimpleFeatures" - WebServer Plugin [SUPPORT]


Recommended Posts

  • Replies 307
  • Created
  • Last Reply

Top Posters In This Topic

hello,

 

i have got an error on my webserver and i can't find a solution

when i want to open a file: $file = fopen ("http://www.php.net/", "r");

 

i get this error:

PHP Warning: fopen() [function.fopen]: Unable to find the wrapper "http" - did you forget to enable it when you configured PHP?

 

 

i cannot find the solution, can somebody help me pls?

i use the latest simplefeatures-version

 

it's the same problem like this one: https://bugs.php.net/bug.php?id=26851

Link to comment

Hi all

 

I am running unraid 5 rc15a and seem to be having issues with virtual box php. I cannot seem to get php to run unless I have phpvirtualbox in a folder in the boot folder, when it is in the boot folder I can log inand all is good.

 

But I want to have this installed on my cache drive, what is the easiest way to go about this? As every way I have tried loading the files and directing the webserver boot directory to the cache drive it never seems to load, I only get the index.html file to appear.

 

Any help would be fantastic.

 

Lee

Link to comment
  • 3 weeks later...

Can anyone shed some light on where I'm going wrong with the webserver. The php log throws up:

 

/usr/bin/tail -n 1000 -f /var/log/lighttpd/php.errors.log

[23-Jul-2013 17:04:09 UTC] PHP Notice: Undefined variable: string in /usr/local/emhttp/plugins/dropbox/dropboxctl.php on line 111

[23-Jul-2013 17:04:29 UTC] PHP Notice: Undefined variable: string in /usr/local/emhttp/plugins/sf_itunesserver/itunesctl.php on line 95

[23-Jul-2013 17:04:29 UTC] PHP Notice: Undefined variable: results in /usr/local/emhttp/plugins/sf_itunesserver/itunesctl.php on line 126

[23-Jul-2013 17:04:29 UTC] PHP Notice: Undefined variable: string in /usr/local/emhttp/plugins/sf_itunesserver/itunesctl.php on line 95

[23-Jul-2013 17:04:29 UTC] PHP Notice: Undefined variable: results in /usr/local/emhttp/plugins/sf_itunesserver/itunesctl.php on line 126

[23-Jul-2013 17:05:30 UTC] PHP Notice: Undefined variable: script in /usr/local/emhttp/update_web.php on line 40

[23-Jul-2013 17:05:30 UTC] PHP Notice: Undefined variable: config in /usr/local/emhttp/update_web.php on line 41

[23-Jul-2013 17:05:30 UTC] PHP Notice: Undefined variable: setup in /usr/local/emhttp/update_web.php on line 41

[23-Jul-2013 17:05:30 UTC] PHP Warning: file_put_contents(): Filename cannot be empty in /usr/local/emhttp/update_web.php on line 41

[23-Jul-2013 17:05:30 UTC] PHP Notice: Undefined variable: enable in /usr/local/emhttp/update_web.php on line 42

[23-Jul-2013 17:06:03 UTC] PHP Notice: Undefined variable: script in /usr/local/emhttp/update_web.php on line 40

[23-Jul-2013 17:06:03 UTC] PHP Notice: Undefined variable: config in /usr/local/emhttp/update_web.php on line 41

[23-Jul-2013 17:06:03 UTC] PHP Notice: Undefined variable: setup in /usr/local/emhttp/update_web.php on line 41

[23-Jul-2013 17:06:03 UTC] PHP Warning: file_put_contents(): Filename cannot be empty in /usr/local/emhttp/update_web.php on line 41

[23-Jul-2013 17:06:03 UTC] PHP Notice: Undefined variable: enable in /usr/local/emhttp/update_web.php on line 42

 

I have set the location to  the cache drive. Running rc13a. I have removed unmenu and any packages I have installed, but the webserver remains stopped.

Link to comment
  • 3 weeks later...

You can mate; you need to add the lines into one of the lighttpd config files in the /boot/config/simplefeatures directory.... I'm away from my server so can't remember which one but of you open one to edit it says " these lines will be added to the config file and remain after reboot"

 

I have asked if the option for multiple vhosts can be added to the webgui page but didn't get a response :/

 

I've got it working to have piwigo and ajaxplorer running on different ports!

 

Alex

Link to comment

hello,

 

i have got an error on my webserver and i can't find a solution

when i want to open a file: $file = fopen ("http://www.php.net/", "r");

 

i get this error:

PHP Warning: fopen() [function.fopen]: Unable to find the wrapper "http" - did you forget to enable it when you configured PHP?

 

 

i cannot find the solution, can somebody help me pls?

i use the latest simplefeatures-version

 

it's the same problem like this one: https://bugs.php.net/bug.php?id=26851

 

Was there any resolution to this? I'm also getting these (plus other) error messages after installing the web server plugin.

 

Thanks!

 

Link to comment
  • 2 weeks later...

When opening the webserver config page it displays

 

Warning: parse_ini_file(/var/local/emhttp/simpleFeatures.web.server.ini): failed to open stream: No such file or directory in /usr/local/emhttp/plugins/simpleFeatures.webServer/WEBsettings.php on line 11

 

how can i edit this file? no access to usr

Link to comment

I am running the simplefeatures web server plugin for my NEWZNAB server.

I wanted to add "virtual hosts" to this so I could run the php front end to virtual box.

 

I decided to run my newznab host on port 85 and my phpvbox on port 84. For those who are curious, here's what you add to the lighthttp.cfg in /boot/config/plugins/simplefeatures/  :

 

This code sets up the "host" for NEWZNAB, as well as the particular URL re-writing rules that the code requires. Originally this was a global configuration, and I couldn't figure out why my PHPVBOX wasn't working! It was because the URL-rewriting was effing things up :)

 

 

# User customizations
# Add your own settings here. These won't get overwritten upon reboot
#
$SERVER["socket"] == ":85" {
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"
)
}

 

This code sets up the "host" for PHPVBOX

 

$SERVER["socket"] == ":84" {
  server.document-root = "/mnt/extra/phpvbox/"
}

 

This is just an example of how to have yet another "host" running on a different port. This way you can house different sites.

 

$SERVER["socket"] == ":83" {
  server.document-root = "/mnt/extra/sandbox/"
}

 

It might not be perfect, but it's working for me :)

Link to comment

@speeding_ant

Are there plans to make this plugin independent of simplefeatures for the newly released 5.0 final? Until now I used it to access vboxweb, phpmyadmin and the proftp config editor of my own plugin, so I really need a replacement if I want to switch to 5.0 final.

 

If there are no plans to make it independant, are there other plugins that provide the same functionality, work with 5.0 final and are as easy to install?

 

Thank you really much for your work on simplefeatures!  I really hope the plugins get modded to work with 5.0.

Link to comment

I am attempting a fresh install of Simplefeatures on 5.0 Final and I get the following error in my web gui.

 

 

Warning: strftime(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected 'America/Chicago' for 'CDT/-5.0/DST' instead in /usr/local/emhttp/plugins/webGui/template.php on line 41 Thu Aug 29 19:38:05 2013 CDT

 

 

I did some research, found some suggestions for a fix at

http://lime-technology.com/forum/index.php?topic=19508.msg232982#msg232982

 

But still getting that error, I then noticed when I manually tried to reinstall the plugin it is complaining of being unable to download SQLlite. I tried copy the original plugin file as well and still get the same error.

 

ile /boot/packages/sqlite-3.7.14.1-i486-1.txz: downloading from http://slackware.cs.utah.edu/pub/slackware/slackware-current/slackware/ap/sqlite-3.7.14.1-i486-1.txz ... http://slackware.cs.utah.edu/pub/slackware/slackware-current/slackware/ap/sqlite-3.7.14.1-i486-1.txz:

2013-09-03 14:39:13 ERROR 404: Not Found.

 

 

Does the installer need to be updated with some new file locations?

Link to comment

I am attempting a fresh install of Simplefeatures on 5.0 Final and I get the following error in my web gui.

 

 

Warning: strftime(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected 'America/Chicago' for 'CDT/-5.0/DST' instead in /usr/local/emhttp/plugins/webGui/template.php on line 41 Thu Aug 29 19:38:05 2013 CDT

 

 

I did some research, found some suggestions for a fix at

http://lime-technology.com/forum/index.php?topic=19508.msg232982#msg232982

 

But still getting that error, I then noticed when I manually tried to reinstall the plugin it is complaining of being unable to download SQLlite. I tried copy the original plugin file as well and still get the same error.

 

ile /boot/packages/sqlite-3.7.14.1-i486-1.txz: downloading from http://slackware.cs.utah.edu/pub/slackware/slackware-current/slackware/ap/sqlite-3.7.14.1-i486-1.txz ... http://slackware.cs.utah.edu/pub/slackware/slackware-current/slackware/ap/sqlite-3.7.14.1-i486-1.txz:

2013-09-03 14:39:13 ERROR 404: Not Found.

 

 

Does the installer need to be updated with some new file locations?

 

3.7.17 from Slackware-current or Slackware 14 may be required.

 

EDIT:

 

edit the webserver.plg with notepad ++

 

Ctrl + H and find/replace the following

 

sqlite-3.7.14.1-i486-1.txz replace with sqlite-3.7.17-i486-1.txz (should be 3 instances)

 

and

 

433769b1cd27b59667a34295184356e3 replace with 60f75216d98dc6910f74eeef232421d7 (should be 1 instance)

Link to comment

@speeding_ant

Are there plans to make this plugin independent of simplefeatures for the newly released 5.0 final? Until now I used it to access vboxweb, phpmyadmin and the proftp config editor of my own plugin, so I really need a replacement if I want to switch to 5.0 final.

 

If there are no plans to make it independant, are there other plugins that provide the same functionality, work with 5.0 final and are as easy to install?

 

Thank you really much for your work on simplefeatures!  I really hope the plugins get modded to work with 5.0.

Joining the request - since simpleFeatures isn't compatible with 5.0 final, I'm using the ssmtp from unRAID (which is using openssl-0.9.8), so even if i install only the core + webserver, the openssl-1.0.1 will break my unraid :-(

Link to comment

Just update ssmtp to use the latest version of OpenSSL and the correct md5 checksum

Sorry, but haven't edited unraid packages yet, just plugins.

Can you post a quick guide how to do it ?

Will it survive an update of unMenu ?

10x

1. Open the ssmtp .conf file in the unmenu directory of the flash drive with a unix compatible text editor.

2. Find all references to the outdated openssl file and change them to the correct file.

3. Calculate the md5 of the correct file, and change the value to the new one.

4. Add #AUTO_UPDATE=NO to the .conf file to make it stick around during unMenu updates.

 

I recommend you read this.

Link to comment

I have running web server for a long time , now i can't get it to run  :(  i see this , what is wrong ?

 

usr/bin/tail -n 1000 -f /var/log/lighttpd/php.errors.log
[10-Sep-2013 16:08:30 UTC] PHP Notice: Undefined variable: string in /usr/local/emhttp/plugins/apcupsd/apcupsdctl.php on line 140
[10-Sep-2013 16:09:21 UTC] PHP Notice: Undefined variable: string in /usr/local/emhttp/plugins/shellinaboxd/shellinaboxdctl.php on line 85
[10-Sep-2013 16:11:01 UTC] PHP Notice: Undefined offset: 1 in /usr/local/emhttp/plugins/webGui/include/app.php on line 50

[10-Sep-2013 16:11:01 UTC] PHP Notice: Undefined offset: 1 in /usr/local/emhttp/plugins/webGui/include/app.php on line 50
[10-Sep-2013 16:11:01 UTC] PHP Notice: Undefined offset: 1 in /usr/local/emhttp/plugins/webGui/include/app.php on line 50
[10-Sep-2013 16:11:01 UTC] PHP Notice: Undefined offset: 1 in /usr/local/emhttp/plugins/webGui/include/app.php on line 50
[10-Sep-2013 16:11:01 UTC] PHP Notice: Undefined offset: 1 in /usr/local/emhttp/plugins/webGui/include/app.php on line 50
[10-Sep-2013 16:11:01 UTC] PHP Notice: Undefined offset: 1 in /usr/local/emhttp/plugins/webGui/include/app.php on line 50
[10-Sep-2013 16:11:01 UTC] PHP Notice: Undefined offset: 1 in /usr/local/emhttp/plugins/webGui/include/app.php on line 50
[10-Sep-2013 16:11:01 UTC] PHP Notice: Undefined offset: 1 in /usr/local/emhttp/plugins/webGui/include/app.php on line 50
[10-Sep-2013 16:11:01 UTC] PHP Notice: Undefined offset: 1 in /usr/local/emhttp/plugins/webGui/include/app.php on line 50
[10-Sep-2013 16:11:01 UTC] PHP Notice: Undefined offset: 1 in /usr/local/emhttp/plugins/webGui/include/app.php on line 50
[10-Sep-2013 16:11:01 UTC] PHP Notice: Undefined offset: 1 in /usr/local/emhttp/plugins/webGui/include/app.php on line 50
[10-Sep-2013 16:11:01 UTC] PHP Notice: Undefined offset: 1 in /usr/local/emhttp/plugins/webGui/include/app.php on line 50
[10-Sep-2013 16:11:01 UTC] PHP Notice: Undefined offset: 1 in /usr/local/emhttp/plugins/webGui/include/app.php on line 50
[10-Sep-2013 16:11:01 UTC] PHP Notice: Undefined offset: 1 in /usr/local/emhttp/plugins/webGui/include/app.php on line 50
[10-Sep-2013 16:11:01 UTC] PHP Notice: Undefined offset: 1 in /usr/local/emhttp/plugins/webGui/include/app.php on line 50
[10-Sep-2013 16:11:01 UTC] PHP Notice: Undefined offset: 1 in /usr/local/emhttp/plugins/webGui/include/app.php on line 50
[10-Sep-2013 16:11:01 UTC] PHP Notice: Undefined offset: 1 in /usr/local/emhttp/plugins/webGui/include/app.php on line 50
[10-Sep-2013 16:11:01 UTC] PHP Notice: Undefined offset: 1 in /usr/local/emhttp/plugins/webGui/include/app.php on line 50
[10-Sep-2013 16:11:01 UTC] PHP Notice: Undefined offset: 1 in /usr/local/emhttp/plugins/webGui/include/app.php on line 50
[10-Sep-2013 16:11:01 UTC] PHP Notice: Undefined offset: 1 in /usr/local/emhttp/plugins/webGui/include/app.php on line 50
[10-Sep-2013 16:11:01 UTC] PHP Notice: Undefined offset: 1 in /usr/local/emhttp/plugins/webGui/include/app.php on line 50
[10-Sep-2013 16:11:01 UTC] PHP Notice: Undefined offset: 1 in /usr/local/emhttp/plugins/webGui/include/app.php on line 50
[10-Sep-2013 16:11:01 UTC] PHP Notice: Undefined offset: 1 in /usr/local/emhttp/plugins/webGui/include/app.php on line 50
[10-Sep-2013 16:11:01 UTC] PHP Notice: Undefined offset: 1 in /usr/local/emhttp/plugins/webGui/include/app.php on line 50
[10-Sep-2013 16:11:01 UTC] PHP Notice: Undefined offset: 1 in /usr/local/emhttp/plugins/webGui/include/app.php on line 50
[10-Sep-2013 16:11:01 UTC] PHP Notice: Undefined offset: 1 in /usr/local/emhttp/plugins/webGui/include/app.php on line 50
[10-Sep-2013 16:11:01 UTC] PHP Notice: Undefined offset: 1 in /usr/local/emhttp/plugins/webGui/include/app.php on line 50
[10-Sep-2013 16:11:01 UTC] PHP Notice: Undefined offset: 1 in /usr/local/emhttp/plugins/webGui/include/app.php on line 50
[10-Sep-2013 16:11:01 UTC] PHP Notice: Undefined offset: 1 in /usr/local/emhttp/plugins/webGui/include/app.php on line 50
[10-Sep-2013 16:11:01 UTC] PHP Notice: Undefined offset: 1 in /usr/local/emhttp/plugins/webGui/include/app.php on line 50
[10-Sep-2013 16:11:01 UTC] PHP Notice: Undefined offset: 1 in /usr/local/emhttp/plugins/webGui/include/app.php on line 50
[10-Sep-2013 16:11:01 UTC] PHP Notice: Undefined offset: 1 in /usr/local/emhttp/plugins/webGui/include/app.php on line 50
[10-Sep-2013 16:11:01 UTC] PHP Notice: Undefined offset: 1 in /usr/local/emhttp/plugins/webGui/include/app.php on line 50
[10-Sep-2013 16:11:01 UTC] PHP Notice: Undefined offset: 1 in /usr/local/emhttp/plugins/webGui/include/app.php on line 50
[10-Sep-2013 16:11:01 UTC] PHP Notice: Undefined offset: 1 in /usr/local/emhttp/plugins/webGui/include/app.php on line 50
[10-Sep-2013 16:11:01 UTC] PHP Notice: Undefined offset: 1 in /usr/local/emhttp/plugins/webGui/include/app.php on line 50
[10-Sep-2013 16:11:01 UTC] PHP Notice: Undefined offset: 1 in /usr/local/emhttp/plugins/webGui/include/app.php on line 50
[10-Sep-2013 16:11:01 UTC] PHP Notice: Undefined index: Menu in /usr/local/emhttp/plugins/webGui/include/app.php on line 67
[10-Sep-2013 16:11:01 UTC] PHP Notice: Undefined index: Menu in /usr/local/emhttp/plugins/webGui/include/app.php on line 67
[10-Sep-2013 16:11:01 UTC] PHP Notice: Undefined index: Menu in /usr/local/emhttp/plugins/webGui/include/app.php on line 67
[10-Sep-2013 16:11:01 UTC] PHP Notice: Undefined index: Type in /usr/local/emhttp/plugins/webGui/include/myPage_content.php on line 35
[10-Sep-2013 16:11:01 UTC] PHP Notice: Undefined variable: display in /usr/local/emhttp/plugins/webGui/include/device_list.php on line 336
[10-Sep-2013 16:11:01 UTC] PHP Notice: Undefined variable: display in /usr/local/emhttp/plugins/webGui/include/device_list.php on line 336
[10-Sep-2013 16:11:01 UTC] PHP Notice: Undefined index: Type in /usr/local/emhttp/plugins/webGui/include/myPage_content.php on line 35
[10-Sep-2013 16:11:01 UTC] PHP Notice: Undefined variable: display in /usr/local/emhttp/plugins/webGui/include/device_list.php on line 336
[10-Sep-2013 16:11:01 UTC] PHP Notice: Undefined variable: display in /usr/local/emhttp/plugins/webGui/include/device_list.php on line 336

[10-Sep-2013 16:12:12 UTC] PHP Notice: Undefined offset: 1 in /usr/local/emhttp/plugins/webGui/include/app.php on line 50
[10-Sep-2013 16:12:12 UTC] PHP Notice: Undefined offset: 1 in /usr/local/emhttp/plugins/webGui/include/app.php on line 50
[10-Sep-2013 16:12:12 UTC] PHP Notice: Undefined offset: 1 in /usr/local/emhttp/plugins/webGui/include/app.php on line 50
[10-Sep-2013 16:12:12 UTC] PHP Notice: Undefined offset: 1 in /usr/local/emhttp/plugins/webGui/include/app.php on line 50
[10-Sep-2013 16:12:12 UTC] PHP Notice: Undefined offset: 1 in /usr/local/emhttp/plugins/webGui/include/app.php on line 50
[10-Sep-2013 16:12:12 UTC] PHP Notice: Undefined offset: 1 in /usr/local/emhttp/plugins/webGui/include/app.php on line 50
[10-Sep-2013 16:12:12 UTC] PHP Notice: Undefined offset: 1 in /usr/local/emhttp/plugins/webGui/include/app.php on line 50
[10-Sep-2013 16:12:12 UTC] PHP Notice: Undefined offset: 1 in /usr/local/emhttp/plugins/webGui/include/app.php on line 50
[10-Sep-2013 16:12:12 UTC] PHP Notice: Undefined offset: 1 in /usr/local/emhttp/plugins/webGui/include/app.php on line 50
[10-Sep-2013 16:12:12 UTC] PHP Notice: Undefined offset: 1 in /usr/local/emhttp/plugins/webGui/include/app.php on line 50
[10-Sep-2013 16:12:12 UTC] PHP Notice: Undefined offset: 1 in /usr/local/emhttp/plugins/webGui/include/app.php on line 50
[10-Sep-2013 16:12:12 UTC] PHP Notice: Undefined offset: 1 in /usr/local/emhttp/plugins/webGui/include/app.php on line 50
[10-Sep-2013 16:12:12 UTC] PHP Notice: Undefined offset: 1 in /usr/local/emhttp/plugins/webGui/include/app.php on line 50
[10-Sep-2013 16:12:12 UTC] PHP Notice: Undefined offset: 1 in /usr/local/emhttp/plugins/webGui/include/app.php on line 50
[10-Sep-2013 16:12:12 UTC] PHP Notice: Undefined offset: 1 in /usr/local/emhttp/plugins/webGui/include/app.php on line 50
[10-Sep-2013 16:12:12 UTC] PHP Notice: Undefined offset: 1 in /usr/local/emhttp/plugins/webGui/include/app.php on line 50
[10-Sep-2013 16:12:12 UTC] PHP Notice: Undefined offset: 1 in /usr/local/emhttp/plugins/webGui/include/app.php on line 50
[10-Sep-2013 16:12:12 UTC] PHP Notice: Undefined offset: 1 in /usr/local/emhttp/plugins/webGui/include/app.php on line 50
[10-Sep-2013 16:12:12 UTC] PHP Notice: Undefined offset: 1 in /usr/local/emhttp/plugins/webGui/include/app.php on line 50
[10-Sep-2013 16:12:12 UTC] PHP Notice: Undefined offset: 1 in /usr/local/emhttp/plugins/webGui/include/app.php on line 50
[10-Sep-2013 16:12:12 UTC] PHP Notice: Undefined offset: 1 in /usr/local/emhttp/plugins/webGui/include/app.php on line 50
[10-Sep-2013 16:12:12 UTC] PHP Notice: Undefined offset: 1 in /usr/local/emhttp/plugins/webGui/include/app.php on line 50
[10-Sep-2013 16:12:12 UTC] PHP Notice: Undefined offset: 1 in /usr/local/emhttp/plugins/webGui/include/app.php on line 50

[10-Sep-2013 16:12:12 UTC] PHP Notice: Undefined index: Menu in /usr/local/emhttp/plugins/webGui/include/app.php on line 67
[10-Sep-2013 16:12:12 UTC] PHP Notice: Undefined index: Menu in /usr/local/emhttp/plugins/webGui/include/app.php on line 67
[10-Sep-2013 16:12:12 UTC] PHP Notice: Undefined index: Icon in /usr/local/emhttp/plugins/webGui/include/app.php on line 93
[10-Sep-2013 16:12:12 UTC] PHP Notice: Undefined index: Menu in /usr/local/emhttp/plugins/webGui/include/app.php on line 67
[10-Sep-2013 16:12:12 UTC] PHP Notice: Undefined index: Icon in /usr/local/emhttp/plugins/webGui/include/app.php on line 93
[10-Sep-2013 16:12:12 UTC] PHP Notice: Undefined index: Menu in /usr/local/emhttp/plugins/webGui/include/app.php on line 67
[10-Sep-2013 16:12:13 UTC] PHP Notice: Undefined offset: 1 in /usr/local/emhttp/plugins/webGui/include/app.php on line 50
[10-Sep-2013 16:12:13 UTC] PHP Notice: Undefined offset: 1 in /usr/local/emhttp/plugins/webGui/include/app.php on line 50
[10-Sep-2013 16:12:13 UTC] PHP Notice: Undefined offset: 1 in /usr/local/emhttp/plugins/webGui/include/app.php on line 50
[10-Sep-2013 16:12:13 UTC] PHP Notice: Undefined offset: 1 in /usr/local/emhttp/plugins/webGui/include/app.php on line 50
[10-Sep-2013 16:12:13 UTC] PHP Notice: Undefined offset: 1 in /usr/local/emhttp/plugins/webGui/include/app.php on line 50
[10-Sep-2013 16:12:13 UTC] PHP Notice: Undefined offset: 1 in /usr/local/emhttp/plugins/webGui/include/app.php on line 50
[10-Sep-2013 16:12:13 UTC] PHP Notice: Undefined offset: 1 in /usr/local/emhttp/plugins/webGui/include/app.php on line 50
[10-Sep-2013 16:12:13 UTC] PHP Notice: Undefined offset: 1 in /usr/local/emhttp/plugins/webGui/include/app.php on line 50
[10-Sep-2013 16:12:13 UTC] PHP Notice: Undefined offset: 1 in /usr/local/emhttp/plugins/webGui/include/app.php on line 50
[10-Sep-2013 16:12:13 UTC] PHP Notice: Undefined offset: 1 in /usr/local/emhttp/plugins/webGui/include/app.php on line 50
[10-Sep-2013 16:12:13 UTC] PHP Notice: Undefined offset: 1 in /usr/local/emhttp/plugins/webGui/include/app.php on line 50
[10-Sep-2013 16:12:13 UTC] PHP Notice: Undefined offset: 1 in /usr/local/emhttp/plugins/webGui/include/app.php on line 50
[10-Sep-2013 16:12:13 UTC] PHP Notice: Undefined offset: 1 in /usr/local/emhttp/plugins/webGui/include/app.php on line 50
[10-Sep-2013 16:12:13 UTC] PHP Notice: Undefined offset: 1 in /usr/local/emhttp/plugins/webGui/include/app.php on line 50
[10-Sep-2013 16:12:13 UTC] PHP Notice: Undefined offset: 1 in /usr/local/emhttp/plugins/webGui/include/app.php on line 50
[10-Sep-2013 16:12:13 UTC] PHP Notice: Undefined offset: 1 in /usr/local/emhttp/plugins/webGui/include/app.php on line 50
[10-Sep-2013 16:12:13 UTC] PHP Notice: Undefined offset: 1 in /usr/local/emhttp/plugins/webGui/include/app.php on line 50
[10-Sep-2013 16:12:13 UTC] PHP Notice: Undefined offset: 1 in /usr/local/emhttp/plugins/webGui/include/app.php on line 50
[10-Sep-2013 16:12:13 UTC] PHP Notice: Undefined offset: 1 in /usr/local/emhttp/plugins/webGui/include/app.php on line 50
[10-Sep-2013 16:12:13 UTC] PHP Notice: Undefined offset: 1 in /usr/local/emhttp/plugins/webGui/include/app.php on line 50
[10-Sep-2013 16:12:13 UTC] PHP Notice: Undefined offset: 1 in /usr/local/emhttp/plugins/webGui/include/app.php on line 50
[10-Sep-2013 16:12:13 UTC] PHP Notice: Undefined offset: 1 in /usr/local/emhttp/plugins/webGui/include/app.php on line 50

[10-Sep-2013 16:12:13 UTC] PHP Notice: Undefined index: Menu in /usr/local/emhttp/plugins/webGui/include/app.php on line 67
[10-Sep-2013 16:12:13 UTC] PHP Notice: Undefined index: Menu in /usr/local/emhttp/plugins/webGui/include/app.php on line 67
[10-Sep-2013 16:12:13 UTC] PHP Notice: Undefined variable: unraid in /usr/local/emhttp/plugins/webGui/include/myPage_content.php(61) : eval()'d code on line 12
[10-Sep-2013 16:12:13 UTC] PHP Warning: parse_ini_file(/simpleFeatures.web.server.ini): failed to open stream: No such file or directory in /usr/local/emhttp/plugins/webGui/include/myPage_content.php(61) : eval()'d code on line 12
[10-Sep-2013 16:12:13 UTC] PHP Notice: Undefined variable: sf in /usr/local/emhttp/plugins/webGui/include/myPage_content.php(61) : eval()'d code on line 21
[10-Sep-2013 16:12:13 UTC] PHP Notice: Undefined variable: sf in /usr/local/emhttp/plugins/webGui/include/myPage_content.php(61) : eval()'d code on line 105
[10-Sep-2013 16:12:13 UTC] PHP Notice: Undefined variable: sf in /usr/local/emhttp/plugins/webGui/include/myPage_content.php(61) : eval()'d code on line 105

 

By mistake I have the new GUI installed, removed it, now all OK again

 

 

 

We need a standalone webserver plugin!  ;)

Link to comment

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.