<div>I did have to try a few different things to get this to work but it did return the first row </div>  <div>using phpmyadmin.&nbsp; Any other ideas are very welcome, please.</div>  <div>Bruce<BR><BR><B><I>eric Farris &lt;eafarris@gmail.com&gt;</I></B> wrote:</div>  <BLOCKQUOTE class=replbq style="PADDING-LEFT: 5px; MARGIN-LEFT: 5px; BORDER-LEFT: #1010ff 2px solid">On 1/9/07, Mark Shropshire <MDSHROPS@SHROPNET.COM>wrote:<BR>&gt; I get these every now and then on a number of sites and servers. I couldn't<BR>&gt; find much info on it and the sites still seem to be running fine. I would<BR>&gt; love to get details on how to resolve.<BR><BR>When I've seen similar messages, it's because user 0 ("anonymous") was<BR>missing from the database. To test this, do the following from the<BR>mysql prompt:<BR><BR>mysql&gt; SELECT * FROM users WHERE uid=0;<BR><BR>and see if that returns a row. If it doesn't, that's your problem. Add it back:<BR><BR>mysql&gt; INSERT INTO users (uid)
 VALUES (0);<BR><BR>and see if that takes care of it. Some more details here:<BR>http://drupal.org/node/34847<BR><BR>-- <BR>e<BR>www.eafarris.com<BR>-- <BR>[ Drupal support list | http://lists.drupal.org/ ]<BR></BLOCKQUOTE><BR>