Seite 1 von 1

ich kann nicht mein forum installieren

Verfasst: 16.10.2007 13:51
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:

Verfasst: 16.10.2007 14:26
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 ;-)

Verfasst: 16.10.2007 15:35
von Vino
bei rc7 kommt die gleiche fehlermeldung :cry:
versteh das irgendwie nicht ImageMagick leer lassen...

Verfasst: 17.10.2007 10:23
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.