ich habe Contenido 4.9.2 auf einem lokalen webserver (xampp v3.2.1) installiert.
Wenn ich im Backend auf die Dateiverwaltung gehe, dann im uploadbereich ein Verzeichnis anwähle und auf dei hochladeseite gehe, habe ich zwei Möglichkeiten Bilder / Dateien hochzuladen:
Per Drag& Drop - übrigens eine super tolle Neuerung - was auch gut funktioniert und herkömmlich über die Durchsuchen Felder.
Klicke ich auf ein solches Feld öffnet sich der Dateiauswahldialog und nach Auswahl einer Datei, wird mir deren Dateiname in dem kleinen Kästchen angezeigt.
Nach einem weiteren Klick auf das grüne Häkchen verschwindet der Dateiname wieder und es werden wieder die leeren Kästchen angezeigt.
Dateien wurden keine hochgeladen....
Da ich momentan noch weitere dieser Fehler habe, habe ich die cfg.clients in Verdacht, welche ich hier mal anfüge.
Mit -http://localhost/contenido/cms/images/ erreiche ich mein Frontend im Browser,
Das Contenidosystem ist installiert auf C:xampp/htdocs/contenido/
Code: Alles auswählen
<?php
global $cfgClient;
/* JF Enzkreis */
$cfgClient[1]["name"] = "JF Enzkreis";
$cfgClient[1]["errsite"]["idcat"] = "2";
$cfgClient[1]["errsite"]["idart"] = "15";
$cfgClient[1]["images"] = "http://localhost/contenido/cms/images/";
$cfgClient[1]["upload"] = "upload/";
$cfgClient[1]["path"]["frontend"] = "C:/xampp/htdocs/contenido/cms/";
$cfgClient[1]["htmlpath"]["frontend"] = "http://localhost/contenido/cms/";
$cfgClient[1]["upl"]["path"] = $cfgClient[1]["path"]["frontend"] . "upload/";
$cfgClient[1]["upl"]["htmlpath"] = "http://localhost/contenido/cms/upload/";
$cfgClient[1]["upl"]["frontendpath"] = "upload/";
$cfgClient[1]["css"]["path"] = $cfgClient[1]["path"]["frontend"] . "css/";
$cfgClient[1]["js"]["path"] = $cfgClient[1]["path"]["frontend"] . "js/";
$cfgClient[1]["tpl"]["path"] = $cfgClient[1]["path"]["frontend"] . "templates/";
$cfgClient[1]["cache"]["path"] = $cfgClient[1]["path"]["frontend"] . "cache/";
$cfgClient[1]["cache"]["frontendpath"] = "cache/";
$cfgClient[1]["code"]["path"] = $cfgClient[1]["path"]["frontend"] . "cache/code/";
$cfgClient[1]["code"]["frontendpath"] = "cache/code/";
$cfgClient[1]["xml"]["path"] = $cfgClient[1]["path"]["frontend"] . "xml/";
$cfgClient[1]["xml"]["frontendpath"] = "xml/";
$cfgClient[1]["template"]["path"] = $cfgClient[1]["path"]["frontend"] . "templates/";
$cfgClient[1]["template"]["frontendpath"] = "templates/";
$cfgClient[1]["data"]["path"] = $cfgClient[1]["path"]["frontend"] . "data/";
$cfgClient[1]["module"]["path"] = $cfgClient[1]["path"]["frontend"] . "data/modules/";
$cfgClient[1]["module"]["frontendpath"] = "data/modules/";
$cfgClient[1]["config"]["path"] = $cfgClient[1]["path"]["frontend"] .
"data/config/production/";
$cfgClient[1]["config"]["frontendpath"] = "data/config/";
$cfgClient[1]["layout"]["path"] = $cfgClient[1]["path"]["frontend"] . "data/layouts/";
$cfgClient[1]["layout"]["frontendpath"] = "data/layouts/";
$cfgClient[1]["log"]["path"] = $cfgClient[1]["path"]["frontend"] . "data/logs/";
$cfgClient[1]["log"]["frontendpath"] = "data/logs/";
$cfgClient[1]["version"]["path"] = $cfgClient[1]["path"]["frontend"] . "data/version/";
$cfgClient[1]["version"]["frontendpath"] = "data/version/";
$cfgClient[1]["path"]["htmlpath"] = "http://localhost/contenido/cms/";
$cfgClient["set"] = "set";
?>
Nachtrag: Installiert ist contenido mit Beispielmodulen, aber ohne Beispielmandanten!