Joomla admin Kennwort zurücksetzen
Passwort wird auf admin zurückgesetzt! In die Datenbank über phpmyadmin unter SQL einfügen: UPDATE `jos_users` SET `name` = ‘admin’, `password` = ‘af9083d4b82dbc0745b124db3b3cf15d:M0WuLowO4rtRTddG’ WHERE `id` = 62 LIMIT 1 ; Bei Joomla 1.0 UPDATE `jos_users` SET `password`=’21232f297a57a5a743894a0e4a801fc3′ WHERE `id`=62 Passwort wird auf admin zurückgesetzt.
Joomla Google Maps Route einbauen / berechnen
Das ist die Lösung: Inhalt –> Beiträge –> Optionen –> Text Filters –> Super Users = keine Filterung und im TinyMCE iframe aus dem “Prohibited Elements” iframe löschen. dann gehts. <form method=”get” action=”http://maps.google.com/maps” target=”_blank”> <b>Bitte geben sie die Startadresse ein<br>(z.B. PLZ Ort, Strasse):</b> <br><input name=”saddr” size=”40″ type=”text”> <br> <input name=”daddr” value=”40764 Langenfeld, Zum Klosterbusch 6″ […]
Joomla 1.7 iframe wrapper Rahmen / border entfernen
Problem: in Joomla 1.7 wird ein dicker Rahmen angezeigt sobald man den iframe wrapper nutzt. Lösung: In der Datei components/com_wrapper/views/wrapper/tmpl/default.php frameborder=”0″ hinzufügen. So sieht es dann aus: <iframe frameborder=”0″ <?php echo $this->wrapper->load; ?> id=”blockrandom” name=”iframe” src=”<?php echo $this->escape($this->wrapper->url); ?>” width=”<?php echo $this->escape($this->params->get(‘width’)); ?>” height=”<?php echo $this->escape($this->params->get(‘height’)); ?>” scrolling=”<?php echo $this->escape($this->params->get(‘scrolling’)); ?>” class=”wrapper<?php echo $this->pageclass_sfx; ?>”> […]
Artisteer Footer anpassen
To customize the template footer via Joomla administration place one or multiple modules into the “copyright” position. This will replace the default copyright text included in the template footer with the new content provided by the module. Here are sample steps to configure custom footer: 1. Go to Joomla Administrator (www.your-site.com/administrator) -> Extensions -> Module […]
PHP Parameter übergeben – Joomla Sprache
Beispiel: $lang = $_GET[‘lang’]; if ( $lang == de ) { $text= “test”; }