Autor b-t-o
Datum 19.03.2009 18:40
Beiträge: Hallo Boby,

hmmm... schau mal, ob Dir das weiterhilft (modules/edit_fckeditor/include/connectors/connector_fck_for_links_and_images.php) ganz am Anfang werden die Konfigurationsparameter festgelegt (zwischen global $opnConfig und $Config['ConfigAllowedCommands']).
Diese mal hiermit ersetzen:

$fullpath = $opnConfig['datasave']['fckeditor']['path'];
$opn_relpath = '/' . str_replace (_OPN_ROOT_PATH, '', $fullpath);

$short_url = $opnConfig['opn_url'];
if (strpos($short_url, 'http') === 0) {
$short_url = substr($short_url, strpos($short_url, '//') + 2);
}
if (strpos($short_url, '/') === false) {
$short_url = '/';
} else {
$short_url = substr($short_url, strpos($short_url, '/'));
}
$short_url = rtrim($short_url, '/');
$path = $short_url . $opn_relpath;

$Config['UserFilesPath'] = $path;
$Config['UserFilesAbsolutePath'] = $fullpath;

$Config['FileTypesPath'] = array();
$Config['FileTypesPath']['File'] = $path . 'File/';
$Config['FileTypesPath']['Image'] = $path . 'Image/';
$Config['FileTypesPath']['Flash'] = $path . 'Flash/';
$Config['FileTypesPath']['Media'] = $path . 'Media/';

$Config['QuickUploadAbsolutePath']['File'] = $fullpath . 'File/';
$Config['QuickUploadAbsolutePath']['Image'] = $fullpath . 'File/';
$Config['QuickUploadAbsolutePath']['Flash'] = $fullpath . 'File/';
$Config['QuickUploadAbsolutePath']['Media'] = $fullpath . 'File/';
$Config['QuickUploadPath']['File'] = $opnConfig['opn_url'] . $opn_relpath . 'File/';
$Config['QuickUploadPath']['Image'] = $opnConfig['opn_url'] . $opn_relpath . 'File/';
$Config['QuickUploadPath']['Flash'] = $opnConfig['opn_url'] . $opn_relpath . 'File/';
$Config['QuickUploadPath']['Media'] = $opnConfig['opn_url'] . $opn_relpath . 'File/';
$Config['UploadPath'] = $Config['FileTypesPath'];

 
Gruss,

b-t-o


Diese Seite drucken
Diese Seite schließen

Dieser Artikel kommt von: OpenPHPNuke - das Open Source CMS

http://www.openphpnuke.info/