<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss 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/" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>daniel-kemper.de» Blog</title>
	
	<link>http://www.daniel-kemper.de</link>
	<description>privater wordpress blog</description>
	<lastBuildDate>Fri, 20 Aug 2010 22:55:21 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/danielkemper" /><feedburner:info uri="danielkemper" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><feedburner:browserFriendly></feedburner:browserFriendly><item>
		<title>Einfaches Checkbox Replacement mit JQuery</title>
		<link>http://www.daniel-kemper.de/2010/08/20/einfaches-checkbox-replacement-mit-jquery/</link>
		<comments>http://www.daniel-kemper.de/2010/08/20/einfaches-checkbox-replacement-mit-jquery/#comments</comments>
		<pubDate>Fri, 20 Aug 2010 22:41:15 +0000</pubDate>
		<dc:creator>Daniel</dc:creator>
				<category><![CDATA[Javascript]]></category>
		<category><![CDATA[addons]]></category>
		<category><![CDATA[checkbox]]></category>
		<category><![CDATA[fancy form]]></category>
		<category><![CDATA[jquery]]></category>
		<category><![CDATA[plugin]]></category>
		<category><![CDATA[script]]></category>

		<guid isPermaLink="false">http://www.daniel-kemper.de/?p=40</guid>
		<description><![CDATA[
			
				
			
		
Auf der Suche nach einer JQuery Alternative zu FancyForm  bin ich nicht richtig fündig geworden. Deshalb habe ich selbst eine kleine Alternative geschrieben.
Ist nicht viel, aber ich denke ganz in Ordnung.
Das Plugin soll einfach nur die Checkbox durch Bilder ersetzen.
Wichtig:
Jedes Checkbox Feld braucht ein Label Feld. Die Id der Checkbox muss mit der Id [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-top: 5px; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.daniel-kemper.de%2F2010%2F08%2F20%2Feinfaches-checkbox-replacement-mit-jquery%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.daniel-kemper.de%2F2010%2F08%2F20%2Feinfaches-checkbox-replacement-mit-jquery%2F&amp;source=danielkemper&amp;style=normal&amp;service=bit.ly&amp;hashtags=addons,checkbox,fancy+form,Javascript,jquery,plugin,script" height="61" width="50" /><br />
			</a>
		</div>
<p>Auf der Suche nach einer <a href="http://jquery.org">JQuery</a> Alternative zu <a href="http://lipidity.com/fancy-form/">FancyForm </a> bin ich nicht richtig fündig geworden. Deshalb habe ich selbst eine kleine Alternative geschrieben.</p>
<p>Ist nicht viel, aber ich denke ganz in Ordnung.</p>
<p>Das Plugin soll einfach nur die Checkbox durch Bilder ersetzen.</p>
<p><strong>Wichtig:</strong></p>
<p>Jedes Checkbox Feld braucht ein Label Feld. Die Id der Checkbox muss mit der Id eines Labels übereinstimmen.</p>
<p><a href="http://www.daniel-kemper.de/wp-content/uploads/2010/08/vorher.png"><img class="size-full wp-image-50 alignnone" title="vorher" src="http://www.daniel-kemper.de/wp-content/uploads/2010/08/vorher.png" alt="" width="432" height="31" /></a></p>
<p><a href="http://www.daniel-kemper.de/wp-content/uploads/2010/08/nachher.png"><img class="size-full wp-image-51 alignnone" title="nachher" src="http://www.daniel-kemper.de/wp-content/uploads/2010/08/nachher.png" alt="" width="152" height="190" /></a></p>
<p><strong style="clear: both;">HTML-Code</strong></p>

<div class="wp_syntax"><div class="code"><pre class="html4strict" style="font-family:monospace;"><span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">label</span> <span style="color: #000066;">for</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;apple&quot;</span>&gt;</span>Apple<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">label</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">input</span> <span style="color: #000066;">id</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;apple&quot;</span> <span style="color: #000066;">checked</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;checked&quot;</span> <span style="color: #000066;">name</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;apple&quot;</span> <span style="color: #000066;">type</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;checkbox&quot;</span> <span style="color: #66cc66;">/</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">label</span> <span style="color: #000066;">for</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;strawberry&quot;</span>&gt;</span>Strawberry<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">label</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">input</span> <span style="color: #000066;">id</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;strawberry&quot;</span> <span style="color: #000066;">name</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;strawberry&quot;</span> <span style="color: #000066;">type</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;checkbox&quot;</span> <span style="color: #66cc66;">/</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">label</span> <span style="color: #000066;">for</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;pear&quot;</span>&gt;</span>Pear<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">label</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">input</span> <span style="color: #000066;">id</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;pear&quot;</span> <span style="color: #000066;">name</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;pear&quot;</span> <span style="color: #000066;">type</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;checkbox&quot;</span> <span style="color: #66cc66;">/</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">label</span> <span style="color: #000066;">for</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;cranberry&quot;</span>&gt;</span>Cranberry<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">label</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">input</span> <span style="color: #000066;">id</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;cranberry&quot;</span> <span style="color: #000066;">name</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;cranberry&quot;</span> <span style="color: #000066;">type</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;checkbox&quot;</span> <span style="color: #66cc66;">/</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">label</span> <span style="color: #000066;">for</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;carrot&quot;</span>&gt;</span>Carrot<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">label</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">input</span> <span style="color: #000066;">id</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;carrot&quot;</span> <span style="color: #000066;">checked</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;checked&quot;</span> <span style="color: #000066;">name</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;carrot&quot;</span> <span style="color: #000066;">type</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;checkbox&quot;</span> <span style="color: #66cc66;">/</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">label</span> <span style="color: #000066;">for</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;peach&quot;</span>&gt;</span>Peach<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">label</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">input</span> <span style="color: #000066;">id</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;peach&quot;</span> <span style="color: #000066;">checked</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;checked&quot;</span> <span style="color: #000066;">name</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;peach&quot;</span> <span style="color: #000066;">type</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;checkbox&quot;</span> <span style="color: #66cc66;">/</span>&gt;</span></pre></div></div>

<p><strong>CSS-Code</strong></p>

<div class="wp_syntax"><div class="code"><pre class="css" style="font-family:monospace;">label<span style="color: #6666ff;">.checkbox_checked</span> <span style="color: #00AA00;">&#123;</span>
  <span style="color: #000000; font-weight: bold;">background</span><span style="color: #00AA00;">:</span> <span style="color: #cc00cc;">#fff</span> <span style="color: #993333;">url</span><span style="color: #00AA00;">&#40;</span><span style="color: #ff0000; font-style: italic;">chk_on.png</span><span style="color: #00AA00;">&#41;</span> <span style="color: #993333;">no-repeat</span><span style="color: #00AA00;">;</span>
  <span style="color: #000000; font-weight: bold;">display</span><span style="color: #00AA00;">:</span> <span style="color: #993333;">block</span><span style="color: #00AA00;">;</span>
  <span style="color: #000000; font-weight: bold;">margin</span><span style="color: #00AA00;">:</span> <span style="color: #933;">10px</span> <span style="color: #cc66cc;">0</span><span style="color: #00AA00;">;</span>
  <span style="color: #000000; font-weight: bold;">padding-left</span><span style="color: #00AA00;">:</span> <span style="color: #933;">25px</span><span style="color: #00AA00;">;</span>
  <span style="color: #000000; font-weight: bold;">cursor</span><span style="color: #00AA00;">:</span> <span style="color: #993333;">pointer</span><span style="color: #00AA00;">;</span>
<span style="color: #00AA00;">&#125;</span>
label<span style="color: #6666ff;">.checkbox_unchecked</span>  <span style="color: #00AA00;">&#123;</span>
  <span style="color: #000000; font-weight: bold;">background</span><span style="color: #00AA00;">:</span> <span style="color: #cc00cc;">#fff</span> <span style="color: #993333;">url</span><span style="color: #00AA00;">&#40;</span><span style="color: #ff0000; font-style: italic;">chk_off.png</span><span style="color: #00AA00;">&#41;</span> <span style="color: #993333;">no-repeat</span><span style="color: #00AA00;">;</span>  
  <span style="color: #000000; font-weight: bold;">display</span><span style="color: #00AA00;">:</span> <span style="color: #993333;">block</span><span style="color: #00AA00;">;</span>
  <span style="color: #000000; font-weight: bold;">margin</span><span style="color: #00AA00;">:</span> <span style="color: #933;">10px</span> <span style="color: #cc66cc;">0</span><span style="color: #00AA00;">;</span>
  <span style="color: #000000; font-weight: bold;">padding-left</span><span style="color: #00AA00;">:</span> <span style="color: #933;">25px</span><span style="color: #00AA00;">;</span>
  <span style="color: #000000; font-weight: bold;">cursor</span><span style="color: #00AA00;">:</span> <span style="color: #993333;">pointer</span><span style="color: #00AA00;">;</span>
<span style="color: #00AA00;">&#125;</span></pre></div></div>

<p><strong>JavaScript Code:</strong></p>

<div class="wp_syntax"><div class="code"><pre class="javascript" style="font-family:monospace;">$<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;">'input[type=checkbox]'</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">each</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: #009900;">&#40;</span><span style="color: #3366CC;">&quot;label[for=&quot;</span><span style="color: #339933;">+</span>$<span style="color: #009900;">&#40;</span><span style="color: #000066; font-weight: bold;">this</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">attr</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">'id'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">+</span><span style="color: #3366CC;">&quot;]&quot;</span><span style="color: #009900;">&#41;</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>e<span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
			e.<span style="color: #660066;">preventDefault</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
			c <span style="color: #339933;">=</span> $<span style="color: #009900;">&#40;</span><span style="color: #3366CC;">&quot;#&quot;</span><span style="color: #339933;">+</span>$<span style="color: #009900;">&#40;</span><span style="color: #000066; font-weight: bold;">this</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">attr</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">'for'</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
			$<span style="color: #009900;">&#40;</span>c<span style="color: #009900;">&#41;</span>.<span style="color: #660066;">attr</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">'checked'</span><span style="color: #339933;">,!</span>$<span style="color: #009900;">&#40;</span>c<span style="color: #009900;">&#41;</span>.<span style="color: #000066; font-weight: bold;">is</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">':checked'</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span>.<span style="color: #000066; font-weight: bold;">is</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">':checked'</span><span style="color: #009900;">&#41;</span> <span style="color: #339933;">?</span> $<span style="color: #009900;">&#40;</span><span style="color: #000066; font-weight: bold;">this</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">removeClass</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">'checkbox_unchecked'</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">addClass</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">'checkbox_checked'</span><span style="color: #009900;">&#41;</span> <span style="color: #339933;">:</span> $<span style="color: #009900;">&#40;</span><span style="color: #000066; font-weight: bold;">this</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">removeClass</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">'checkbox_checked'</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">addClass</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">'checkbox_unchecked'</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: #660066;">addClass</span><span style="color: #009900;">&#40;</span>$<span style="color: #009900;">&#40;</span><span style="color: #000066; font-weight: bold;">this</span><span style="color: #009900;">&#41;</span>.<span style="color: #000066; font-weight: bold;">is</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">':checked'</span><span style="color: #009900;">&#41;</span> <span style="color: #339933;">?</span> <span style="color: #3366CC;">'checkbox_checked'</span> <span style="color: #339933;">:</span> <span style="color: #3366CC;">'checkbox_unchecked'</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: #660066;">hide</span><span style="color: #009900;">&#40;</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></pre></div></div>

<p><a href="http://dkemper.de/sandbox/jquery-checkbox/sample.php">Demo</a> | <a href="http://dkemper.de/sandbox/jquery-checkbox/source.html">Code</a> | <a href="http://dkemper.de/sandbox/jquery-checkbox/download.zip">Download</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.daniel-kemper.de/2010/08/20/einfaches-checkbox-replacement-mit-jquery/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>XMarks in Wordpress integrieren</title>
		<link>http://www.daniel-kemper.de/2010/03/12/xmarks-in-wordpress-integrieren/</link>
		<comments>http://www.daniel-kemper.de/2010/03/12/xmarks-in-wordpress-integrieren/#comments</comments>
		<pubDate>Fri, 12 Mar 2010 21:29:54 +0000</pubDate>
		<dc:creator>Daniel</dc:creator>
				<category><![CDATA[Allgemein]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[integration]]></category>
		<category><![CDATA[plugins]]></category>

		<guid isPermaLink="false">http://www.daniel-kemper.de/?p=19</guid>
		<description><![CDATA[
			
				
			
		
XMarks ist einer meiner lieblings Firefox Extension. Damit Ihr auch an meinen Entdeckungen im Internet teilhaben könnt, habe ich Sie in der rechten Spalte den Punkt &#8220;Link Empfehlungen&#8221; eingeführt.
Wer im Wordpress Plugin Repository nach einer XMarks Extension sucht, der sucht vergebens ein Plugin. Dennoch kann man die letzten Bookmarks einfach integrieren.


Wie stellt ich euch vor.
1) [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-top: 5px; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.daniel-kemper.de%2F2010%2F03%2F12%2Fxmarks-in-wordpress-integrieren%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.daniel-kemper.de%2F2010%2F03%2F12%2Fxmarks-in-wordpress-integrieren%2F&amp;source=danielkemper&amp;style=normal&amp;service=bit.ly&amp;hashtags=integration,plugins" height="61" width="50" /><br />
			</a>
		</div>
<p><a href="https://addons.mozilla.org/de/firefox/addon/2410">XMarks</a> ist einer meiner lieblings Firefox Extension. Damit Ihr auch an meinen Entdeckungen im Internet teilhaben könnt, habe ich Sie in der rechten Spalte den Punkt &#8220;Link Empfehlungen&#8221; eingeführt.</p>
<p>Wer im Wordpress Plugin Repository nach einer XMarks Extension sucht, der sucht vergebens ein Plugin. Dennoch kann man die letzten Bookmarks einfach integrieren.<br />
<a href="http://www.daniel-kemper.de/wp-content/uploads/2010/03/xmarks.gif"><img src="http://www.daniel-kemper.de/wp-content/uploads/2010/03/xmarks.gif" alt="" title="xmarks" width="489" height="273" /></a><br />
<span id="more-19"></span><br />
Wie stellt ich euch vor.<br />
1) Geht auf die Seite: <a href="http://my.xmarks.com" target="_new">http://my.xmarks.com</a> und loggt euch ein.<br />
2) Nach dem &#8220;Einloggen&#8221; solltet Ihr alle eure Bookmarks in der Übersicht sehen inklusive eurer Ordner.<br />
3) Legt einen neuen Ordner &#8220;Empfehlungen&#8221; an.<br />
4) Wählt den Ordner und klickt auf &#8220;Share&#8221; in der oberen Navigationsleiste.<br />
<a href="http://www.daniel-kemper.de/wp-content/uploads/2010/03/sharefolder.gif"><img src="http://www.daniel-kemper.de/wp-content/uploads/2010/03/sharefolder-150x150.gif" alt="" title="Share Folder Übersicht XMarks" width="150" height="150" class="alignleft size-thumbnail wp-image-21" /></a><br />
5) In dem PopUp kopiert den Url &#8220;RSS-Feed&#8221; in die Zwischenablage.<br />
6) Ladet euch das Plugin <a href="http://wordpress.org/extend/plugins/simply-rss-fetcher/">Simply RSS Fetcher</a> aus dem Wordpress Repository und installiert es auf eurem Server.<br />
7) Im Normalfall könnt Ihr jetzt einfach das &#8220;Widget&#8221; in die Sidebar laden und die Url aus der XMarks Seite einfügen und an die Stelle in der Sidebar reinladen.<br />
8 ) Geht auf eine empfehlenswerte Seite im Netz oder speichert einfach ein Bookmark eine Seite in dem Ordner.<br />
9) Schaut euch das Ergebnis an.</p>
<p>Ich denke eine einfache und sinnvolle Maßnahme um Besuchszahlen der Website zu erhöhen.</p>
<p>Viel Spaß,</p>
]]></content:encoded>
			<wfw:commentRss>http://www.daniel-kemper.de/2010/03/12/xmarks-in-wordpress-integrieren/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Probleme mit Typo3 Backend Login</title>
		<link>http://www.daniel-kemper.de/2010/03/11/probleme-mit-typo3-backend-login/</link>
		<comments>http://www.daniel-kemper.de/2010/03/11/probleme-mit-typo3-backend-login/#comments</comments>
		<pubDate>Thu, 11 Mar 2010 22:13:08 +0000</pubDate>
		<dc:creator>Daniel</dc:creator>
				<category><![CDATA[Typo3]]></category>

		<guid isPermaLink="false">http://dkemper.de/?p=6</guid>
		<description><![CDATA[
			
				
			
		
Wer Probleme mit dem Backend User von Typo3 beim einloggen hat, sollte einmal nach der Einstellung Cookie Domain schauen. Ich hatte dieser auf Anforderung von der Extension sr_freecap geändert. 
$TYPO3_CONF_VARS['SYS']['cookieDomain'] = 'dkemper.de'
Wichtig ist das die Temporären Daten (temp_**) gelöscht werden.
Falls das Passwort vergessen wurde, kann man einen neuen Admin User unter. http://www.example.de/typo3/install/index.php erstellen.
Ein kleiner Tipp, [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-top: 5px; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.daniel-kemper.de%2F2010%2F03%2F11%2Fprobleme-mit-typo3-backend-login%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.daniel-kemper.de%2F2010%2F03%2F11%2Fprobleme-mit-typo3-backend-login%2F&amp;source=danielkemper&amp;style=normal&amp;service=bit.ly&amp;hashtags=Typo3" height="61" width="50" /><br />
			</a>
		</div>
<p><div id="attachment_7" class="wp-caption alignleft" style="width: 160px"><a href="http://dkemper.de/wp-content/uploads/2010/03/typo3_backend_loin.png"><img src="http://dkemper.de/wp-content/uploads/2010/03/typo3_backend_loin-150x150.png" alt="Login Maske von Typo3" title="Typo3 Backend Login" width="150" height="150" class="size-thumbnail wp-image-7" /></a><p class="wp-caption-text">Standard Login Maske mit Meldung</p></div>Wer Probleme mit dem Backend User von Typo3 beim einloggen hat, sollte einmal nach der Einstellung Cookie Domain schauen. Ich hatte dieser auf Anforderung von der Extension <a href="http://typo3.org/extensions/repository/view/sr_freecap/current/">sr_freecap</a> geändert. </p>
<p><code>$TYPO3_CONF_VARS['SYS']['cookieDomain'] = 'dkemper.de'</code></p>
<p>Wichtig ist das die Temporären Daten (temp_**) gelöscht werden.<br />
Falls das Passwort vergessen wurde, kann man einen neuen Admin User unter. http://www.example.de/typo3/install/index.php erstellen.</p>
<p>Ein kleiner Tipp, der aber hilfreich sein kann.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.daniel-kemper.de/2010/03/11/probleme-mit-typo3-backend-login/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
