Code: Select all
sql_mode     = NO_ENGINE_SUBSTITUTIONCode: Select all
sql_mode     = NO_ENGINE_SUBSTITUTION[mysqld]
sql_mode = NO_ENGINE_SUBSTITUTION 
 
ich habe mich heute mal an der neuen 1.9.7. - rc.1 versucht und bei 1und1 (php 7.2) hat offensichtlich alles Problemlos geklappt.
 .
 . über das neue Templating bei den Vorlagen. Nun kann man das Template fast ohne Backend erstellen und die Highlightfunktion des Editors nutzen. Danke dafür
  über das neue Templating bei den Vorlagen. Nun kann man das Template fast ohne Backend erstellen und die Highlightfunktion des Editors nutzen. Danke dafür  
$GLOBALS['BE']['BODY_CLOSE']['exif.js.upload'] = '';/* existing block $GLOBALS['BE']['BODY_CLOSE']['exif.js.upload'] = '<script type="text/javascript">
document.getElementById("file").onchange = function(e) {
    var iptcdata = document.getElementById("iptc-info");
    iptcdata.innerHTML = '';
    EXIF.getData(e.target.files[0], function() {
        //alert(EXIF.pretty(this));
        var iptctags = {
            Caption: EXIF.getIptcTag(this, "caption"),
            Copyright: EXIF.getIptcTag(this, "copyright"),
            Credit: EXIF.getIptcTag(this, "credit"),
            Title: EXIF.getIptcTag(this, "headline"),
            Category: EXIF.getIptcTag(this, "category"),
            Writer: EXIF.getIptcTag(this, "captionWriter"),
            Creator: EXIF.getIptcTag(this, "byline"),
            Profession: EXIF.getIptcTag(this, "bylineTitle")
        };
        var iptctable = '';
        for(var a in iptctags) {
            if(iptctags.hasOwnProperty(a)) {
                if(typeof iptctags[a] === "string") {
                    var val = iptctags[a].trim();
                    if(val !== "") {
                        iptctable += \'<tr><td class="chatlist tdtop3" width="5%">\' + a + \' </td><td class="tdtop3">\' + val + \'</td></tr>\';
                    }
                }
            }
        }
        if(iptctable !== "") {
            iptctable = \'<table cellspacing="0" cellpadding="0" border="0" style="width:95%;border-top:1px solid #9BBECA;margin:3px 5px 0 0;">\' + iptctable + \'</table>\';
        }
        iptcdata.innerHTML = iptctable;
    });
}
</script>';*/Code: Select all
[mysqld]
sql_mode     = NO_ENGINE_SUBSTITUTION