Update V3.3 ยป V3.4

Not much has changed. The WEButler does everything it should. An update is still necessary. Over time, errors have crept in, e.g. due to new PHP versions. These have been corrected.

The CKEditor has been updated to version 4.16.

Flash is dead, the flash plugin has been removed from the CKEditor.

The measuring tool has been removed from the CKEditor. Measuring distances or sizes no longer makes sense in times of responsive design.

The Google map has been removed and replaced by the Open Street Map or Leaflet Map.

FPDF is obsolete and has been removed. If you use it, please copy from an older version or switch to MPDF.

The filename "index.ext" for the start page has been removed from the url, this is better for search engine optimization.

The following extensions are available

Honeypot in forms

To prevent spam, a honeypot can now be set in every form:

<?PHP
$honeypot_formid = '_DESIGNATION_';
require_once($webutlercouple->config['server_path'].'/includes/forms/honeypot/index.php');
?>

The PHP script is set anywhere within the form. The honeypot_formid variable is used to set a separate honeypot for each form.

Consent window for cookies

The window is loaded automatically, but can be deactivated in globalvars.php if necessary.

$webutler_config['cookie_consents'] = "0";

Leaflet Map replaces Google Map

The new CKEditor plugin has identical features. If you use a Google map, simply delete it from the page and insert a leaflet map in the editor.

Javascript fullsizeimage

The scaling of images to the size of a grid element with 100% height is now taken over by Javascript.
The CSS class name "imgfullheight" was named "fullsizeimage" replaced and is assigned directly to the IMG and no longer to a parent DIV.

The source code in the pages has to be adapted, from:
<div class="imgfullheight">
<img src="path/to/image.jpg" />
</div>
to:
<img class="fullsizeimage" src="path/to/image.jpg" />

Update from version 3.3 - What needs to be done?

  1. Replace the files /index.php and .htaccess in the root with the new files
  2. Delete the complete /admin directory from the server and upload the new directory
  3. Replace the files /loader.php, /wbclass.php and /mmclass.php in the /includes directory with the new files
  4. Upload the directory /includes/forms/honeypot and replace the file /includes/forms/sendform.php with the new one
  5. Upload the directory /includes/consents
  6. Add the variable $webutler_config['cookie_consents'] = "1"; to the file /settings/globalvars.php
  7. Upload the directory /content/javascript/fullsizeimage
    Include the files fullsizeimage.js and fullsizeimage.css in the compress.php
    Adapt the source code in the pages for the full-size image script.
  8. Replace the /includes/sitemap/index.php file with the new one
  9. Upload the directory /includes/leaflet