Joomla - Unable to create destination


Joomla.

Ich habe heute Joomla installiert und alles gut gelaufen bis ende, dannach habe im Admin bereich und möchte ich ein template installiert, leider geht es nicht, dort angezeigt fehler und hier ist die fehler:

JFolder::create: Path not in open_basedir paths
Unable to create destination


Wenn Sie auch so Probleme haben, hier villeicht Sie helfen können

Öffnen Sie di Datei /libraries/joomla/filesystem/folder.php im editor, geben Sie /* bevor "if ($obd != null)" und geben Sie */ bevor "$origmask = @umask(0);".

Hier ist die Conde mit editiert:

// We need to get and explode the open_basedir paths
$obd = ini_get('open_basedir');

// If open_basedir is set we need to get the open_basedir that the path is in


/* <-- von hier

if ($obd != null)
{
if (JPATH_ISWIN)
{
$obdSeparator = ";";
}
else
{
$obdSeparator = ":";
}
// Create the array of open_basedir paths
$obdArray = explode($obdSeparator, $obd);
$inBaseDir = false;
// Iterate through open_basedir paths looking for a match
foreach ($obdArray as $test)
{
$test = JPath::clean($test);
if (strpos($path, $test) === 0)
{
$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', __METHOD__ . ': ' . JText::_('JLIB_FILESYSTEM_ERROR_FOLDER_PATH'));
return false;
}
}

*/ //<-- bis hier



// First set umask
$origmask = @umask(0);

// Create the path
if (!$ret = @mkdir($path, $mode))
{




Das war alles, ich höffe es kann Sie helfen
Viel Glück
Official wiyono blog