<?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>ashpointlane.com</title>
	<atom:link href="http://ashpointlane.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://ashpointlane.com</link>
	<description></description>
	<lastBuildDate>Tue, 06 Jul 2010 16:09:47 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Client says &#8220;proceed to checkout&#8221; empties cart and returns to homepage</title>
		<link>http://ashpointlane.com/2010/07/client-says-proceed-to-checkout-empties-cart-and-returns-to-homepage/</link>
		<comments>http://ashpointlane.com/2010/07/client-says-proceed-to-checkout-empties-cart-and-returns-to-homepage/#comments</comments>
		<pubDate>Tue, 06 Jul 2010 16:09:47 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Magento]]></category>

		<guid isPermaLink="false">http://ashpointlane.com/?p=55</guid>
		<description><![CDATA[A customer would come to the website, place items in their shopping cart, and then click the “proceed to checkout button” from the shopping cart. Rather than take them to the cart, our Magento website would immediately forward them to the home page and empty all the items from their cart. Cause: ISPs like AOL, [...]]]></description>
			<content:encoded><![CDATA[<p>A customer would come to the website, place items in their shopping  cart, and then click the “proceed to checkout button” from the shopping  cart. Rather than take them to the cart, our Magento website would  immediately forward them to the home page and empty all the items from  their cart.</p>
<p><strong>Cause:</strong> ISPs like AOL, Comcast, and Shaw.ca use a technique of changing IP  addresses that cause security settings in Magento to empty the cart and  not allow people to check out.</p>
<p><strong>Fix: </strong>Change the Session Validation settings in the Magento Admin, found under  <strong>System &gt; Configurations &gt; Web</strong>,  to ‘no’ on  everything except <strong>“Validate HTTP_USER_AGENT.”</strong> After  doing this,  go to <strong>System &gt; Cache Management </strong>and  refresh the configuration cache to apply the changes. </p>]]></content:encoded>
			<wfw:commentRss>http://ashpointlane.com/2010/07/client-says-proceed-to-checkout-empties-cart-and-returns-to-homepage/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>syntax error [Break on this error] &lt;!DOCTYPE html PUBLIC &quot;-//W3C//DTD XHTML…3.org/TR/xhtml1/DTD/xhtml1-strict.dtd&quot;&gt;&#8221;</title>
		<link>http://ashpointlane.com/2010/07/syntax-error-break-on-this-error/</link>
		<comments>http://ashpointlane.com/2010/07/syntax-error-break-on-this-error/#comments</comments>
		<pubDate>Tue, 06 Jul 2010 15:41:27 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Validation]]></category>

		<guid isPermaLink="false">http://ashpointlane.com/?p=52</guid>
		<description><![CDATA[I received some clients website files today in which Firefox was throwing a syntax error on the DOCTYPE. To fix this make sure that each of your javascript calls contains type=&#8221;text/javascript&#8221;. The client had only language=&#8221;javascript&#8221;. This attribute has been deprecated. It was used to select other programming languages and specific versions of JavaScript. You [...]]]></description>
			<content:encoded><![CDATA[<p>I received some clients website files today in which Firefox was throwing a syntax error on the DOCTYPE. To fix this make sure that each of your javascript calls contains type=&#8221;text/javascript&#8221;. The client had only language=&#8221;javascript&#8221;. This attribute has been deprecated. It was used to select other programming  languages and specific versions of JavaScript. You don&#8217;t need it. Don&#8217;t use it.</p>
<p>After I added the TYPE the file validated just fine at W3C. </p>]]></content:encoded>
			<wfw:commentRss>http://ashpointlane.com/2010/07/syntax-error-break-on-this-error/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Types of Includes</title>
		<link>http://ashpointlane.com/2010/06/types-of-includes/</link>
		<comments>http://ashpointlane.com/2010/06/types-of-includes/#comments</comments>
		<pubDate>Tue, 29 Jun 2010 16:37:02 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://ashpointlane.com/?p=47</guid>
		<description><![CDATA[The include statement is only one of four statements that you can use to include another PHP file in a currently running script. Those four statements are: include require include_once require_once include and require are almost identical. The only difference between them is what happens when the specified file is unable to be included (that [...]]]></description>
			<content:encoded><![CDATA[<p><strong>The include<a name="12984590c1b7a100_id2372097"> </a> statement is only one of four statements that you can use to  include another PHP file in a currently running script. Those four statements are:</strong></p>
<div>
<ul>
<li> <strong>include </strong></li>
<li> <strong>require </strong></li>
<li> <strong>include_once </strong></li>
<li> <strong>require_once</strong></li>
</ul>
</div>
<p><strong>include</strong> and <strong>require</strong> are <a name="12984590c1b7a100_id2372161"> </a><a name="12984590c1b7a100_id2372171"> </a>almost identical. The only difference between them is what happens when the specified file is unable to be included (that is, if it does  not exist, or if the web server doesn&#8217;t have permission to read it). With <strong>include</strong>, a warning is displayed<sup>[<a name="12984590c1b7a100_id2372193" href="http://sitepointcom.cmail3.com/t/y/l/bikutr/ddkjxhji/q" target="_blank" onclick="pageTracker._trackPageview('/outgoing/sitepointcom.cmail3.com/t/y/l/bikutr/ddkjxhji/q?referer=');">1</a>]</sup> and the  script continues to run. With <strong>require</strong>, an error is displayed<a name="12984590c1b7a100_id2372235"> </a> and the script stops.</p>
<p>In general, therefore, you should use <strong>require</strong> whenever the main script is unable to work without the script to be included. I do recommend  using <strong>include</strong> whenever possible, however. Even if the <code>db.inc.php</code> file for your site is unable to be loaded, for example, you might still want to  let the script for your front page continue to load. None of the content  from the database will display, but the user might be able to use the Contact  Us link at the bottom of the page to let you know about the problem!</p>
<p><strong>include_once</strong><a name="12984590c1b7a100_id2372275"> </a><a name="12984590c1b7a100_id2372281"> </a> and <strong>require_once</strong> work just like <strong>include</strong> and <strong>require</strong>,  respectively &#8212; but if the specified file has already been included at least once for the  current page request (using <em>any</em> of the four statements described here), the statement will be ignored. This is handy for include files that perform a task that only needs to be done once<a name="12984590c1b7a100_id2372309"> </a><a name="12984590c1b7a100_id2372322"> </a>, like connecting to the database.</p>
<p>Figure 1 shows <strong>include_once</strong> in action.  In the figure, <code>index.php</code> includes two files: <code>categories.inc.php</code> and <code>top10.inc.php</code>. Both of these files use <strong>include_once</strong> to include <code>db.inc.php</code>, as they both need a database connection in order to do their job. As shown, PHP will ignore the  attempt to include <code>db.inc.php</code> in <code>top10.inc.php</code> because  the file was already included in <code>categories.inc.php</code>. As a result, only one database connection is created.</p>
<p><a name="12984590c1b7a100_fig-include_once"> </a></p>
<p><strong>Figure 1. Use include_once to avoid opening a second database connection</strong></p>
<p><strong><a href="http://ashpointlane.com/wp-content/uploads/2010/06/include_once2_5.png"><img class="alignnone size-medium wp-image-48" title="include_once2_5" src="http://ashpointlane.com/wp-content/uploads/2010/06/include_once2_5-300x218.png" alt="include_once2_5" width="300" height="218" /></a><br />
</strong></p>
<p><strong>include_once</strong> and <strong>require_once</strong> are also useful for loading function libraries.</p>
<div>
<hr />
<div>
<p><sup>[<a name="12984590c1b7a100_ftn.id2372193" href="http://sitepointcom.cmail3.com/t/y/l/bikutr/ddkjxhji/a" target="_blank" onclick="pageTracker._trackPageview('/outgoing/sitepointcom.cmail3.com/t/y/l/bikutr/ddkjxhji/a?referer=');">1</a>] </sup>In  production environments, warnings and errors are usually disabled in <code>php.ini</code><a name="12984590c1b7a100_id2372201"> </a>. In such environments, a failed <strong>include</strong> has no visible effect (aside from the lack of content that would normally have been generated  by the <strong>include</strong> file); a failed <strong>require</strong> causes the page to stop at the point of failure. When a failed <strong>require</strong> occurs before any content is sent to the browser, the unlucky user will see nothing but a blank page!</p>
<p><strong><a href="http://sitepointcom.cmail3.com/t/y/l/bikutr/ddkjxhji/f" target="_blank" onclick="pageTracker._trackPageview('/outgoing/sitepointcom.cmail3.com/t/y/l/bikutr/ddkjxhji/f?referer=');">Types of Includes</a></strong><br />
by Kevin Yank</p>
</div>
</div>]]></content:encoded>
			<wfw:commentRss>http://ashpointlane.com/2010/06/types-of-includes/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to easily suspend a client website on Media Temple grid server hosting</title>
		<link>http://ashpointlane.com/2010/04/how-to-easily-suspend-a-client-website-on-media-temple-grid-server-hosting/</link>
		<comments>http://ashpointlane.com/2010/04/how-to-easily-suspend-a-client-website-on-media-temple-grid-server-hosting/#comments</comments>
		<pubDate>Fri, 23 Apr 2010 02:45:35 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Hosting]]></category>
		<category><![CDATA[MediaTemple]]></category>

		<guid isPermaLink="false">http://ashpointlane.com/?p=40</guid>
		<description><![CDATA[In this economy getting your small business web hosting clients to pay for their web hosting can prove to be quite a challenge. I don&#8217;t charge very much to my clients for web hosting so I expect to be paid on time for their annual renewals. Therefore I have taken a zero tolerance policy towards [...]]]></description>
			<content:encoded><![CDATA[<p>In this economy getting your small business web hosting clients to pay for their web hosting can prove to be quite a challenge. I don&#8217;t charge very much to my clients for web hosting so I expect to be paid on time for their annual renewals. Therefore I have taken a zero tolerance policy towards late pays. With that said I would like to share a couple of things I do to my clients that FAIL to pay on time.</p>
<p>The first thing I do is<span style="color: #ff6600;"><em><strong> disable their email</strong></em></span>. Media Temple Grid Server account holders can log into their <a href="https://ac.mediatemple.net" target="_blank" onclick="pageTracker._trackPageview('/outgoing/ac.mediatemple.net?referer=');">Account Center</a> and click on the Admin button and then on the (gs) Grid-Service    Control Panel page click on Enable/Disable Email from this page you can disable the whole domain&#8217;s email capabilities.</p>
<p>Now that we have that done we can <span style="color: #ff6600;"><em><strong>disable their web site</strong></em></span>. I chose to take care of this task programmatically through use of a very simple shell script (<a href="http://www.freeos.com/guides/lsst/" target="_blank" onclick="pageTracker._trackPageview('/outgoing/www.freeos.com/guides/lsst/?referer=');">Linux Shell Scripting Tutorial</a>). The following is script I created and you can take this and fill in the blanks for your own script:</p>
<pre class="brush: php;">

clear
echo &quot;What website would you like to suspend?&quot;
read website
mv /nfs/c02/h11/mnt/XXXXX/domains/$website/html /nfs/c02/h11/mnt/XXXXX/domains/$website/html.bak
mkdir /nfs/c02/h11/mnt/XXXXX/domains/$website/html
touch /nfs/c02/h11/mnt/XXXXX/domains/$website/html/index.html
echo &quot;Website Suspended&quot; &gt; /nfs/c02/h11/mnt/XXXXX/domains/$website/html/index.html
</pre>
<p>Now to explain the script a bit:</p>
<ol>
<li>Open vi and paste this in and replace XXXXX with your account number. You will also need to replace the part at the beginning of the paths that starts with &#8221; /nfs/c02/h11/mnt/&#8221; as that part is specific to the server you are on.</li>
<li>Once you have that done save your script with an &#8220;sh&#8221; extension (ie  disablesite.sh). I saved my script in my home directory so that I can execute it right after I log in through SSH.</li>
<li>Finally, to execute the script, navigate to the directory you saved it in an then type &#8220;sh yourscriptname.sh&#8221; and hit enter! The script will clear the screen and leave you with a question&#8230; &#8220;What website would you like to suspend?&#8221;. Answer that question with the precise domain name of directory you want to suspend and hit Enter again. At this point the script will rename that domains html directory to html.bak and create a new html directory with a new index.html file that displays &#8220;Website Suspended&#8221;.</li>
</ol>
<p>There are many other things one could do with this script like set up a Cron job to check a file that contains expiration dates for each of your sites and automatically disables them for you. Whatever you do be very careful in how you set up your script as this is pretty powerful and you could easily mess things up for yourself .</p>
<p>Also, it&#8217;s worth noting that if you use this script on your clients site you could very well embarrass them to the point where they just decide to not use your services ever again. </p>]]></content:encoded>
			<wfw:commentRss>http://ashpointlane.com/2010/04/how-to-easily-suspend-a-client-website-on-media-temple-grid-server-hosting/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Navicat for MySQL</title>
		<link>http://ashpointlane.com/2010/04/navicat-for-mysql/</link>
		<comments>http://ashpointlane.com/2010/04/navicat-for-mysql/#comments</comments>
		<pubDate>Thu, 01 Apr 2010 19:40:35 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[MySQL]]></category>

		<guid isPermaLink="false">http://ashpointlane.com/2010/04/navicat-for-mysql/</guid>
		<description><![CDATA[I must humbly admit that Navicat beats my trusty and beloved phpmyadmin for speed, usability, and functionality sake. If you are a dbadmin and haven&#8217;t tried it yet give it a whirl and I think you&#8217;ll be pleasantly surprised how easy yet robust this piece of software is. http://www.navicat.com/en/products/navicat_mysql/mysql_overview.html]]></description>
			<content:encoded><![CDATA[<p>I must humbly admit that Navicat beats my trusty and beloved phpmyadmin for speed, usability, and functionality sake. If you are a dbadmin and haven&#8217;t tried it yet give it a whirl and I think you&#8217;ll be pleasantly surprised how easy yet robust this piece of software is.</p>
<p><a href="http://www.navicat.com/en/products/navicat_mysql/mysql_overview.html" rel="nofollow" onclick="pageTracker._trackPageview('/outgoing/www.navicat.com/en/products/navicat_mysql/mysql_overview.html?referer=');">http://www.navicat.com/en/products/navicat_mysql/mysql_overview.html</a></p>]]></content:encoded>
			<wfw:commentRss>http://ashpointlane.com/2010/04/navicat-for-mysql/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress: remove category posts from RSS feed</title>
		<link>http://ashpointlane.com/2010/03/wordpress-remove-category-posts-from-rss-feed/</link>
		<comments>http://ashpointlane.com/2010/03/wordpress-remove-category-posts-from-rss-feed/#comments</comments>
		<pubDate>Tue, 09 Mar 2010 23:56:40 +0000</pubDate>
		<dc:creator>Bruce</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://ashpointlane.com/?p=21</guid>
		<description><![CDATA[Want to say thanks to jangro.com for having a WordPress function to block a specific WordPress category from appearing in my RSS feed. I just added this to my theme&#8217;s function.php file and changed the category number to the number of the category to omit and voila, the RSS feed is now free of the [...]]]></description>
			<content:encoded><![CDATA[<p>Want to say thanks to jangro.com for having a WordPress function to block a specific WordPress category from appearing in my RSS feed. I just added this to my theme&#8217;s function.php file and changed the category number to the number of the category to omit and voila, the RSS feed is now free of the other category.</p>
<pre class="brush: php;">
function myFilter($query) {
if ($query-&amp;gt;is_feed) {
$query-&amp;gt;set('cat','-5');
}
return $query;
}
add_filter('pre_get_posts','myFilter');
</pre>]]></content:encoded>
			<wfw:commentRss>http://ashpointlane.com/2010/03/wordpress-remove-category-posts-from-rss-feed/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PHP Array output offset by 1?</title>
		<link>http://ashpointlane.com/2010/03/php-array-output-offset-by-1/</link>
		<comments>http://ashpointlane.com/2010/03/php-array-output-offset-by-1/#comments</comments>
		<pubDate>Mon, 08 Mar 2010 19:33:26 +0000</pubDate>
		<dc:creator>Bruce</dc:creator>
				<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://ashpointlane.com/?p=15</guid>
		<description><![CDATA[Today I was writing some code for another site and I was looping through a DB query and outputting the results and I noticed that the output was one index off. If you ever encounter this problem make sure that you do not have your query string followed by $row = mysql_fetch_array($query) and then have [...]]]></description>
			<content:encoded><![CDATA[<p>Today I was writing some code for another site and I was looping through a DB query and outputting the results and I noticed that the output was one index off. If you ever encounter this problem make sure that you do not have your query string followed by $row = mysql_fetch_array($query) and then have $row = mysql_fetch_array($query) in the WHILE statement for your loop. </p>]]></content:encoded>
			<wfw:commentRss>http://ashpointlane.com/2010/03/php-array-output-offset-by-1/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Google dumps IE6 support</title>
		<link>http://ashpointlane.com/2010/02/google-dumps-ie6-support/</link>
		<comments>http://ashpointlane.com/2010/02/google-dumps-ie6-support/#comments</comments>
		<pubDate>Tue, 02 Feb 2010 18:47:29 +0000</pubDate>
		<dc:creator>Bruce</dc:creator>
				<category><![CDATA[Google]]></category>

		<guid isPermaLink="false">http://ashpointlane.com/?p=11</guid>
		<description><![CDATA[This morning at 12:26AM I received the following email from Google: ************************************************* Dear Google Apps admin,​ In order to continue to improve our products and deliver more sophisticated features and performance, we are harnessing some of the latest improvements in web browser technology. This includes faster JavaScript processing and new standards like HTML5. As a [...]]]></description>
			<content:encoded><![CDATA[<p>This morning at 12:26AM I received the following email from Google:</p>
<p>*************************************************<br />
Dear Google Apps admin,​</p>
<p>In order to continue to improve our products and deliver more sophisticated features and performance, we are harnessing some of the latest improvements in web browser technology.  This includes faster JavaScript processing and new standards like HTML5.  As a result, over the course of 2010, we will be phasing out support for Microsoft Internet Explorer 6.0 as well as other older browsers that are not supported by their own manufacturers.</p>
<p>We plan to begin phasing out support of these older browsers on the Google Docs suite and the Google Sites editor on March 1, 2010.  After that point, certain functionality within these applications may have higher latency and may not work correctly in these older browsers. Later in 2010, we will start to phase out support for these browsers for Google Mail and Google Calendar.</p>
<p>Google Apps will continue to support Internet Explorer 7.0 and above, Firefox 3.0 and above, Google Chrome 4.0 and above, and Safari 3.0 and above.</p>
<p>Starting this week, users on these older browsers will see a message in Google Docs and the Google Sites editor explaining this change and asking them to upgrade their browser.  We will also alert you again closer to March 1 to remind you of this change.</p>
<p>In 2009, the Google Apps team delivered more than 100 improvements to enhance your product experience.  We are aiming to beat that in 2010 and continue to deliver the best and most innovative collaboration products for businesses.</p>
<p>Thank you for your continued support!</p>
<p>Sincerely,</p>
<p>The Google Apps team</p>
<p>Email preferences: You have received this mandatory email service announcement to update you about important changes to your Google Apps product or account.</p>
<p>Google Inc.<br />
1600 Amphitheatre Parkway<br />
Mountain View, CA 94043 </p>]]></content:encoded>
			<wfw:commentRss>http://ashpointlane.com/2010/02/google-dumps-ie6-support/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Linux: Move files and directories up one directory</title>
		<link>http://ashpointlane.com/2010/01/linux-move-files-and-directories-up-one-directory/</link>
		<comments>http://ashpointlane.com/2010/01/linux-move-files-and-directories-up-one-directory/#comments</comments>
		<pubDate>Fri, 29 Jan 2010 01:37:56 +0000</pubDate>
		<dc:creator>Bruce</dc:creator>
				<category><![CDATA[Linux CLI]]></category>

		<guid isPermaLink="false">http://ashpointlane.com/?p=9</guid>
		<description><![CDATA[Here&#8217;s a quick answer to a Linux CLI question that I am asked on a regular basis. The scenario goes like this. You just unpacked a gzip&#8217;d file and you have a directory full of files and directories now. You don&#8217;t want those files and directories in that directory but rather up one directory&#8230;what do [...]]]></description>
			<content:encoded><![CDATA[<p>Here&#8217;s a quick answer to a Linux CLI question that I am asked on a regular basis. The scenario goes like this. You just unpacked a gzip&#8217;d file and you have a directory full of files and directories now. You don&#8217;t want those files and directories in that directory but rather up one directory&#8230;what do you do. First thing you can do is to cd into the directory and then you can either:</p>
<p>Copy the files/directories up one directory by running: cp * ../</p>
<p>or you can&#8230;</p>
<p>Move the files/directories up one directory by running: mv * ../ </p>]]></content:encoded>
			<wfw:commentRss>http://ashpointlane.com/2010/01/linux-move-files-and-directories-up-one-directory/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Joomla: cannot login to administration</title>
		<link>http://ashpointlane.com/2010/01/joomla-cannot-login-to-administration/</link>
		<comments>http://ashpointlane.com/2010/01/joomla-cannot-login-to-administration/#comments</comments>
		<pubDate>Mon, 18 Jan 2010 22:51:06 +0000</pubDate>
		<dc:creator>Bruce</dc:creator>
				<category><![CDATA[Joomla]]></category>

		<guid isPermaLink="false">http://ashpointlane.com/?p=7</guid>
		<description><![CDATA[Today Joomla decided it wanted to kick me out as Super Administrator&#8230;so I went into the users table and reset the admin password using MD5. No Luck! After a bit of Googling I found that the Joomla core_acl_aro table gets corrupted from time to time. Fortunately for me I had a backup of this table. [...]]]></description>
			<content:encoded><![CDATA[<p>Today Joomla decided it wanted to kick me out as Super Administrator&#8230;so I went into the users table and reset the admin password using MD5. No Luck! </p>
<p>After a bit of Googling I found that the Joomla core_acl_aro table gets corrupted from time to time. Fortunately for me I had a backup of this table. For anyone needing the schema for this table you can use the following to at least get back into the admin area:</p>
<p>DROP TABLE IF EXISTS `core_acl_aro`;<br />
CREATE TABLE `core_acl_aro` (<br />
  `aro_id` int(11) NOT NULL auto_increment,<br />
  `section_value` varchar(240) NOT NULL default &#8217;0&#8242;,<br />
  `value` varchar(240) NOT NULL default &#8221;,<br />
  `order_value` int(11) NOT NULL default &#8217;0&#8242;,<br />
  `name` varchar(255) NOT NULL default &#8221;,<br />
  `hidden` int(11) NOT NULL default &#8217;0&#8242;,<br />
  PRIMARY KEY  (`aro_id`),<br />
  UNIQUE KEY `gacl_section_value_value_aro` (`section_value`(100),`value`(100)),<br />
  KEY `gacl_hidden_aro` (`hidden`)<br />
) ENGINE=MyISAM  DEFAULT CHARSET=latin1 AUTO_INCREMENT=11 ;</p>
<p>INSERT DELAYED IGNORE INTO `core_acl_aro` (`aro_id`, `section_value`, `value`, `order_value`, `name`, `hidden`) VALUES<br />
(10, &#8216;users&#8217;, &#8217;62&#8242;, 0, &#8216;Administrator&#8217;, 0); </p>]]></content:encoded>
			<wfw:commentRss>http://ashpointlane.com/2010/01/joomla-cannot-login-to-administration/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
