Hallo.
Ich habe ein Problem mit Joomla 1.6.
Ich habe ein Template runter geladen und die Bilder bearbeitet(Logo aus getauscht uns.)
Ob mit oder ohne Bearbeitung egal wie ich den Ordner hoch schiebe es wird mir
in der Administrator oberflächliche nicht angezeigt (Im Anhang ein Bild wo man dies schön sehen kann.)
Weiss jemand woran das liegt?
Muss ich das Template Manuell in irgendeiner TXT Index oder PhP Datei eintragen damit es erkannt wird?
Vielen dank
Gruß
um Templates und Module Installieren zu können, muss im Verzeichniss
/libraries/joomla/filesystem/die folder.php angepasst werden.!!
Dann funnzt es auch bei Freehostern.
Folgende Zeilen müssen in der folder.php auskommentiert werden 191-215!
//if ($obd != null)
//{
// if (JPATH_ISWIN) {
// $obdSeparator = ";";
// } else {
// $obdSeparator = ":";
// }
// Create the array of open_basedir paths
// $obdArray = explode($obdSeparator, $obd);
// $inOBD = false;
// Iterate through open_basedir paths looking for a match
// foreach ($obdArray as $test) {
// $test = JPath::clean($test);
// if (strpos($path, $test) === 0) {
// $obdpath = $test;
// $inOBD = true;
// break;
// }
// }
// if ($inOBD == 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'));
// return false;
// }
//}
Oder
/*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) {
$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',
__METHOD__ . ': ' . JText::_('JLIB_FILESYSTEM_ERROR_FOLDER_PATH')
);
return false;
}
}*/
Ich habe ein Problem mit Joomla 1.6.
Ich habe ein Template runter geladen und die Bilder bearbeitet(Logo aus getauscht uns.)
Ob mit oder ohne Bearbeitung egal wie ich den Ordner hoch schiebe es wird mir
in der Administrator oberflächliche nicht angezeigt (Im Anhang ein Bild wo man dies schön sehen kann.)
Weiss jemand woran das liegt?
Muss ich das Template Manuell in irgendeiner TXT Index oder PhP Datei eintragen damit es erkannt wird?
Vielen dank
Gruß
um Templates und Module Installieren zu können, muss im Verzeichniss
/libraries/joomla/filesystem/die folder.php angepasst werden.!!
Dann funnzt es auch bei Freehostern.
Folgende Zeilen müssen in der folder.php auskommentiert werden 191-215!
//if ($obd != null)
//{
// if (JPATH_ISWIN) {
// $obdSeparator = ";";
// } else {
// $obdSeparator = ":";
// }
// Create the array of open_basedir paths
// $obdArray = explode($obdSeparator, $obd);
// $inOBD = false;
// Iterate through open_basedir paths looking for a match
// foreach ($obdArray as $test) {
// $test = JPath::clean($test);
// if (strpos($path, $test) === 0) {
// $obdpath = $test;
// $inOBD = true;
// break;
// }
// }
// if ($inOBD == 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'));
// return false;
// }
//}
Oder
/*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) {
$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',
__METHOD__ . ': ' . JText::_('JLIB_FILESYSTEM_ERROR_FOLDER_PATH')
);
return false;
}
}*/
Anhänge
Zuletzt bearbeitet: