How To Fix Joomla Extensions Installation Error

How To Fix Joomla Extensions Installation Error

A short Video to fix the Joomla Extensions Instalation Error

1. Open “/libraries/joomla/filesystem” with a FTP-Programm, for example Filezilla
2. Open up “folder.php” with Editor
4. watch in Line 208 for the following part or search with STRG+F for the first line

// Iterate through open_basedir paths looking for a match
foreach ($obdArray as $test) {

$test = JPath::clean($test);
if (strpos($path, $test) === 0) {
$obdpath = $test;
$inBaseDir = true;
break;
}
}
if ($inBaseDir == false) {
// Return false for JFolder::create because the path to be created is not in open_basedir
JError::raiseWarning(
‘SOME_ERROR_CODE’,
‘JFolder::create: ‘ . JText::_(‘Path not in open_basedir paths’)

5. replace “0” with “1”
6. r”enlace false” with “true”
7. Seve the file and replace the folder.php

1. Öffnet “/libraries/joomla/filesystem” mit einem FTP-Programm, z.B. Filezilla
2. nun öffnet ihr die Datei “folder.php” mit einem Texteditor
4. ihr betrachtet nun ab Zeile 208 folgende Zeilen

// Iterate through open_basedir paths looking for a match
foreach ($obdArray as $test) {

$test = JPath::clean($test);
if (strpos($path, $test) === 0) {
$obdpath = $test;
$inBaseDir = true;
break;
}
}
if ($inBaseDir == false) {
// Return false for JFolder::create because the path to be created is not in open_basedir
JError::raiseWarning(
‘SOME_ERROR_CODE’,
‘JFolder::create: ‘ . JText::_(‘Path not in open_basedir paths’)

5. die “0” ersetzt ihr durch eine “1”
6. “false” ersetzt ihr durch “true”
7. Datei abspeichern und wieder in das Verzeichnis laden (Datei ersetzen)

Schon könnt ihr problemlos Komponeten und Plugins installieren.

Add Comment