Nein?

Warum denn nicht?
Bleibt ja nur noch die Try-and-Error-Methode.
....
Nein?
Code: Alles auswählen
redaxo/data/core/config.yml
Code: Alles auswählen
...
db:
1:
host: 'hostname:port'
login: username
password: userpassword
name: dbname
...
Code: Alles auswählen
<img src="<?php
echo rex_url::frontendController(array(
'rex_media_type' => 'name_of_media_type',
'rex_media_file' => 'name_of_media_file'));
?>" />
Code: Alles auswählen
<?php
$tage = array("So","Mo","Di","Mi","Do","Fr","Sa");
$tag = date("w");
echo $tage[($tag + 1) % 7];
echo $tage[($tag + 2) % 7];
echo $tage[($tag + 3) % 7];
echo $tage[($tag + 4) % 7];
?>