<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>im-Tal.net &#187; Joomla</title>
	<atom:link href="http://www.im-tal.net/cat/tipps/joomla-tipps/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.im-tal.net</link>
	<description>im-Tal.net mit Tipps zu Windows XP + Vista, Office, Firefox, Thunderbird etc.</description>
	<lastBuildDate>Sun, 21 Feb 2010 17:40:58 +0000</lastBuildDate>
	
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Effekte mit der jQuery JavaScript Library</title>
		<link>http://www.im-tal.net/568/effekte-mit-der-jquery-javascript-library/</link>
		<comments>http://www.im-tal.net/568/effekte-mit-der-jquery-javascript-library/#comments</comments>
		<pubDate>Wed, 12 Aug 2009 09:45:33 +0000</pubDate>
		<dc:creator>maxe</dc:creator>
				<category><![CDATA[Joomla]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[Internet]]></category>

		<guid isPermaLink="false">http://www.im-tal.net/?p=568</guid>
		<description><![CDATA[Mit der jQuery JavaScript Library sind tolle Effekte möglich, wie z. B. Sliding, Fading, Animating etc.
Wir haben uns selber noch nicht viel mit jQuery befasst, wollen aber unsere ersten Versuche hier als Einstiegsanleitung niederschreiben.
Also zu erst muss die Library ins Template eingebunden werden. Entweder man lädt sich die .js Datei hier herunter und bindet sie anschließend so (am besten im Header) ein:

<pre class="javascript" style="font-family:monospace;">&#60;script src=&#34;jquery-1.3.2.min.js&#34; type=&#34;text/javascript&#34;&#62;&#60;/script&#62;</pre>

oder man bindet z. B. direkt die von jquery.com ein:

<pre &#160;...&#160;<a class="readmore" href="http://www.im-tal.net/568/effekte-mit-der-jquery-javascript-library/"><img src="http://www.im-tal.net/wp-content/themes/wp-andreas09/images/weiterlesen.png" alt="Weiterlesen &#187;" title="Weiterlesen &#187;" /></a>]]></description>
			<content:encoded><![CDATA[<p>Mit der jQuery JavaScript Library sind tolle Effekte möglich, wie z. B. Sliding, Fading, Animating etc.<br />
Wir haben uns selber noch nicht viel mit jQuery befasst, wollen aber unsere ersten Versuche hier als Einstiegsanleitung niederschreiben.</p>
<p>Also zu erst muss die Library ins Template eingebunden werden. Entweder man lädt sich die .js Datei <a href="http://docs.jquery.com/Downloading_jQuery">hier herunter</a> und bindet sie anschließend so (am besten im Header) ein:</p>

<div class="wp_syntax"><div class="code"><pre class="javascript" style="font-family:monospace;"><span style="color: #339933;">&lt;</span>script src<span style="color: #339933;">=</span><span style="color: #3366CC;">&quot;jquery-1.3.2.min.js&quot;</span> type<span style="color: #339933;">=</span><span style="color: #3366CC;">&quot;text/javascript&quot;</span><span style="color: #339933;">&gt;&lt;/</span>script<span style="color: #339933;">&gt;</span></pre></div></div>

<p>oder man bindet z. B. direkt die von jquery.com ein:</p>

<div class="wp_syntax"><div class="code"><pre class="javascript" style="font-family:monospace;"><span style="color: #339933;">&lt;</span>script src<span style="color: #339933;">=</span><span style="color: #3366CC;">&quot;http://code.jquery.com/jquery-latest.js&quot;</span> type<span style="color: #339933;">=</span><span style="color: #3366CC;">&quot;text/javascript&quot;</span><span style="color: #339933;">&gt;&lt;/</span>script<span style="color: #339933;">&gt;</span></pre></div></div>

<hr />
<p>So, nachdem nun die Library eingebunden ist, können wir mit dem Javascript beginnen. Es läuft immer nach ähnlichem Schema.<br />
Erst sagen wir, wir wollen eine Funktion:<br />
<code>$(document).ready(function()</code><br />
Dann können wir bei Bedarf bestimmen, welches Element/Objekt bei Klick o. ä. die Änderung vornehmen soll:<br />
<code>$("button").click(function ()</code><br />
Auf jeden Fall werden dann die Element/Objekte bestimmt, welche ihr Aussehen/Verhalten ändern sollen:<br />
<code>$("p").slideToggle</code></p>
<p>Als <strong>1. kleines Beispiel</strong> lassen wir mit <em>slideToggle</em> alle Texte innernhalb eine p-Tags durch einen Button ein-/ausblenden:</p>
<div class="test1">

<div class="wp_syntax"><div class="code"><pre class="javascript" style="font-family:monospace;"><span style="color: #339933;">&lt;</span>script type<span style="color: #339933;">=</span><span style="color: #3366CC;">&quot;text/javascript&quot;</span><span style="color: #339933;">&gt;</span>
  $<span style="color: #009900;">&#40;</span>document<span style="color: #009900;">&#41;</span>.<span style="color: #660066;">ready</span><span style="color: #009900;">&#40;</span><span style="color: #003366; font-weight: bold;">function</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span>
&nbsp;
    $<span style="color: #009900;">&#40;</span><span style="color: #3366CC;">&quot;button&quot;</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">click</span><span style="color: #009900;">&#40;</span><span style="color: #003366; font-weight: bold;">function</span> <span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
      $<span style="color: #009900;">&#40;</span><span style="color: #3366CC;">&quot;p&quot;</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">slideToggle</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">&quot;slow&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
    <span style="color: #009900;">&#125;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
  <span style="color: #009900;">&#125;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #339933;">&lt;/</span>script<span style="color: #339933;">&gt;</span></pre></div></div>

<p>Um den Button nun sichtbar zu machen, ist es nötig diesen an die entsprechende Stelle (vorzugsweise direkt über den Text) anzulegen:</p>

<div class="wp_syntax"><div class="code"><pre class="html" style="font-family:monospace;">&nbsp;
&lt;button&gt;Text ein-/ausblenden&lt;/button&gt;
&nbsp;
&lt;p&gt;
   Hier steht der Text der nun ein- bzw. ausgeblendet werden kann.
&lt;/p&gt;</pre></div></div>

<p>So lässt sich z. B. auch eine Sidebar aus-/einblenden. Statt &#8220;p&#8221; nimmt man dann z. B. den Div-Container der Sidebar (z. B. &#8220;#sidebar&#8221;).
</p></div>
<p><button class="1">Hier kannst du es testen</button></p>
<hr />
<p>Als <strong>2. Beispiel</strong> wollen wir zeigen, wie z. B. die Kombination von mehreren Elementen/Objekte mit mehrfacher Veränderung möglich sind:</p>
<div class="test2">

<div class="wp_syntax"><div class="code"><pre class="javascript" style="font-family:monospace;"><span style="color: #339933;">&lt;</span>script type<span style="color: #339933;">=</span><span style="color: #3366CC;">&quot;text/javascript&quot;</span><span style="color: #339933;">&gt;</span>
  $<span style="color: #009900;">&#40;</span>document<span style="color: #009900;">&#41;</span>.<span style="color: #660066;">ready</span><span style="color: #009900;">&#40;</span><span style="color: #003366; font-weight: bold;">function</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span>
&nbsp;
    $<span style="color: #009900;">&#40;</span><span style="color: #3366CC;">&quot;button&quot;</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">click</span><span style="color: #009900;">&#40;</span><span style="color: #003366; font-weight: bold;">function</span> <span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
    $<span style="color: #009900;">&#40;</span><span style="color: #3366CC;">&quot;div.block&quot;</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">add</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">&quot;p.extra&quot;</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">addClass</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">&quot;blau&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
     <span style="color: #000066;">alert</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">&quot;Class in blau geaendert&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
    <span style="color: #009900;">&#125;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
  <span style="color: #009900;">&#125;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #339933;">&lt;/</span>script<span style="color: #339933;">&gt;</span></pre></div></div>

<p>Alle Div-Container mit der Class &#8220;.block&#8221; und alle p-Tags mit der Class &#8220;.extra&#8221; bekommen eine neue Class &#8220;.blau&#8221; zugefügt und es wird ein Hinweistext ausgegeben. Statt addClass können auch <a href="http://docs.jquery.com/Attributes">andere Attribute</a>, wie z. B. toggleClass genutzt werden.</p>
</div>
<p><button class="2">Hier kannst du es testen</button></p>
<hr />
<p>Eine <strong>weitere Spielerei</strong> wäre ein FadeIn-Effekt bei allen Bildern die im Div-Container &#8220;#content&#8221; sitzen:</p>

<div class="wp_syntax"><div class="code"><pre class="javascript" style="font-family:monospace;"><span style="color: #339933;">&lt;</span>script type<span style="color: #339933;">=</span><span style="color: #3366CC;">&quot;text/javascript&quot;</span><span style="color: #339933;">&gt;</span>
  $<span style="color: #009900;">&#40;</span>document<span style="color: #009900;">&#41;</span>.<span style="color: #660066;">ready</span><span style="color: #009900;">&#40;</span><span style="color: #003366; font-weight: bold;">function</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
    $<span style="color: #009900;">&#40;</span><span style="color: #3366CC;">&quot;#content img&quot;</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">css</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">&quot;display&quot;</span><span style="color: #339933;">,</span><span style="color: #3366CC;">&quot;none&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
    $<span style="color: #009900;">&#40;</span><span style="color: #3366CC;">&quot;#content img&quot;</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">fadeIn</span><span style="color: #009900;">&#40;</span><span style="color: #CC0000;">5000</span><span style="color: #009900;">&#41;</span>
<span style="color: #009900;">&#125;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #339933;">&lt;/</span>script<span style="color: #339933;">&gt;</span></pre></div></div>

<div class="test3">
<img src="http://www.im-tal.net/wp-content/uploads/wordpress.jpg" alt="wordpress" title="wordpress" width="193" height="80" class="alignnone size-full wp-image-519" />
</div>
<p><button class="3">Hier kannst du es testen</button></p>
<blockquote><p><strong>Weitere Effekte findest du in der jQuery-Documentation: <a href="http://docs.jquery.com/Effects">http://docs.jquery.com/Effects</a></strong></p></blockquote>
<hr />
<p><strong>Ein kleiner Hinweis für WordPress-User:</strong><br />
WordPress bringt eine jquery.js im Verzeichnis /wp-includes/js/jquery/jquery.js mit. Falls ihr also damit arbeiten wollt ist eine kleine Abweichung zu beachten. Statt des $-Zeichen muss in WP jQuery benutzt werden:</p>

<div class="wp_syntax"><div class="code"><pre class="javascript" style="font-family:monospace;">&lt;script src=&quot;http://www.deine_domain.xyz/wp-includes/js/jquery/jquery.js&quot; type=&quot;text/javascript&quot;&gt;&lt;/script&gt;
<span style="color: #339933;">&lt;</span>script type<span style="color: #339933;">=</span><span style="color: #3366CC;">&quot;text/javascript&quot;</span><span style="color: #339933;">&gt;</span>
  jQuery<span style="color: #009900;">&#40;</span>document<span style="color: #009900;">&#41;</span>.<span style="color: #660066;">ready</span><span style="color: #009900;">&#40;</span><span style="color: #003366; font-weight: bold;">function</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span>
&nbsp;
    jQuery<span style="color: #009900;">&#40;</span><span style="color: #3366CC;">&quot;button&quot;</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">click</span><span style="color: #009900;">&#40;</span><span style="color: #003366; font-weight: bold;">function</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span>
    jQuery<span style="color: #009900;">&#40;</span><span style="color: #3366CC;">&quot;div.block&quot;</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">add</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">&quot;p.extra&quot;</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">toggleClass</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">&quot;blau&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
     <span style="color: #000066;">alert</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">&quot;Class geaendert&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
    <span style="color: #009900;">&#125;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
  <span style="color: #009900;">&#125;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #339933;">&lt;/</span>script<span style="color: #339933;">&gt;</span></pre></div></div>

<br /><br /><small><h2>Verwandte Artikel:</h2><ul><li><a href="http://www.im-tal.net/529/neues-firefox-fenster-im-vordergrund-oeffnen/" rel="bookmark" title="Permanent Link: Neues Firefox-Fenster im Vordergrund öffnen">Neues Firefox-Fenster im Vordergrund öffnen</a></li><li><a href="http://www.im-tal.net/508/firebug-fuer-firefox/" rel="bookmark" title="Permanent Link: Firebug für Firefox">Firebug für Firefox</a></li></ul></small><br /><small>Copyright &copy; 2008-2009 <a href="http://www.im-tal.net">im-Tal.net</a> ( imtalnet (38.107.191.110) )</small><hr />]]></content:encoded>
			<wfw:commentRss>http://www.im-tal.net/568/effekte-mit-der-jquery-javascript-library/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Der chCounter geht in die nächste Runde: expCounter</title>
		<link>http://www.im-tal.net/554/der-chcounter-geht-in-die-naechste-runde-expcounter/</link>
		<comments>http://www.im-tal.net/554/der-chcounter-geht-in-die-naechste-runde-expcounter/#comments</comments>
		<pubDate>Fri, 24 Jul 2009 14:40:30 +0000</pubDate>
		<dc:creator>im-Tal.net</dc:creator>
				<category><![CDATA[Joomla]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[Counter]]></category>

		<guid isPermaLink="false">http://www.im-tal.net/?p=554</guid>
		<description><![CDATA[Als Besuchszähler (Counter) setz(t)en wir bisher auf im-Tal.net den chCounter von Christoph Bachner bzw. ab 2007 weiterentwickelt von Bert Körn ein.
Wie wir bereits in unserem Artikel &#8220;chCounter für Wordpress nutzen&#8221; erwähnten, ist die Entwicklung vom chCounter seit einiger Zeit aus nicht bekannten Gründen eingeschlafen. Jetzt greift Volker S. Latainski das Projekt auf und entwickelt den Counter, dank GPL (Lizenz), unter neuem Namen weiter:
<img title="expCounter" src="http://www.expblog.net/expcounter/images/logo.png" alt="expCounter" title="expCounter" width="319" height="85" />
Die Installation erfolgt wie vom chCounter &#160;...&#160;<a class="readmore" href="http://www.im-tal.net/554/der-chcounter-geht-in-die-naechste-runde-expcounter/"><img src="http://www.im-tal.net/wp-content/themes/wp-andreas09/images/weiterlesen.png" alt="Weiterlesen &#187;" title="Weiterlesen &#187;" /></a>]]></description>
			<content:encoded><![CDATA[<p>Als Besuchszähler (Counter) setz(t)en wir bisher auf im-Tal.net den chCounter von Christoph Bachner bzw. ab 2007 weiterentwickelt von Bert Körn ein.</p>
<p>Wie wir bereits in unserem Artikel &#8220;chCounter für Wordpress nutzen&#8221; erwähnten, ist die Entwicklung vom chCounter seit einiger Zeit aus nicht bekannten Gründen eingeschlafen. Jetzt greift Volker S. Latainski das Projekt auf und entwickelt den Counter, dank GPL (Lizenz), unter neuem Namen weiter:</p>
<p><a href="http://www.expblog.net/expcounter/"><img title="expCounter" src="http://www.expblog.net/expcounter/images/logo.png" alt="expCounter" title="expCounter" width="319" height="85" /></a></p>
<p>Die Installation erfolgt wie vom chCounter gewohnt. Auch der Umstieg vom chCounter auf den expCounter, <a href="http://www.expblog.net/expcounter/chcounter_zu_expcounter.html">wie hier beschrieben</a>, ist sehr einfach. Das Template (zuständig für die Anzeige) lässt sich sehr einfach über den <a href="http://www.expblog.net/expcounter/templategenerator">Template-Generator</a> anpassen.</p>
<p>Wir haben nun ziemlich früh umgestellt und sind auf die (Weiter-)Entwicklung des Counters gespannt.</p>
<p>Ach übrigens, unser Artikel &#8220;chCounter für Wordpress nutzen&#8221; (sowie die Artikel die sich mit der Einbindung in Joomla beschäftigen) hat bisher noch Gültigkeit. Falls sich für die Einbindung in WordPress etwas ändern sollte werden wir selbstverständlich berichten.</p>
<br /><br /><small><h2>Verwandte Artikel:</h2><ul><li><a href="http://www.im-tal.net/453/chcounter-fuer-wordpress-nutzen/" rel="bookmark" title="Permanent Link: chCounter für Wordpress nutzen">chCounter für Wordpress nutzen</a></li><li><a href="http://www.im-tal.net/515/chcounter-mit-sicherheitsluecke/" rel="bookmark" title="Permanent Link: chCounter mit Sicherheitslücke">chCounter mit Sicherheitslücke</a></li><li><a href="http://www.im-tal.net/212/chcounter-in-joomla-10xx-einbinden/" rel="bookmark" title="Permanent Link: chCounter in Joomla 1.0.xx einbinden">chCounter in Joomla 1.0.xx einbinden</a></li><li><a href="http://www.im-tal.net/219/chcounter-in-joomla-15xx-einbinden/" rel="bookmark" title="Permanent Link: chCounter in Joomla 1.5.xx einbinden">chCounter in Joomla 1.5.xx einbinden</a></li><li><a href="http://www.im-tal.net/255/website-mit-verschiedenen-browsern-testen/" rel="bookmark" title="Permanent Link: Website mit verschiedenen Browsern testen">Website mit verschiedenen Browsern testen</a></li></ul></small><br /><small>Copyright &copy; 2008-2009 <a href="http://www.im-tal.net">im-Tal.net</a> ( imtalnet (38.107.191.110) )</small><hr />]]></content:encoded>
			<wfw:commentRss>http://www.im-tal.net/554/der-chcounter-geht-in-die-naechste-runde-expcounter/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>chCounter mit Sicherheitslücke</title>
		<link>http://www.im-tal.net/515/chcounter-mit-sicherheitsluecke/</link>
		<comments>http://www.im-tal.net/515/chcounter-mit-sicherheitsluecke/#comments</comments>
		<pubDate>Sun, 26 Apr 2009 06:20:27 +0000</pubDate>
		<dc:creator>im-Tal.net</dc:creator>
				<category><![CDATA[Joomla]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[Counter]]></category>

		<guid isPermaLink="false">http://www.im-tal.net/?p=515</guid>
		<description><![CDATA[im-Tal.net benutzt seit Anfang an den chCounter als Statistiktool. Im April 09 erfuhren wir auf stadt-bremerhaven.de, dass im chCounter wohl eine Sicherheitslücke entdeckt wurde. Demnach soll es möglich sein sich auf der Login-Seite des chCounters mit “or ‘=’” <em>(ohne die Anführungszeichen)</em> als Benutzernamen und Passwort anzumelden. Auf im-Tal.net war dies so nicht möglich.
Trotzdem wollen wir auch auf die Lösung des Problems hinweisen. In der functions.inc.php im <em>includes</em>-Ordner vom chCounter muss nach folgendem Code gesucht werden:

<pre &#160;...&#160;<a class="readmore" href="http://www.im-tal.net/515/chcounter-mit-sicherheitsluecke/"><img src="http://www.im-tal.net/wp-content/themes/wp-andreas09/images/weiterlesen.png" alt="Weiterlesen &#187;" title="Weiterlesen &#187;" /></a>]]></description>
			<content:encoded><![CDATA[<p>im-Tal.net benutzt seit Anfang an den chCounter als Statistiktool. Im April 09 erfuhren wir auf <a href="http://stadt-bremerhaven.de/2009/04/16/warnung-vor-chcounter-sicherheitsluecke/">stadt-bremerhaven.de</a>, dass im chCounter wohl eine Sicherheitslücke entdeckt wurde. Demnach soll es möglich sein sich auf der Login-Seite des chCounters mit “or ‘=’” <em>(ohne die Anführungszeichen)</em> als Benutzernamen und Passwort anzumelden. Auf im-Tal.net war dies so nicht möglich.</p>
<p>Trotzdem wollen wir auch auf die Lösung des Problems hinweisen. In der functions.inc.php im <em>includes</em>-Ordner vom chCounter muss nach folgendem Code gesucht werden:</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">function</span> chC_login<span style="color: #009900;">&#40;</span> <span style="color: #000088;">$name</span><span style="color: #339933;">,</span> <span style="color: #000088;">$pw</span><span style="color: #339933;">,</span> <span style="color: #000088;">$cookie</span> <span style="color: #339933;">=</span> <span style="color: #cc66cc;">0</span><span style="color: #339933;">,</span> <span style="color: #000088;">$admin_required</span> <span style="color: #339933;">=</span> <span style="color: #009900; font-weight: bold;">FALSE</span> <span style="color: #009900;">&#41;</span>
<span style="color: #009900;">&#123;</span></pre></div></div>

<p>Dieser Code muss um eine Zeile ergänzt werden:</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">function</span> chC_login<span style="color: #009900;">&#40;</span> <span style="color: #000088;">$name</span><span style="color: #339933;">,</span> <span style="color: #000088;">$pw</span><span style="color: #339933;">,</span> <span style="color: #000088;">$cookie</span> <span style="color: #339933;">=</span> <span style="color: #cc66cc;">0</span><span style="color: #339933;">,</span> <span style="color: #000088;">$admin_required</span> <span style="color: #339933;">=</span> <span style="color: #009900; font-weight: bold;">FALSE</span> <span style="color: #009900;">&#41;</span>
<span style="color: #009900;">&#123;</span>
<span style="color: #000088;">$name</span><span style="color: #339933;">=</span><span style="color: #990000;">mysql_real_escape_string</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$name</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></div></div>

<p>Also einfach die Zeile <em>$name=mysql_real_escape_string($name);</em> hinzufügen.</p>
<br /><br /><small><h2>Verwandte Artikel:</h2><ul><li><a href="http://www.im-tal.net/554/der-chcounter-geht-in-die-naechste-runde-expcounter/" rel="bookmark" title="Permanent Link: Der chCounter geht in die nächste Runde: expCounter">Der chCounter geht in die nächste Runde: expCounter</a></li><li><a href="http://www.im-tal.net/453/chcounter-fuer-wordpress-nutzen/" rel="bookmark" title="Permanent Link: chCounter für Wordpress nutzen">chCounter für Wordpress nutzen</a></li><li><a href="http://www.im-tal.net/212/chcounter-in-joomla-10xx-einbinden/" rel="bookmark" title="Permanent Link: chCounter in Joomla 1.0.xx einbinden">chCounter in Joomla 1.0.xx einbinden</a></li><li><a href="http://www.im-tal.net/219/chcounter-in-joomla-15xx-einbinden/" rel="bookmark" title="Permanent Link: chCounter in Joomla 1.5.xx einbinden">chCounter in Joomla 1.5.xx einbinden</a></li></ul></small><br /><small>Copyright &copy; 2008-2009 <a href="http://www.im-tal.net">im-Tal.net</a> ( imtalnet (38.107.191.110) )</small><hr />]]></content:encoded>
			<wfw:commentRss>http://www.im-tal.net/515/chcounter-mit-sicherheitsluecke/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>noindex und nofollow</title>
		<link>http://www.im-tal.net/256/noindex-und-nofollow/</link>
		<comments>http://www.im-tal.net/256/noindex-und-nofollow/#comments</comments>
		<pubDate>Tue, 02 Dec 2008 13:45:37 +0000</pubDate>
		<dc:creator>maxe</dc:creator>
				<category><![CDATA[Joomla]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[Spam]]></category>

		<guid isPermaLink="false">http://www.im-tal.net/?p=256</guid>
		<description><![CDATA[<strong>noindex</strong> heißt auf deutsch nichts anderes als &#8220;nehm diese Seite nicht in deinen Suchemaschinen-Index auf&#8221;.
<strong>nofollow</strong> heißt auf deutsch nichts anderes als &#8220;Folge den Links auf dieser Seite nicht&#8221;.
noindex verhindert also bei den &#8220;freundlichen&#8221; Suchmaschinen (es ist nur ein Hinweis woran sich aber nicht alle Crawler halten), dass die Seite in ihren Index aufgenommen werden. Als Beispiel könnte man hier die Impressums-Seite oder den Disclaimer nennen.
nofollow ist für die Blogsysteme oder Internetforen eingeführt worden. Spammer kamen &#160;...&#160;<a class="readmore" href="http://www.im-tal.net/256/noindex-und-nofollow/"><img src="http://www.im-tal.net/wp-content/themes/wp-andreas09/images/weiterlesen.png" alt="Weiterlesen &#187;" title="Weiterlesen &#187;" /></a>]]></description>
			<content:encoded><![CDATA[<p><strong>noindex</strong> heißt auf deutsch nichts anderes als &#8220;nehm diese Seite nicht in deinen Suchemaschinen-Index auf&#8221;.<br />
<strong>nofollow</strong> heißt auf deutsch nichts anderes als &#8220;Folge den Links auf dieser Seite nicht&#8221;.</p>
<p>noindex verhindert also bei den &#8220;freundlichen&#8221; Suchmaschinen (es ist nur ein Hinweis woran sich aber nicht alle Crawler halten), dass die Seite in ihren Index aufgenommen werden. Als Beispiel könnte man hier die Impressums-Seite oder den Disclaimer nennen.</p>
<p>nofollow ist für die Blogsysteme oder Internetforen eingeführt worden. Spammer kamen früh auf die Idee über die Kommentarfunktion sämtliche Links zu hinterlassen, die die Webcrawler dann natürlich abgegrast haben und als positive Verweise (Linkpopularität) auf die Spamseiten gewertet haben. Das sollte natürlich nicht Sinn und Zweck der Kommentarfunktion sein. Also wurde ca. 2005 das rel=&#8221;nofollow&#8221;-Attribut erfunden. Das Attribut kann den Weblinks angehängt werden. Bei Wordpress u.a. wird dies z.B. automatisch für die Kommentar-Links angefügt.</p>

<div class="wp_syntax"><div class="code"><pre class="html" style="font-family:monospace;">&lt;a href=&quot;http://example.com&quot; rel=&quot;external nofollow&quot;&gt;Example&lt;/a&gt;</pre></div></div>

<p>Für ganze Archive oder Seiten steht das Meta-Tag robots mit den Werten noindex und nofollow zur Verfügung.<br />
Wer also, z. B. in Wordpress für die Tages-Archive, die Suche, die 404-Seite, die Authoren-Archive und die Impressums-Seite die Indexierung verhindern aber trotzdem die Weiterverfolgung der Links aktivieren will, kann folgenden Code in die header.php seines Themes schreiben:</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">&lt;?php</span> <span style="color: #b1b100;">if</span><span style="color: #009900;">&#40;</span> is_day<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span> <span style="color: #339933;">||</span> is_search<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span> <span style="color: #339933;">||</span> is_404<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span> <span style="color: #339933;">||</span> is_author<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span> <span style="color: #339933;">||</span> is_page<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'impressum'</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span> <span style="color: #b1b100;">echo</span> <span style="color: #0000ff;">&quot;&lt;meta name=<span style="color: #000099; font-weight: bold;">\&quot;</span>robots<span style="color: #000099; font-weight: bold;">\&quot;</span> content=<span style="color: #000099; font-weight: bold;">\&quot;</span>noindex,follow<span style="color: #000099; font-weight: bold;">\&quot;</span> /&gt;&quot;</span><span style="color: #339933;">;</span> <span style="color: #009900;">&#125;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span></pre></div></div>

<p>grobe Übersetzung:<br />
&#8211;> wenn es sich um ein Tages-Archive ODER die Suche ODER die 404-Seite ODER die Authoren-Archive ODER die Impressums-Seite handelt<br />
&#8211;> dann setzte den Meta-Tag:  name=&#8221;robots&#8221; content=&#8221;noindex,follow&#8221; (keine Indexierung aber bitte den Links folgen)</p>
<p>Auch gibt es noch den Wert &#8220;noodp&#8221;. Mehr dazu: <a href="http://de.wikipedia.org/wiki/Open_Directory_Project">Wikipedia</a>.</p>
<br /><small>Copyright &copy; 2008-2009 <a href="http://www.im-tal.net">im-Tal.net</a> ( imtalnet (38.107.191.110) )</small><hr />]]></content:encoded>
			<wfw:commentRss>http://www.im-tal.net/256/noindex-und-nofollow/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Website mit verschiedenen Browsern testen</title>
		<link>http://www.im-tal.net/255/website-mit-verschiedenen-browsern-testen/</link>
		<comments>http://www.im-tal.net/255/website-mit-verschiedenen-browsern-testen/#comments</comments>
		<pubDate>Fri, 28 Nov 2008 20:11:40 +0000</pubDate>
		<dc:creator>maxe</dc:creator>
				<category><![CDATA[Joomla]]></category>
		<category><![CDATA[Mozilla Firefox und Thunderbird]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[Firefox]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Mozilla]]></category>

		<guid isPermaLink="false">http://www.im-tal.net/?p=255</guid>
		<description><![CDATA[Website-Besitzer haben oft nur ein bis zwei aktuelle Browser zur Verfügung um ihre Website zu testen. Wie sieht aber die Website in älteren (z.B. IE 6) oder in anderen nicht so weit verbreiteten Browsern aus? Naja, man könnte jetzt hergehen und sich alle Browser in den verschiedensten Versionen (was oft sowieso nicht geht) installieren &#8230;
Es geht aber auch etwas einfacher. Auf der Website http://browsershots.org kann man die Browser-Kompatibilität der Website mit momentan ca. 60 Browsern &#160;...&#160;<a class="readmore" href="http://www.im-tal.net/255/website-mit-verschiedenen-browsern-testen/"><img src="http://www.im-tal.net/wp-content/themes/wp-andreas09/images/weiterlesen.png" alt="Weiterlesen &#187;" title="Weiterlesen &#187;" /></a>]]></description>
			<content:encoded><![CDATA[<p>Website-Besitzer haben oft nur ein bis zwei aktuelle Browser zur Verfügung um ihre Website zu testen. Wie sieht aber die Website in älteren (z.B. IE 6) oder in anderen nicht so weit verbreiteten Browsern aus? Naja, man könnte jetzt hergehen und sich alle Browser in den verschiedensten Versionen (was oft sowieso nicht geht) installieren &#8230;</p>
<p>Es geht aber auch etwas einfacher. Auf der Website <a href="http://browsershots.org">http://browsershots.org</a> kann man die Browser-Kompatibilität der Website mit momentan ca. 60 Browsern testen und bekommt sogar von jedem Browser einen Screenshot.</p>
<p>Wer nicht ganz so viel testen will und sich nur auf den IE in den verschiedenen Versionen beschränken will kann sich den <a href="http://www.my-debugbar.com/wiki/IETester/HomePage">IETester</a> von DebugBar installieren. Damit lassen sich lokal die IE Versionen von 5.5 bis 8 testen.</p>
<br /><br /><small><h2>Verwandte Artikel:</h2><ul><li><a href="http://www.im-tal.net/202/wichtige-tastenkombinationen-unter-vista/" rel="bookmark" title="Permanent Link: Wichtige Tastenkombinationen unter Vista">Wichtige Tastenkombinationen unter Vista</a></li><li><a href="http://www.im-tal.net/impressum/" rel="bookmark" title="Permanent Link: Impressum">Impressum</a></li><li><a href="http://www.im-tal.net/247/wordpress-das-praxisbuch/" rel="bookmark" title="Permanent Link: Wordpress &#8211; Das Praxisbuch">Wordpress &#8211; Das Praxisbuch</a></li><li><a href="http://www.im-tal.net/251/beispiel-content/" rel="bookmark" title="Permanent Link: Beispiel Content">Beispiel Content</a></li><li><a href="http://www.im-tal.net/281/our-todo-list-plugin/" rel="bookmark" title="Permanent Link: Our Todo List Plugin">Our Todo List Plugin</a></li></ul></small><br /><small>Copyright &copy; 2008-2009 <a href="http://www.im-tal.net">im-Tal.net</a> ( imtalnet (38.107.191.110) )</small><hr />]]></content:encoded>
			<wfw:commentRss>http://www.im-tal.net/255/website-mit-verschiedenen-browsern-testen/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Globale Einstellungen in Joomla 1.5 ändern</title>
		<link>http://www.im-tal.net/227/globale-einstellungen-in-joomla-15-aendern/</link>
		<comments>http://www.im-tal.net/227/globale-einstellungen-in-joomla-15-aendern/#comments</comments>
		<pubDate>Thu, 11 Sep 2008 18:57:52 +0000</pubDate>
		<dc:creator>im-Tal.net</dc:creator>
				<category><![CDATA[Joomla]]></category>

		<guid isPermaLink="false">http://www.im-tal.net/?p=227</guid>
		<description><![CDATA[In Joomla 1.5 sind die Globalen Einstellungen etwas versteckter als in der Vorgängerversion.
für Beiträge:
Inhalt &#124; Beiträge
Voreinstellungen -&#62; z.B. Author-Anzeige, PDF/Print/Email etc.
für Weblinks:
Komponenten &#124; Weblinks
Voreinstellungen -&#62; z.B. Zugriffe etc.
für Kontakte:
Komponenten &#124; Kontakte
Voreinstellungen -&#62; z.B. eMail o. Mobilfunknummer anzeigen etc.
Verwandte Artikel:Titel in Joomla setzen, ändern und auslesenKompatibilitätsmodus in Joomla 1.5Anleitung Migration von Joomla! 1.0.x auf 1.5.xchCounter in Joomla 1.0.xx einbindenchCounter in Joomla 1.5.xx einbindenCopyright &#169; 2008-2009 im-Tal.net ( imtalnet (38.107.191.110) )]]></description>
			<content:encoded><![CDATA[<p>In Joomla 1.5 sind die Globalen Einstellungen etwas versteckter als in der Vorgängerversion.</p>
<p>für Beiträge:<br />
Inhalt | Beiträge<br />
Voreinstellungen -&gt; z.B. Author-Anzeige, PDF/Print/Email etc.</p>
<p>für Weblinks:<br />
Komponenten | Weblinks<br />
Voreinstellungen -&gt; z.B. Zugriffe etc.</p>
<p>für Kontakte:<br />
Komponenten | Kontakte<br />
Voreinstellungen -&gt; z.B. eMail o. Mobilfunknummer anzeigen etc.</p>
<br /><br /><small><h2>Verwandte Artikel:</h2><ul><li><a href="http://www.im-tal.net/224/titel-in-joomla-setzen-aendern-und-auslesen/" rel="bookmark" title="Permanent Link: Titel in Joomla setzen, ändern und auslesen">Titel in Joomla setzen, ändern und auslesen</a></li><li><a href="http://www.im-tal.net/226/kompatibilitaetsmodus-in-joomla-15-fuer-alte-komponenten-oder-module/" rel="bookmark" title="Permanent Link: Kompatibilitätsmodus in Joomla 1.5">Kompatibilitätsmodus in Joomla 1.5</a></li><li><a href="http://www.im-tal.net/210/anleitung-migration-von-joomla-10x-auf-15x/" rel="bookmark" title="Permanent Link: Anleitung Migration von Joomla! 1.0.x auf 1.5.x">Anleitung Migration von Joomla! 1.0.x auf 1.5.x</a></li><li><a href="http://www.im-tal.net/212/chcounter-in-joomla-10xx-einbinden/" rel="bookmark" title="Permanent Link: chCounter in Joomla 1.0.xx einbinden">chCounter in Joomla 1.0.xx einbinden</a></li><li><a href="http://www.im-tal.net/219/chcounter-in-joomla-15xx-einbinden/" rel="bookmark" title="Permanent Link: chCounter in Joomla 1.5.xx einbinden">chCounter in Joomla 1.5.xx einbinden</a></li></ul></small><br /><small>Copyright &copy; 2008-2009 <a href="http://www.im-tal.net">im-Tal.net</a> ( imtalnet (38.107.191.110) )</small><hr />]]></content:encoded>
			<wfw:commentRss>http://www.im-tal.net/227/globale-einstellungen-in-joomla-15-aendern/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Kompatibilitätsmodus in Joomla 1.5</title>
		<link>http://www.im-tal.net/226/kompatibilitaetsmodus-in-joomla-15-fuer-alte-komponenten-oder-module/</link>
		<comments>http://www.im-tal.net/226/kompatibilitaetsmodus-in-joomla-15-fuer-alte-komponenten-oder-module/#comments</comments>
		<pubDate>Thu, 11 Sep 2008 18:57:10 +0000</pubDate>
		<dc:creator>im-Tal.net</dc:creator>
				<category><![CDATA[Joomla]]></category>

		<guid isPermaLink="false">http://www.im-tal.net/?p=226</guid>
		<description><![CDATA[Falls Du in Joomla 1.5 beim installieren von Komponenten bzw. Modulen für Joomla 1.0.xx folgende Fehlermeldung bekommst:
Die Erweiterung scheint für eine frühere Version entwickelt zu sein. Zum Fertigstellen muß der Kompatibilitätsmodus in der &#8220;Konfiguration&#8221; aktiviert sein.
dann kannst Du so den Kompatibilitätsmodus aktivieren:
Erweiterungen &#124; Plugins
Plugin &#8220;System &#8211; Legacy&#8221;
Verwandte Artikel:Globale Einstellungen in Joomla 1.5 ändernMain Menü in Joomla 1.5.xx anpassenAnleitung Migration von Joomla! 1.0.x auf 1.5.xTitel in Joomla setzen, ändern und auslesenchCounter in Joomla 1.0.xx einbindenCopyright &#169; &#160;...&#160;<a class="readmore" href="http://www.im-tal.net/226/kompatibilitaetsmodus-in-joomla-15-fuer-alte-komponenten-oder-module/"><img src="http://www.im-tal.net/wp-content/themes/wp-andreas09/images/weiterlesen.png" alt="Weiterlesen &#187;" title="Weiterlesen &#187;" /></a>]]></description>
			<content:encoded><![CDATA[<p>Falls Du in Joomla 1.5 beim installieren von Komponenten bzw. Modulen für Joomla 1.0.xx folgende Fehlermeldung bekommst:</p>
<p>Die Erweiterung scheint für eine frühere Version entwickelt zu sein. Zum Fertigstellen muß der Kompatibilitätsmodus in der &#8220;Konfiguration&#8221; aktiviert sein.</p>
<p>dann kannst Du so den Kompatibilitätsmodus aktivieren:<br />
Erweiterungen | Plugins<br />
Plugin &#8220;System &#8211; Legacy&#8221;</p>
<br /><br /><small><h2>Verwandte Artikel:</h2><ul><li><a href="http://www.im-tal.net/227/globale-einstellungen-in-joomla-15-aendern/" rel="bookmark" title="Permanent Link: Globale Einstellungen in Joomla 1.5 ändern">Globale Einstellungen in Joomla 1.5 ändern</a></li><li><a href="http://www.im-tal.net/222/main-menue-in-joomla-15xx-den-anderen-menues-anpassen/" rel="bookmark" title="Permanent Link: Main Menü in Joomla 1.5.xx anpassen">Main Menü in Joomla 1.5.xx anpassen</a></li><li><a href="http://www.im-tal.net/210/anleitung-migration-von-joomla-10x-auf-15x/" rel="bookmark" title="Permanent Link: Anleitung Migration von Joomla! 1.0.x auf 1.5.x">Anleitung Migration von Joomla! 1.0.x auf 1.5.x</a></li><li><a href="http://www.im-tal.net/224/titel-in-joomla-setzen-aendern-und-auslesen/" rel="bookmark" title="Permanent Link: Titel in Joomla setzen, ändern und auslesen">Titel in Joomla setzen, ändern und auslesen</a></li><li><a href="http://www.im-tal.net/212/chcounter-in-joomla-10xx-einbinden/" rel="bookmark" title="Permanent Link: chCounter in Joomla 1.0.xx einbinden">chCounter in Joomla 1.0.xx einbinden</a></li></ul></small><br /><small>Copyright &copy; 2008-2009 <a href="http://www.im-tal.net">im-Tal.net</a> ( imtalnet (38.107.191.110) )</small><hr />]]></content:encoded>
			<wfw:commentRss>http://www.im-tal.net/226/kompatibilitaetsmodus-in-joomla-15-fuer-alte-komponenten-oder-module/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Titel in Joomla setzen, ändern und auslesen</title>
		<link>http://www.im-tal.net/224/titel-in-joomla-setzen-aendern-und-auslesen/</link>
		<comments>http://www.im-tal.net/224/titel-in-joomla-setzen-aendern-und-auslesen/#comments</comments>
		<pubDate>Thu, 11 Sep 2008 18:43:17 +0000</pubDate>
		<dc:creator>im-Tal.net</dc:creator>
				<category><![CDATA[Joomla]]></category>

		<guid isPermaLink="false">http://www.im-tal.net/?p=224</guid>
		<description><![CDATA[Der Browser- bzw. Seitentitel kann in Joomla einfacher als gedacht verändert, getauscht, gelöscht oder ausgelesen werden.
Um den Browsertitel in Joomla 1.0.xx dahin zu ändern, dass nur noch der Dokumententitel ohne Sitename steht, gehe wie folgt vor:
in der includes/joomla.php

<pre class="php" style="font-family:monospace;">$this-&#62;_head&#91;'title'&#93; = $title ? $GLOBALS&#91;'mosConfig_sitename'&#93; . ' - '. $title : $GLOBALS&#91;'mosConfig_sitename'&#93;;</pre>

ersetzen durch

<pre class="php" style="font-family:monospace;">$this-&#62;_head&#91;'title'&#93; = $title;</pre>


Möchte man die Reihenfolge von Sitename &#8211; Dokumententitel umkehren, muss man in der includes/joomla.php

<pre class="php" style="font-family:monospace;">$this-&#62;_head&#91;'title'&#93; = $title ? $GLOBALS&#91;'mosConfig_sitename'&#93; &#160;...&#160;<a class="readmore" href="http://www.im-tal.net/224/titel-in-joomla-setzen-aendern-und-auslesen/"><img src="http://www.im-tal.net/wp-content/themes/wp-andreas09/images/weiterlesen.png" alt="Weiterlesen &#187;" title="Weiterlesen &#187;" /></a>]]></description>
			<content:encoded><![CDATA[<p>Der Browser- bzw. Seitentitel kann in Joomla einfacher als gedacht verändert, getauscht, gelöscht oder ausgelesen werden.</p>
<p>Um den Browsertitel in Joomla 1.0.xx dahin zu ändern, dass nur noch der Dokumententitel ohne Sitename steht, gehe wie folgt vor:<br />
in der includes/joomla.php</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000088;">$this</span><span style="color: #339933;">-&gt;</span>_head<span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'title'</span><span style="color: #009900;">&#93;</span> <span style="color: #339933;">=</span> <span style="color: #000088;">$title</span> ? <span style="color: #000088;">$GLOBALS</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'mosConfig_sitename'</span><span style="color: #009900;">&#93;</span> <span style="color: #339933;">.</span> <span style="color: #0000ff;">' - '</span><span style="color: #339933;">.</span> <span style="color: #000088;">$title</span> <span style="color: #339933;">:</span> <span style="color: #000088;">$GLOBALS</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'mosConfig_sitename'</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">;</span></pre></div></div>

<p>ersetzen durch</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000088;">$this</span><span style="color: #339933;">-&gt;</span>_head<span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'title'</span><span style="color: #009900;">&#93;</span> <span style="color: #339933;">=</span> <span style="color: #000088;">$title</span><span style="color: #339933;">;</span></pre></div></div>

<hr style="border: 1px solid black; margin: 50px 0;">
<p>Möchte man die Reihenfolge von Sitename &#8211; Dokumententitel umkehren, muss man in der includes/joomla.php</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000088;">$this</span><span style="color: #339933;">-&gt;</span>_head<span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'title'</span><span style="color: #009900;">&#93;</span> <span style="color: #339933;">=</span> <span style="color: #000088;">$title</span> ? <span style="color: #000088;">$GLOBALS</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'mosConfig_sitename'</span><span style="color: #009900;">&#93;</span> <span style="color: #339933;">.</span> <span style="color: #0000ff;">' - '</span><span style="color: #339933;">.</span> <span style="color: #000088;">$title</span> <span style="color: #339933;">:</span> <span style="color: #000088;">$GLOBALS</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'mosConfig_sitename'</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">;</span></pre></div></div>

<p>ersetzen durch</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000088;">$this</span><span style="color: #339933;">-&gt;</span>_head<span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'title'</span><span style="color: #009900;">&#93;</span> <span style="color: #339933;">=</span> <span style="color: #000088;">$title</span> ? <span style="color: #000088;">$title</span> <span style="color: #339933;">.</span> <span style="color: #0000ff;">' - '</span> <span style="color: #339933;">.</span> <span style="color: #000088;">$GLOBALS</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'mosConfig_sitename'</span><span style="color: #009900;">&#93;</span> <span style="color: #339933;">:</span> <span style="color: #000088;">$GLOBALS</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'mosConfig_sitename'</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">;</span></pre></div></div>

<hr style="border: 1px solid black; margin: 50px 0;">
<p>Einen Dokumententitel in Joomla 1.0.xx setzen, z.B. in einer Komponente:</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000088;">$mainframe</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">SetPageTitle</span><span style="color: #009900;">&#40;</span> <span style="color: #0000ff;">'gewünschter Browsertitel'</span> <span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></div></div>

<hr style="border: 1px solid black; margin: 50px 0;">
<p>Seitentitel in Joomla 1.0.xx auslesen:</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000088;">$mainframe</span><span style="color: #339933;">-&gt;</span>_head<span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'title'</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">;</span></pre></div></div>

<hr style="border: 2px solid black; margin: 50px 0;">
<p>Seitentitel in Joomla 1.5 setzen:</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000088;">$mainframe</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">setPageTitle</span><span style="color: #009900;">&#40;</span> <span style="color: #0000ff;">'gewünschter Browsertitel'</span> <span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></div></div>

<hr style="border: 1px solid black; margin: 50px 0;">
<p>Seitentitel in Joomla 1.5 auslesen:</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000088;">$mainframe</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">getPageTitle</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></div></div>

<hr style="border: 1px solid black; margin: 50px 0;">
<p>Wer bei Joomla 1.5 im Browsertitel den Sitename stehen haben will muss die &#8220;head.php&#8221; im Pfad &#8220;libraries/joomla/document/html/renderer/&#8221; ändern.<br />
Dazu</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000088;">$strHtml</span> <span style="color: #339933;">.=</span> <span style="color: #000088;">$tab</span> <span style="color: #339933;">.</span> <span style="color: #0000ff;">'&lt;title&gt;'</span> <span style="color: #339933;">.</span> <span style="color: #990000;">htmlspecialchars</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$document</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">getTitle</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span> <span style="color: #339933;">.</span> <span style="color: #0000ff;">'&lt;/title&gt;'</span> <span style="color: #339933;">.</span> <span style="color: #000088;">$lnEnd</span><span style="color: #339933;">;</span></pre></div></div>

<p>suchen und durch folgende Zeile ersetzen</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000088;">$config</span> <span style="color: #339933;">=</span> <span style="color: #000000; font-weight: bold;">new</span> JConfig<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #b1b100;">if</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#40;</span> <span style="color: #000088;">$_SERVER</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'REQUEST_URI'</span><span style="color: #009900;">&#93;</span> <span style="color: #339933;">==</span> <span style="color: #0000ff;">'/'</span><span style="color: #009900;">&#41;</span> <span style="color: #339933;">||</span> <span style="color: #009900;">&#40;</span> <span style="color: #000088;">$_SERVER</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'REQUEST_URI'</span><span style="color: #009900;">&#93;</span> <span style="color: #339933;">==</span> <span style="color: #0000ff;">''</span> <span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#41;</span> <span style="color: #000088;">$site_name</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">''</span><span style="color: #339933;">;</span>
<span style="color: #b1b100;">else</span> <span style="color: #000088;">$site_name</span> <span style="color: #339933;">=</span> <span style="color: #000088;">$config</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">sitename</span> <span style="color: #339933;">.</span> <span style="color: #0000ff;">&quot; - &quot;</span><span style="color: #339933;">;</span>
<span style="color: #000088;">$strHtml</span> <span style="color: #339933;">.=</span> <span style="color: #000088;">$tab</span> <span style="color: #339933;">.</span> <span style="color: #0000ff;">'&lt;title&gt;'</span> <span style="color: #339933;">.</span> <span style="color: #000088;">$site_name</span> <span style="color: #339933;">.</span>  <span style="color: #990000;">htmlspecialchars</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$document</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">getTitle</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span> <span style="color: #339933;">.</span> <span style="color: #0000ff;">'&lt;/title&gt;'</span> <span style="color: #339933;">.</span> <span style="color: #000088;">$lnEnd</span><span style="color: #339933;">;</span></pre></div></div>

<br /><br /><small><h2>Verwandte Artikel:</h2><ul><li><a href="http://www.im-tal.net/227/globale-einstellungen-in-joomla-15-aendern/" rel="bookmark" title="Permanent Link: Globale Einstellungen in Joomla 1.5 ändern">Globale Einstellungen in Joomla 1.5 ändern</a></li><li><a href="http://www.im-tal.net/226/kompatibilitaetsmodus-in-joomla-15-fuer-alte-komponenten-oder-module/" rel="bookmark" title="Permanent Link: Kompatibilitätsmodus in Joomla 1.5">Kompatibilitätsmodus in Joomla 1.5</a></li><li><a href="http://www.im-tal.net/210/anleitung-migration-von-joomla-10x-auf-15x/" rel="bookmark" title="Permanent Link: Anleitung Migration von Joomla! 1.0.x auf 1.5.x">Anleitung Migration von Joomla! 1.0.x auf 1.5.x</a></li><li><a href="http://www.im-tal.net/212/chcounter-in-joomla-10xx-einbinden/" rel="bookmark" title="Permanent Link: chCounter in Joomla 1.0.xx einbinden">chCounter in Joomla 1.0.xx einbinden</a></li><li><a href="http://www.im-tal.net/219/chcounter-in-joomla-15xx-einbinden/" rel="bookmark" title="Permanent Link: chCounter in Joomla 1.5.xx einbinden">chCounter in Joomla 1.5.xx einbinden</a></li></ul></small><br /><small>Copyright &copy; 2008-2009 <a href="http://www.im-tal.net">im-Tal.net</a> ( imtalnet (38.107.191.110) )</small><hr />]]></content:encoded>
			<wfw:commentRss>http://www.im-tal.net/224/titel-in-joomla-setzen-aendern-und-auslesen/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Datum in der Joomla-Seitenanzeige ändern</title>
		<link>http://www.im-tal.net/223/die-parameter-um-das-datum-in-der-joomla-seitenanzeige-zu-aendern/</link>
		<comments>http://www.im-tal.net/223/die-parameter-um-das-datum-in-der-joomla-seitenanzeige-zu-aendern/#comments</comments>
		<pubDate>Thu, 11 Sep 2008 18:39:35 +0000</pubDate>
		<dc:creator>im-Tal.net</dc:creator>
				<category><![CDATA[Joomla]]></category>

		<guid isPermaLink="false">http://www.im-tal.net/?p=223</guid>
		<description><![CDATA[
%a &#8211; abgekürzter Name des Wochentages, abhängig von der gesetzten Umgebung
%A &#8211; ausgeschriebener Name des Wochentages, abhängig von der gesetzten Umgebung
%b &#8211; abgekürzter Name des Monats, abhängig von der gesetzten Umgebung
%B &#8211; ausgeschriebener Name des Monats, abhängig von der gesetzten Umgebung
%c &#8211; Wiedergabewerte für Datum und Zeit, abhängig von der gesetzten Umgebung
%C &#8211; Jahrhundert (Jahr geteilt durch 100, gekürzt auf Integer, Wertebereich 00 bis 99)
%d &#8211; Tag des Monats als Zahl (Bereich 01 bis 31)
%D &#160;...&#160;<a class="readmore" href="http://www.im-tal.net/223/die-parameter-um-das-datum-in-der-joomla-seitenanzeige-zu-aendern/"><img src="http://www.im-tal.net/wp-content/themes/wp-andreas09/images/weiterlesen.png" alt="Weiterlesen &#187;" title="Weiterlesen &#187;" /></a>]]></description>
			<content:encoded><![CDATA[<ul>
<li>%a &#8211; abgekürzter Name des Wochentages, abhängig von der gesetzten Umgebung</li>
<li>%A &#8211; ausgeschriebener Name des Wochentages, abhängig von der gesetzten Umgebung</li>
<li>%b &#8211; abgekürzter Name des Monats, abhängig von der gesetzten Umgebung</li>
<li>%B &#8211; ausgeschriebener Name des Monats, abhängig von der gesetzten Umgebung</li>
<li>%c &#8211; Wiedergabewerte für Datum und Zeit, abhängig von der gesetzten Umgebung</li>
<li>%C &#8211; Jahrhundert (Jahr geteilt durch 100, gekürzt auf Integer, Wertebereich 00 bis 99)</li>
<li>%d &#8211; Tag des Monats als Zahl (Bereich 01 bis 31)</li>
<li>%D &#8211; so wie %m/%d/%y</li>
<li>%e &#8211; Tag des Monats als Dezimal-Wert, einstelligen Werten wird ein Leerzeichen voran gestellt (Wertebereich Â´ 1Â´ bis Â´31Â´)</li>
<li>%g &#8211; wie %G, aber ohne Jahrhundert.</li>
<li>%G &#8211; Das vierstellige Jahr entsprechend der ISO Wochennummer (siehe %V). Das gleiche Format und der gleiche Wert wie bei %Y. Besonderheit: entspricht die ISO Wochennummer dem vorhergehenden oder folgenden Jahr, wird dieses Jahr verwendet.</li>
<li>%h &#8211; so wie %b</li>
<li>%H &#8211; Stunde als Zahl im 24-Stunden-Format (Bereich 00 bis 23)</li>
<li>%I &#8211; Stunde als Zahl im 12-Stunden-Format (Bereich 01 bis 12)</li>
<li>%j &#8211; Tag des Jahres als Zahl (Bereich 001 bis 366)</li>
<li>%m &#8211; Monat als Zahl (Bereich 01 bis 12)</li>
<li>%M &#8211; Minute als Dezimal-Wert</li>
<li>%n &#8211; neue Zeile</li>
<li>%p &#8211; entweder `am&#8217; oder `pm&#8217; (abhängig von der gesetzten Umgebung) oder die entsprechenden Zeichenketten der gesetzten Umgebung</li>
<li>%r &#8211; Zeit im Format a.m. oder p.m.</li>
<li>%R &#8211; Zeit in der 24-Stunden-Formatierung</li>
<li>%S &#8211; Sekunden als Dezimal-Wert</li>
<li>%t &#8211; Tabulator</li>
<li>%T &#8211; aktuelle Zeit, genau wie %H:%M:%S</li>
<li>%u &#8211; Tag der Woche als Dezimal-Wert [1,7], dabei ist 1 der Montag.</li>
<li>%U &#8211; Nummer der Woche des aktuellen Jahres als Dezimal-Wert, beginnend mit dem ersten Sonntag als erstem Tag der ersten Woche.</li>
<li>%V &#8211; Kalenderwoche (nach ISO 8601:1988) des aktuellen Jahres.<br />
Als Dezimal-Zahl mit dem Wertebereich 01 bis 53, wobei die Woche 01 die erste Woche mit mindestens 4 Tagen im aktuellen Jahr ist. Die Woche beginnt montags (nicht sonntags). (Benutzen Sie %G or %g für die Jahreskomponente, die der Wochennummer für den gegebenen Timestamp entspricht.)</li>
<li>%w &#8211; Wochentag als Dezimal-Wert, Sonntag ist 0</li>
<li>%W &#8211; Nummer der Woche des aktuellen Jahres, beginnend mit dem ersten Montag als erstem Tag der ersten Woche.</li>
<li>%x &#8211; bevorzugte Datumswiedergabe (ohne Zeit), abhängig von der gesetzten Umgebung.</li>
<li>%X &#8211; bevorzugte Zeitwiedergabe (ohne Datum), abhängig von der gesetzten Umgebung.</li>
<li>%y &#8211; Jahr als 2-stellige-Zahl (Bereich 00 bis 99)</li>
<li>%Y &#8211; Jahr als 4-stellige-Zahl inklusive des Jahrhunderts</li>
<li>%Z &#8211; Zeitzone, Name oder eine Abkürzung</li>
<li>%% &#8211; ein %-Zeichen</li>
</ul>
<br /><br /><small><h2>Verwandte Artikel:</h2><ul><li><a href="http://www.im-tal.net/227/globale-einstellungen-in-joomla-15-aendern/" rel="bookmark" title="Permanent Link: Globale Einstellungen in Joomla 1.5 ändern">Globale Einstellungen in Joomla 1.5 ändern</a></li><li><a href="http://www.im-tal.net/224/titel-in-joomla-setzen-aendern-und-auslesen/" rel="bookmark" title="Permanent Link: Titel in Joomla setzen, ändern und auslesen">Titel in Joomla setzen, ändern und auslesen</a></li><li><a href="http://www.im-tal.net/226/kompatibilitaetsmodus-in-joomla-15-fuer-alte-komponenten-oder-module/" rel="bookmark" title="Permanent Link: Kompatibilitätsmodus in Joomla 1.5">Kompatibilitätsmodus in Joomla 1.5</a></li><li><a href="http://www.im-tal.net/210/anleitung-migration-von-joomla-10x-auf-15x/" rel="bookmark" title="Permanent Link: Anleitung Migration von Joomla! 1.0.x auf 1.5.x">Anleitung Migration von Joomla! 1.0.x auf 1.5.x</a></li><li><a href="http://www.im-tal.net/28/thunderbird-kopf-beim-antworten-aendern-m-mustermann-schrieb/" rel="bookmark" title="Permanent Link: Thunderbird-Kopf beim Antworten ändern">Thunderbird-Kopf beim Antworten ändern</a></li></ul></small><br /><small>Copyright &copy; 2008-2009 <a href="http://www.im-tal.net">im-Tal.net</a> ( imtalnet (38.107.191.110) )</small><hr />]]></content:encoded>
			<wfw:commentRss>http://www.im-tal.net/223/die-parameter-um-das-datum-in-der-joomla-seitenanzeige-zu-aendern/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Main Menü in Joomla 1.5.xx anpassen</title>
		<link>http://www.im-tal.net/222/main-menue-in-joomla-15xx-den-anderen-menues-anpassen/</link>
		<comments>http://www.im-tal.net/222/main-menue-in-joomla-15xx-den-anderen-menues-anpassen/#comments</comments>
		<pubDate>Wed, 10 Sep 2008 22:38:25 +0000</pubDate>
		<dc:creator>im-Tal.net</dc:creator>
				<category><![CDATA[Joomla]]></category>

		<guid isPermaLink="false">http://www.im-tal.net/?p=222</guid>
		<description><![CDATA[Im Backend ist unter
Erweiterungen -&#62; Module -&#62; Modul &#8220;Main Menü&#8221; &#8211; Erweiterte Parameter
diesem ein Modul-Klassen-Suffix (_menu) zugeordnet. Wenn Du aber das Aussehen des Main Menüs den anderen Menüs anpassen willst, solltest Du das Suffix entfernen.
Anders herum geht es natürlich auch:
Setze in die anderen Menüs auch das Modul-Klassen-Suffix = _menu.
Verwandte Artikel:Kompatibilitätsmodus in Joomla 1.5Anleitung Migration von Joomla! 1.0.x auf 1.5.xchCounter in Joomla 1.5.xx einbindenSchwache Grafikkarte unter Vista?Titel in Joomla setzen, ändern und auslesenCopyright &#169; 2008-2009 im-Tal.net &#160;...&#160;<a class="readmore" href="http://www.im-tal.net/222/main-menue-in-joomla-15xx-den-anderen-menues-anpassen/"><img src="http://www.im-tal.net/wp-content/themes/wp-andreas09/images/weiterlesen.png" alt="Weiterlesen &#187;" title="Weiterlesen &#187;" /></a>]]></description>
			<content:encoded><![CDATA[<p>Im Backend ist unter</p>
<p>Erweiterungen -&gt; Module -&gt; Modul &#8220;Main Menü&#8221; &#8211; Erweiterte Parameter</p>
<p>diesem ein Modul-Klassen-Suffix (_menu) zugeordnet. Wenn Du aber das Aussehen des Main Menüs den anderen Menüs anpassen willst, solltest Du das Suffix entfernen.</p>
<p>Anders herum geht es natürlich auch:<br />
Setze in die anderen Menüs auch das Modul-Klassen-Suffix = _menu.</p>
<br /><br /><small><h2>Verwandte Artikel:</h2><ul><li><a href="http://www.im-tal.net/226/kompatibilitaetsmodus-in-joomla-15-fuer-alte-komponenten-oder-module/" rel="bookmark" title="Permanent Link: Kompatibilitätsmodus in Joomla 1.5">Kompatibilitätsmodus in Joomla 1.5</a></li><li><a href="http://www.im-tal.net/210/anleitung-migration-von-joomla-10x-auf-15x/" rel="bookmark" title="Permanent Link: Anleitung Migration von Joomla! 1.0.x auf 1.5.x">Anleitung Migration von Joomla! 1.0.x auf 1.5.x</a></li><li><a href="http://www.im-tal.net/219/chcounter-in-joomla-15xx-einbinden/" rel="bookmark" title="Permanent Link: chCounter in Joomla 1.5.xx einbinden">chCounter in Joomla 1.5.xx einbinden</a></li><li><a href="http://www.im-tal.net/190/schwache-grafikkarte-transparenz-abschalten-und-flip3d-etc-weiternutzen/" rel="bookmark" title="Permanent Link: Schwache Grafikkarte unter Vista?">Schwache Grafikkarte unter Vista?</a></li><li><a href="http://www.im-tal.net/224/titel-in-joomla-setzen-aendern-und-auslesen/" rel="bookmark" title="Permanent Link: Titel in Joomla setzen, ändern und auslesen">Titel in Joomla setzen, ändern und auslesen</a></li></ul></small><br /><small>Copyright &copy; 2008-2009 <a href="http://www.im-tal.net">im-Tal.net</a> ( imtalnet (38.107.191.110) )</small><hr />]]></content:encoded>
			<wfw:commentRss>http://www.im-tal.net/222/main-menue-in-joomla-15xx-den-anderen-menues-anpassen/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
