ich kann nicht mein forum installieren

phpBB 3.0 hat sein "End of Life" erreicht. Eine Neu-Installation wird nicht mehr unterstützt.
Gesperrt
Benutzeravatar
Vino
Mitglied
Beiträge: 123
Registriert: 21.06.2007 11:22

ich kann nicht mein forum installieren

Beitrag von Vino »

hallo ,

ich wollte phpbb3 RC5 installieren jedoch bekomm ich eine fehlermeldung und kann nicht installieren
SecureSSI: The script (/usr/export/www/hosting/wolkenland/forum/install/index.php) has tried to access /usr/local/sbin/mogrify outside of your home directory.
For security reasons this is not allowed!


SecureSSI: The script (/usr/export/www/hosting/wolkenland/forum/install/index.php) has tried to access /usr/local/bin/mogrify outside of your home directory.
For security reasons this is not allowed!

SecureSSI: The script (/usr/export/www/hosting/wolkenland/forum/install/index.php) has tried to access /usr/bin/mogrify outside of your home directory.
For security reasons this is not allowed!


und so weiter ......

bitte um hilfe :cry:
Benutzeravatar
Dr.Death
Moderator
Moderator
Beiträge: 17473
Registriert: 23.04.2003 08:22
Wohnort: Xanten
Kontaktdaten:

Beitrag von Dr.Death »

Hi,

der Installer versucht auf die gefundene IMAGEMAGICK ( mogrify ) Version außerhalb Deines WebSpaces zuzugreifen.

Entweder lässt Du das Feld für ImageMagick leer oder kontaktierst Deinen Hoster. ( Warum ImageMagick auf dem Server bereitstellen aber nicht nutzen dürfen? )

BTW: Installiere bitte gleich die RC7 ;-)
Benutzeravatar
Vino
Mitglied
Beiträge: 123
Registriert: 21.06.2007 11:22

Beitrag von Vino »

bei rc7 kommt die gleiche fehlermeldung :cry:
versteh das irgendwie nicht ImageMagick leer lassen...
Benutzeravatar
bantu
Server-Team
Beiträge: 7311
Registriert: 25.04.2006 16:12
Wohnort: Karlsruhe

Beitrag von bantu »

Hallo Vino,

bricht das Script denn ab und zeigt sonst nicht mehr an, oder könnte man die Installation fortführen?
Wenn fortführen nicht möglich ist, bearbeite diesen Code-Abschnitt in der Datei ./install/install_install.php mit einem Texteditor.

Code: Alles auswählen

		$exe = (DIRECTORY_SEPARATOR == '\\') ? '.exe' : '';

		$magic_home = getenv('MAGICK_HOME');
		$img_imagick = '';
		if (empty($magic_home))
		{
			$locations = array('C:/WINDOWS/', 'C:/WINNT/', 'C:/WINDOWS/SYSTEM/', 'C:/WINNT/SYSTEM/', 'C:/WINDOWS/SYSTEM32/', 'C:/WINNT/SYSTEM32/', '/usr/bin/', '/usr/sbin/', '/usr/local/bin/', '/usr/local/sbin/', '/opt/', '/usr/imagemagick/', '/usr/bin/imagemagick/');
			$path_locations = str_replace('\\', '/', (explode(($exe) ? ';' : ':', getenv('PATH'))));

			$locations = array_merge($path_locations, $locations);
			foreach ($locations as $location)
			{
				// The path might not end properly, fudge it
				if (substr($location, -1, 1) !== '/')
				{
					$location .= '/';
				}

				if (@is_readable($location . 'mogrify' . $exe) && @filesize($location . 'mogrify' . $exe) > 3000)
				{
					$img_imagick = str_replace('\\', '/', $location);
					continue;
				}
			}
		}
		else
		{
			$img_imagick = str_replace('\\', '/', $magic_home);
		}
Füge davor ein /* ein und danach ein */ ein.

Gruß,
bantu.
Powered by Coffee
Gesperrt

Zurück zu „[3.0.x] Installation, Update und Konvertierung“