<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments on: Add Magento Admin Account Using MySQL Script</title>
	<atom:link href="http://classyllama.com/development/magento-development/add-magento-admin-account-using-mysql-script/feed/" rel="self" type="application/rss+xml" />
	<link>http://classyllama.com/development/magento-development/add-magento-admin-account-using-mysql-script/</link>
	<description>Classy Llama Studios is a team of developers, designers and marketers specializing in Magento, Wordpress and Custom Web Application development.</description>
	<lastBuildDate>Thu, 22 Jul 2010 04:22:21 -0400</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Julien Guiss</title>
		<link>http://classyllama.com/development/magento-development/add-magento-admin-account-using-mysql-script/comment-page-1/#comment-169</link>
		<dc:creator>Julien Guiss</dc:creator>
		<pubDate>Wed, 05 May 2010 06:45:03 +0000</pubDate>
		<guid isPermaLink="false">http://classyllama.com/?p=236#comment-169</guid>
		<description>Thanks a lot for this snippet of code !</description>
		<content:encoded><![CDATA[<p>Thanks a lot for this snippet of code !</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ehansen</title>
		<link>http://classyllama.com/development/magento-development/add-magento-admin-account-using-mysql-script/comment-page-1/#comment-99</link>
		<dc:creator>ehansen</dc:creator>
		<pubDate>Wed, 03 Mar 2010 16:00:11 +0000</pubDate>
		<guid isPermaLink="false">http://classyllama.com/?p=236#comment-99</guid>
		<description>@Semulka - This script creates admin accounts that have access to all parts of Magento.  If you wanted to give them access to only certain parts of Magento, you&#039;d need to go into Magento and create a separate role, and then update the script to reference the name of that role.  Right now, it&#039;s referencing &quot;Administrators&quot;.</description>
		<content:encoded><![CDATA[<p>@Semulka &#8211; This script creates admin accounts that have access to all parts of Magento.  If you wanted to give them access to only certain parts of Magento, you&#8217;d need to go into Magento and create a separate role, and then update the script to reference the name of that role.  Right now, it&#8217;s referencing &#8220;Administrators&#8221;.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Semakula</title>
		<link>http://classyllama.com/development/magento-development/add-magento-admin-account-using-mysql-script/comment-page-1/#comment-97</link>
		<dc:creator>Semakula</dc:creator>
		<pubDate>Wed, 03 Mar 2010 05:06:35 +0000</pubDate>
		<guid isPermaLink="false">http://classyllama.com/?p=236#comment-97</guid>
		<description>Hi all,

Does this script actually create admin accounts and these admins can only access their stores to list items and other features specific to their stores? 

Regards</description>
		<content:encoded><![CDATA[<p>Hi all,</p>
<p>Does this script actually create admin accounts and these admins can only access their stores to list items and other features specific to their stores? </p>
<p>Regards</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ehansen</title>
		<link>http://classyllama.com/development/magento-development/add-magento-admin-account-using-mysql-script/comment-page-1/#comment-96</link>
		<dc:creator>ehansen</dc:creator>
		<pubDate>Tue, 02 Mar 2010 23:42:46 +0000</pubDate>
		<guid isPermaLink="false">http://classyllama.com/?p=236#comment-96</guid>
		<description>@Too Many Bits - angled brackets are the standard for indicating that data needs to be replaced, but I understand how that could be confusing.  I&#039;ve removed the angled brackets from the example code. Thanks!</description>
		<content:encoded><![CDATA[<p>@Too Many Bits &#8211; angled brackets are the standard for indicating that data needs to be replaced, but I understand how that could be confusing.  I&#8217;ve removed the angled brackets from the example code. Thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Too Many Bits</title>
		<link>http://classyllama.com/development/magento-development/add-magento-admin-account-using-mysql-script/comment-page-1/#comment-95</link>
		<dc:creator>Too Many Bits</dc:creator>
		<pubDate>Tue, 02 Mar 2010 22:50:35 +0000</pubDate>
		<guid isPermaLink="false">http://classyllama.com/?p=236#comment-95</guid>
		<description>Ok last time. You need to remove the angle brackets in order to store your data properly in the database.</description>
		<content:encoded><![CDATA[<p>Ok last time. You need to remove the angle brackets in order to store your data properly in the database.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Too Many Bits</title>
		<link>http://classyllama.com/development/magento-development/add-magento-admin-account-using-mysql-script/comment-page-1/#comment-94</link>
		<dc:creator>Too Many Bits</dc:creator>
		<pubDate>Tue, 02 Mar 2010 22:49:21 +0000</pubDate>
		<guid isPermaLink="false">http://classyllama.com/?p=236#comment-94</guid>
		<description>Sorry for the repeat. forgot to escape my code.
&lt;code&gt;
For reference&#039;s sake, removing the  such as &#039;&#039;  to resemble &#039;John&#039; is what worked for me. Otherwise the data stored will include , oops!

Also I have a &#039; in my last name, this is easily escaped with a \ before the &#039; like O\&#039;Connor.
&lt;/code&gt;</description>
		<content:encoded><![CDATA[<p>Sorry for the repeat. forgot to escape my code.<br />
<code><br />
For reference's sake, removing the  such as ''  to resemble 'John' is what worked for me. Otherwise the data stored will include , oops!</p>
<p>Also I have a ' in my last name, this is easily escaped with a \ before the ' like O\'Connor.<br />
</code></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Too Many Bits</title>
		<link>http://classyllama.com/development/magento-development/add-magento-admin-account-using-mysql-script/comment-page-1/#comment-93</link>
		<dc:creator>Too Many Bits</dc:creator>
		<pubDate>Tue, 02 Mar 2010 22:48:23 +0000</pubDate>
		<guid isPermaLink="false">http://classyllama.com/?p=236#comment-93</guid>
		<description>For reference&#039;s sake, removing the  such as &#039;&#039;  to resemble &#039;John&#039; is what worked for me. Otherwise the data stored will include , oops!

Also I have a &#039; in my last name, this is easily escaped with a \ before the &#039; like O\&#039;Connor.</description>
		<content:encoded><![CDATA[<p>For reference&#8217;s sake, removing the  such as &#8221;  to resemble &#8216;John&#8217; is what worked for me. Otherwise the data stored will include , oops!</p>
<p>Also I have a &#8216; in my last name, this is easily escaped with a \ before the &#8216; like O\&#8217;Connor.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ehansen</title>
		<link>http://classyllama.com/development/magento-development/add-magento-admin-account-using-mysql-script/comment-page-1/#comment-92</link>
		<dc:creator>ehansen</dc:creator>
		<pubDate>Tue, 02 Mar 2010 21:47:08 +0000</pubDate>
		<guid isPermaLink="false">http://classyllama.com/?p=236#comment-92</guid>
		<description>@Too Many Bits - Thanks!</description>
		<content:encoded><![CDATA[<p>@Too Many Bits &#8211; Thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Too Many Bits</title>
		<link>http://classyllama.com/development/magento-development/add-magento-admin-account-using-mysql-script/comment-page-1/#comment-91</link>
		<dc:creator>Too Many Bits</dc:creator>
		<pubDate>Tue, 02 Mar 2010 21:25:43 +0000</pubDate>
		<guid isPermaLink="false">http://classyllama.com/?p=236#comment-91</guid>
		<description>Thank you for sharing. I&#039;ve linked this script in a related thread on the magento forums. Just a heads up.</description>
		<content:encoded><![CDATA[<p>Thank you for sharing. I&#8217;ve linked this script in a related thread on the magento forums. Just a heads up.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
