MyBB Community Forums

Full Version: [Solved!]SecureSSI Warnings on the top of Forum
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Sry for my bad english, i'm from germany.
After the install, my Forum was just blank. I solved it by turning off Gzip.
http://marc12345.ma.funpic.de/forum/index.php

But now on the top is this warning (in german):



SecureSSI: Das Script (/usr/export/www/vhosts/funnetwork/hosting/marc12345/forum/index.php) hat versucht, ausserhalb von seinem Userverzeichniss, auf die Datei /proc/loadavg zuzugreifen.
Aus Sicherheitsgruenden ist dies nicht erlaubt!

SecureSSI: Das Script (/usr/export/www/vhosts/funnetwork/hosting/marc12345/forum/index.php) hat versucht, ausserhalb von seinem Userverzeichniss, auf die Datei /proc/loadavg zuzugreifen.
Aus Sicherheitsgruenden ist dies nicht erlaubt! 

I don't know how to remove it. I sent the link to many persons and all see that message.

Thanks for Replies

Edit:
I solved the problem by editing the inc/functions.php
can be closed
For future reference, the error translated to English approximates:
Quote:
SecureSSI: The script (/ usr/export/www/vhosts/funnetwork/hosting/marc12345/forum/index.php) has tried outside of his Userverzeichniss on the file / proc / loadavg access.
For security reasons, this is not allowed!

SecureSSI: The script (/ usr/export/www/vhosts/funnetwork/hosting/marc12345/forum/index.php) has tried outside of his Userverzeichniss on the file / proc / loadavg access.
For security reasons, this is not allowed!

The solution is to edit inc/functions.php, find and remove:
		if(@file_exists("/proc/loadavg") && $load = @file_get_contents("/proc/loadavg"))
		{
			$serverload = explode(" ", $load);
			$serverload[0] = round($serverload[0], 4);
		}