<?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>Timo Körber Webblog &#187; admin</title>
	<atom:link href="http://www.timokoerber.de/blog/tag/admin/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.timokoerber.de/blog</link>
	<description></description>
	<lastBuildDate>Wed, 18 Nov 2009 20:33:27 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Magento &#8211; Admin Login Problem im Firefox</title>
		<link>http://www.timokoerber.de/blog/magento/magento-admin-login-problem-im-firefox/</link>
		<comments>http://www.timokoerber.de/blog/magento/magento-admin-login-problem-im-firefox/#comments</comments>
		<pubDate>Mon, 27 Jul 2009 17:50:19 +0000</pubDate>
		<dc:creator>Timo Körber</dc:creator>
				<category><![CDATA[Magento]]></category>
		<category><![CDATA[admin]]></category>
		<category><![CDATA[cookies]]></category>
		<category><![CDATA[einloggen]]></category>
		<category><![CDATA[fehler]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[login]]></category>
		<category><![CDATA[problem]]></category>

		<guid isPermaLink="false">http://www.timokoerber.de/blog/?p=17</guid>
		<description><![CDATA[Bei verschiedenen Magento Installationen ist es mir bisher passiert, dass man sich nach  erfolgreicher Installation nicht im Admin-Bereich einloggen kann, zumindest nicht mit Firefox und dem Internet Explorer]]></description>
			<content:encoded><![CDATA[<p>Bei verschiedenen Magento Installationen ist es mir bisher passiert, dass man sich nach  erfolgreicher Installation nicht im Admin-Bereich einloggen kann, zumindest nicht mit Firefox und dem Internet Explorer. Opera und Chrome schienen keine Probleme zu haben. Eine wirklich handfeste Lösung habe ich für dieses Problem bisher nicht gefunden, aber eine Möglichkeit das Problem vorerst zu beheben ist Folgende.<span id="more-17"></span></p>
<p>In der Datei app<strong>/code/core/Mage/Core/Model/Session/Abstract/Varien.php </strong>findet ihr ungefähr in <strong>Zeile 77 </strong>folgenden Code.</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #666666; font-style: italic;">// set session cookie params</span>
<span style="color: #990000;">session_set_cookie_params</span><span style="color: #009900;">&#40;</span>
    <span style="color: #000088;">$this</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">getCookie</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">getLifetime</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">,</span>
    <span style="color: #000088;">$this</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">getCookie</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">getPath</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">,</span>
    <span style="color: #000088;">$this</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">getCookie</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">getDomain</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">,</span>
    <span style="color: #000088;">$this</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">getCookie</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">isSecure</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">,</span>
    <span style="color: #000088;">$this</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">getCookie</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">getHttponly</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span>
<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></div></div>

<p>Wenn ihr dort die letzten drei Methodenaufrufe auskommentiert, könnt ihr euch wieder mit dem lieben Firefox im Admin-Bereich einloggen.</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #666666; font-style: italic;">// set session cookie params</span>
<span style="color: #990000;">session_set_cookie_params</span><span style="color: #009900;">&#40;</span>
    <span style="color: #000088;">$this</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">getCookie</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">getLifetime</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">,</span>
    <span style="color: #000088;">$this</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">getCookie</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">getPath</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span>
    <span style="color: #666666; font-style: italic;">//$this-&gt;getCookie()-&gt;getDomain(),</span>
    <span style="color: #666666; font-style: italic;">//$this-&gt;getCookie()-&gt;isSecure(),</span>
    <span style="color: #666666; font-style: italic;">//$this-&gt;getCookie()-&gt;getHttponly()</span>
<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></div></div>

]]></content:encoded>
			<wfw:commentRss>http://www.timokoerber.de/blog/magento/magento-admin-login-problem-im-firefox/feed/</wfw:commentRss>
		<slash:comments>11</slash:comments>
		</item>
	</channel>
</rss>

