#908 closed Bug/Fehler (fixed)
KCFinder / CKEditor - Verlinkung Funktion verändert
| Reported by: | INETvisio | Owned by: | somebody |
|---|---|---|---|
| Priority: | hoch | Milestone: | modified-shop-2.0.5.0 |
| Component: | Admin | Version: | 2.0.0.0 |
| Keywords: | Cc: | ||
| Blocked By: | Blocking: |
Description
Hallo modified,
wenn man über den Editor z.B. die Warenkorb-Seite verlinken möchte, geht das nichts mehr. Früher hatte man für die Links ein Shop-Verzeichnis angezeigt, jetzt wird media/ Verzeichnis angezeigt.
Siehe Anhang..
Ist es ein Fehler oder wurde die alte Funktion abgeschafft?
Gruß,
Jürgen H.
Attachments (1)
Change History (14)
by , 10 years ago
| Attachment: | filemanager_wrong_link_path_or.JPG added |
|---|
comment:1 by , 10 years ago
| Priority: | niedrig → hoch |
|---|---|
| Type: | Frage → Bug/Fehler |
| Version: | 2.0.0.1 → 2.0.0.0 |
In Datei /inc/xtc_wysiwyg.inc.php wird der type gesetzt:
$file_path = '&opener=ckeditor&type=files';
$image_path = '&opener=ckeditor&type=images';
$flash_path = '&opener=ckeditor&type=flash';
$media_path = '&opener=ckeditor&type=flash';
In Datei "/admin/includes/modules/kcfinder/integration/modifiedshop.php" werden zum type das Verzeichnis und die erlaubten Dateitypen definiert:
// default type
$_SESSION['KCFINDER']['types'] = array('images' => "*img");
// type paths
if (isset($_GET['type'])) {
switch ($_GET['type']) {
case 'images':
$_SESSION['KCFINDER']['types'] = array('images' => "*img");
break;
case 'flash':
$_SESSION['KCFINDER']['types'] = array('media' => "swf");
break;
case 'media':
$_SESSION['KCFINDER']['types'] = array('media' => "");
break;
case 'files':
$_SESSION['KCFINDER']['types'] = array('media' => "");
break;
default:
$_SESSION['KCFINDER']['types'] = array('images' => "*img");
break;
}
}
Ich denke hier sollte man de case 'files' ändern von:
case 'files':
$_SESSION['KCFINDER']['types'] = array('media' => "");
break;
auf:
case 'files':
$_SESSION['KCFINDER']['types'] = array('' => "");
break;
comment:2 by , 9 years ago
| Milestone: | modified-shop-2.0.1.0 → modified-shop-2.0.1.1 |
|---|
comment:3 by , 9 years ago
| Milestone: | modified-shop-2.0.2.0 → modified-shop-2.0.2.1 |
|---|
comment:4 by , 9 years ago
| Milestone: | modified-shop-2.0.2.1 → modified-shop-2.1.0.0 |
|---|
comment:5 by , 9 years ago
| Milestone: | modified-shop-2.1.0.0 → modified-shop-2.0.4.0 |
|---|
comment:6 by , 8 years ago
| Milestone: | modified-shop-2.0.5.0 |
|---|
comment:7 by , 7 years ago
| Resolution: | → wontfix |
|---|---|
| Status: | new → closed |
KCFinder wurde komplett durch den Responsive FileManager 9.14.0 ersetzt, siehe Tickets #1280 & #1437.
Filepath ist auf den /images Ordner beschränkt.
comment:8 by , 7 years ago
| Milestone: | → modified-shop-2.0.5.0 |
|---|---|
| Resolution: | wontfix |
| Status: | closed → reopened |

Verlinkung wurde verändert.