<?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 for No Keyword in URL</title>
	<atom:link href="http://nokeywordinurl.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://nokeywordinurl.com</link>
	<description>SEO tips and tricks</description>
	<lastBuildDate>Tue, 01 May 2012 23:25:06 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
	<item>
		<title>Comment on Implementing CubePoints Reputation and Rank in WP comments by admin</title>
		<link>http://nokeywordinurl.com/implementing-cubepoints-reputation-and-rank-in-wp-comments/#comment-98</link>
		<dc:creator>admin</dc:creator>
		<pubDate>Tue, 01 May 2012 23:25:06 +0000</pubDate>
		<guid isPermaLink="false">http://nokeywordinurl.com/?p=223#comment-98</guid>
		<description>1) 
If it works and you plan use it on your site, replace our previous code (&lt;code&gt;&lt;?php cp_displayPoints($authordata-&gt;ID); ?&gt;&lt;/codea&gt;) by this:
&lt;pre lang=&quot;php&quot;&gt;&lt;?php
if(function_exists(&#039;cp_displayPoints&#039;) &amp;&amp; $authordata-&gt;ID){
  echo &#039;&lt;span class=&quot;cubepoints_buddypress&quot;&gt;&#039;; cp_displayPoints($authordata-&gt;ID); echo &#039;&lt;/span&gt;&#039;;
  if(function_exists(&#039;cp_module_ranks_getRank&#039;)) echo &#039; &lt;span class=&quot;cupepoints_buddypress_rank&quot;&gt;&#039;.cp_module_ranks_getRank($authordata-&gt;ID).&#039;&lt;/span&gt;&#039;;
}
?&gt;&lt;/pre&gt;

- it will be safe when you disable cubepoints and should add user rank.

2)
For styling I use default cubepoints CSS for buddypress.

&lt;pre lang=&quot;css&quot;&gt;
span.cubepoints_buddypress, span.cupepoints_buddypress_rank, span.cupepoints_buddypress_donate {
    -moz-border-radius: 3px 3px 3px 3px;
    background: -moz-linear-gradient(rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0)) repeat scroll 0 0 #FFEAA6;
    border: 1px solid #E1CA82;
    display: inline-block;
    font-size: 11px;
    font-weight: normal;
    line-height: 170%;
    margin-bottom: 7px;
    margin-top: 3px;
    padding: 1px 8px;
    vertical-align: middle;
}
&lt;/pre&gt;

3)
Check your post-entry.php, you should find that: &lt;code&gt;&lt;span class=&quot;authorspan&quot;&gt;...&lt;/span&gt;&lt;/code&gt;

Add php code between spans
&lt;pre lang=&quot;php&quot;&gt;&lt;span class=&quot;authorspan&quot;&gt;...&lt;/span&gt;
&lt;?php
$curauthor = get_the_author_meta(&#039;ID&#039;);
if(function_exists(&#039;cp_displayPoints&#039;) &amp;&amp; $curauthor){
  echo &#039;&lt;span class=&quot;cubepoints_buddypress&quot;&gt;&#039;; cp_displayPoints($curauthor); echo &#039;&lt;/span&gt;&#039;;
  if(function_exists(&#039;cp_module_ranks_getRank&#039;)) echo &#039; &lt;span class=&quot;cupepoints_buddypress_rank&quot;&gt;&#039;.cp_module_ranks_getRank($curauthor).&#039;&lt;/span&gt;&#039;;
}
?&gt;
&lt;span class=&quot;datespan&quot;&gt;...&lt;/pre&gt;</description>
		<content:encoded><![CDATA[<p>1)<br />
If it works and you plan use it on your site, replace our previous code (<code>< ?php cp_displayPoints($authordata->ID); ?>) by this:</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">&lt;?php</span>
<span style="color: #b1b100;">if</span><span style="color: #009900;">&#40;</span><span style="color: #990000;">function_exists</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'cp_displayPoints'</span><span style="color: #009900;">&#41;</span> <span style="color: #339933;">&amp;&amp;</span> <span style="color: #000088;">$authordata</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">ID</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span>
  <span style="color: #b1b100;">echo</span> <span style="color: #0000ff;">'&lt;span class=&quot;cubepoints_buddypress&quot;&gt;'</span><span style="color: #339933;">;</span> cp_displayPoints<span style="color: #009900;">&#40;</span><span style="color: #000088;">$authordata</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">ID</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #b1b100;">echo</span> <span style="color: #0000ff;">'&lt;/span&gt;'</span><span style="color: #339933;">;</span>
  <span style="color: #b1b100;">if</span><span style="color: #009900;">&#40;</span><span style="color: #990000;">function_exists</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'cp_module_ranks_getRank'</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span> <span style="color: #b1b100;">echo</span> <span style="color: #0000ff;">' &lt;span class=&quot;cupepoints_buddypress_rank&quot;&gt;'</span><span style="color: #339933;">.</span>cp_module_ranks_getRank<span style="color: #009900;">&#40;</span><span style="color: #000088;">$authordata</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">ID</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">.</span><span style="color: #0000ff;">'&lt;/span&gt;'</span><span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span>
<span style="color: #000000; font-weight: bold;">?&gt;</span></pre></div></div>

<p>- it will be safe when you disable cubepoints and should add user rank.</p>
<p>2)<br />
For styling I use default cubepoints CSS for buddypress.</p>

<div class="wp_syntax"><div class="code"><pre class="css" style="font-family:monospace;">span<span style="color: #6666ff;">.cubepoints_buddypress</span><span style="color: #00AA00;">,</span> span<span style="color: #6666ff;">.cupepoints_buddypress_rank</span><span style="color: #00AA00;">,</span> span<span style="color: #6666ff;">.cupepoints_buddypress_donate</span> <span style="color: #00AA00;">&#123;</span>
    -moz-border-radius<span style="color: #00AA00;">:</span> <span style="color: #933;">3px</span> <span style="color: #933;">3px</span> <span style="color: #933;">3px</span> <span style="color: #933;">3px</span><span style="color: #00AA00;">;</span>
    <span style="color: #000000; font-weight: bold;">background</span><span style="color: #00AA00;">:</span> -moz-linear-gradient<span style="color: #00AA00;">&#40;</span>rgba<span style="color: #00AA00;">&#40;</span><span style="color: #cc66cc;">255</span><span style="color: #00AA00;">,</span> <span style="color: #cc66cc;">255</span><span style="color: #00AA00;">,</span> <span style="color: #cc66cc;">255</span><span style="color: #00AA00;">,</span> <span style="color: #cc66cc;">0.5</span><span style="color: #00AA00;">&#41;</span><span style="color: #00AA00;">,</span> rgba<span style="color: #00AA00;">&#40;</span><span style="color: #cc66cc;">255</span><span style="color: #00AA00;">,</span> <span style="color: #cc66cc;">255</span><span style="color: #00AA00;">,</span> <span style="color: #cc66cc;">255</span><span style="color: #00AA00;">,</span> <span style="color: #cc66cc;">0</span><span style="color: #00AA00;">&#41;</span><span style="color: #00AA00;">&#41;</span> <span style="color: #993333;">repeat</span> <span style="color: #993333;">scroll</span> <span style="color: #cc66cc;">0</span> <span style="color: #cc66cc;">0</span> <span style="color: #cc00cc;">#FFEAA6</span><span style="color: #00AA00;">;</span>
    <span style="color: #000000; font-weight: bold;">border</span><span style="color: #00AA00;">:</span> <span style="color: #933;">1px</span> <span style="color: #993333;">solid</span> <span style="color: #cc00cc;">#E1CA82</span><span style="color: #00AA00;">;</span>
    <span style="color: #000000; font-weight: bold;">display</span><span style="color: #00AA00;">:</span> inline-<span style="color: #993333;">block</span><span style="color: #00AA00;">;</span>
    <span style="color: #000000; font-weight: bold;">font-size</span><span style="color: #00AA00;">:</span> <span style="color: #933;">11px</span><span style="color: #00AA00;">;</span>
    <span style="color: #000000; font-weight: bold;">font-weight</span><span style="color: #00AA00;">:</span> <span style="color: #993333;">normal</span><span style="color: #00AA00;">;</span>
    <span style="color: #000000; font-weight: bold;">line-height</span><span style="color: #00AA00;">:</span> <span style="color: #933;">170%</span><span style="color: #00AA00;">;</span>
    <span style="color: #000000; font-weight: bold;">margin-bottom</span><span style="color: #00AA00;">:</span> <span style="color: #933;">7px</span><span style="color: #00AA00;">;</span>
    <span style="color: #000000; font-weight: bold;">margin-top</span><span style="color: #00AA00;">:</span> <span style="color: #933;">3px</span><span style="color: #00AA00;">;</span>
    <span style="color: #000000; font-weight: bold;">padding</span><span style="color: #00AA00;">:</span> <span style="color: #933;">1px</span> <span style="color: #933;">8px</span><span style="color: #00AA00;">;</span>
    <span style="color: #000000; font-weight: bold;">vertical-align</span><span style="color: #00AA00;">:</span> <span style="color: #993333;">middle</span><span style="color: #00AA00;">;</span>
<span style="color: #00AA00;">&#125;</span></pre></div></div>

<p>3)<br />
Check your post-entry.php, you should find that: </code><code>&lt;span class="authorspan"&gt;...&lt;/span&gt;</code></p>
<p>Add php code between spans</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;">&lt;span class=&quot;authorspan&quot;&gt;...&lt;/span&gt;
<span style="color: #000000; font-weight: bold;">&lt;?php</span>
<span style="color: #000088;">$curauthor</span> <span style="color: #339933;">=</span> get_the_author_meta<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'ID'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #b1b100;">if</span><span style="color: #009900;">&#40;</span><span style="color: #990000;">function_exists</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'cp_displayPoints'</span><span style="color: #009900;">&#41;</span> <span style="color: #339933;">&amp;&amp;</span> <span style="color: #000088;">$curauthor</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span>
  <span style="color: #b1b100;">echo</span> <span style="color: #0000ff;">'&lt;span class=&quot;cubepoints_buddypress&quot;&gt;'</span><span style="color: #339933;">;</span> cp_displayPoints<span style="color: #009900;">&#40;</span><span style="color: #000088;">$curauthor</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #b1b100;">echo</span> <span style="color: #0000ff;">'&lt;/span&gt;'</span><span style="color: #339933;">;</span>
  <span style="color: #b1b100;">if</span><span style="color: #009900;">&#40;</span><span style="color: #990000;">function_exists</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'cp_module_ranks_getRank'</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span> <span style="color: #b1b100;">echo</span> <span style="color: #0000ff;">' &lt;span class=&quot;cupepoints_buddypress_rank&quot;&gt;'</span><span style="color: #339933;">.</span>cp_module_ranks_getRank<span style="color: #009900;">&#40;</span><span style="color: #000088;">$curauthor</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">.</span><span style="color: #0000ff;">'&lt;/span&gt;'</span><span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span>
<span style="color: #000000; font-weight: bold;">?&gt;</span>
&lt;span class=&quot;datespan&quot;&gt;...</pre></div></div>

]]></content:encoded>
	</item>
	<item>
		<title>Comment on Implementing CubePoints Reputation and Rank in WP comments by Daniel</title>
		<link>http://nokeywordinurl.com/implementing-cubepoints-reputation-and-rank-in-wp-comments/#comment-97</link>
		<dc:creator>Daniel</dc:creator>
		<pubDate>Tue, 01 May 2012 23:17:03 +0000</pubDate>
		<guid isPermaLink="false">http://nokeywordinurl.com/?p=223#comment-97</guid>
		<description>Thank you so much! Yes but could you just help me how to show the rank of the author also, i would be so happy =)

and if i want to style the points, like bigger number and a nice image/icon behind it, where do i go for that?

Im not sure where to put it in post-entry. I tried but i doesnt show up.</description>
		<content:encoded><![CDATA[<p>Thank you so much! Yes but could you just help me how to show the rank of the author also, i would be so happy =)</p>
<p>and if i want to style the points, like bigger number and a nice image/icon behind it, where do i go for that?</p>
<p>Im not sure where to put it in post-entry. I tried but i doesnt show up.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Implementing CubePoints Reputation and Rank in WP comments by admin</title>
		<link>http://nokeywordinurl.com/implementing-cubepoints-reputation-and-rank-in-wp-comments/#comment-96</link>
		<dc:creator>admin</dc:creator>
		<pubDate>Tue, 01 May 2012 23:04:42 +0000</pubDate>
		<guid isPermaLink="false">http://nokeywordinurl.com/?p=223#comment-96</guid>
		<description>Great! :)
Is that what you need?
Do you know what to do next with that?</description>
		<content:encoded><![CDATA[<p>Great! <img src='http://nokeywordinurl.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /><br />
Is that what you need?<br />
Do you know what to do next with that?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Implementing CubePoints Reputation and Rank in WP comments by Daniel</title>
		<link>http://nokeywordinurl.com/implementing-cubepoints-reputation-and-rank-in-wp-comments/#comment-95</link>
		<dc:creator>Daniel</dc:creator>
		<pubDate>Tue, 01 May 2012 23:02:00 +0000</pubDate>
		<guid isPermaLink="false">http://nokeywordinurl.com/?p=223#comment-95</guid>
		<description>ok, done!
It shows the points now in author bio.</description>
		<content:encoded><![CDATA[<p>ok, done!<br />
It shows the points now in author bio.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Implementing CubePoints Reputation and Rank in WP comments by admin</title>
		<link>http://nokeywordinurl.com/implementing-cubepoints-reputation-and-rank-in-wp-comments/#comment-93</link>
		<dc:creator>admin</dc:creator>
		<pubDate>Tue, 01 May 2012 22:32:43 +0000</pubDate>
		<guid isPermaLink="false">http://nokeywordinurl.com/?p=223#comment-93</guid>
		<description>Try this code in your single.php :
&lt;pre lang=&quot;PHP&quot;&gt;&lt;?php cp_displayPoints($authordata-&gt;ID); ?&gt;&lt;/pre&gt;</description>
		<content:encoded><![CDATA[<p>Try this code in your single.php :</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">&lt;?php</span> cp_displayPoints<span style="color: #009900;">&#40;</span><span style="color: #000088;">$authordata</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">ID</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span></pre></div></div>

]]></content:encoded>
	</item>
	<item>
		<title>Comment on Implementing CubePoints Reputation and Rank in WP comments by Daniel</title>
		<link>http://nokeywordinurl.com/implementing-cubepoints-reputation-and-rank-in-wp-comments/#comment-92</link>
		<dc:creator>Daniel</dc:creator>
		<pubDate>Tue, 01 May 2012 18:51:17 +0000</pubDate>
		<guid isPermaLink="false">http://nokeywordinurl.com/?p=223#comment-92</guid>
		<description>Hi! I run a multi-author site and i need your help to implement this on my post-entry besides the author of the post. I do not use buddypress. I want it to show the points and rank of the author.&#160;Any thoughts on this? Please help me, my php-knowledge is slim.Best regardsDaniel</description>
		<content:encoded><![CDATA[<p>Hi! I run a multi-author site and i need your help to implement this on my post-entry besides the author of the post. I do not use buddypress. I want it to show the points and rank of the author.&nbsp;Any thoughts on this? Please help me, my php-knowledge is slim.Best regardsDaniel</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on 2 wordpress blogs with 1 users table and 1 login by Fazio</title>
		<link>http://nokeywordinurl.com/2-wordpress-blogs-with-1-users-table-and-1-login/#comment-76</link>
		<dc:creator>Fazio</dc:creator>
		<pubDate>Mon, 23 Apr 2012 18:50:45 +0000</pubDate>
		<guid isPermaLink="false">http://nokeywordinurl.com/?p=121#comment-76</guid>
		<description>Hi Admin,
in fact you was right, my &quot;admin&quot; user id was =5!!
i changed it, = 1, but still don&#039;t work.
when i try to get into dashboard : You do not have sufficient permissions to enter in this page.
Here is what i did :
install both 2 plugins in domain and subdomain,
in sub-domain wp-config.php added: 

&lt;code&gt;define(&#039;CUSTOM_USER_TABLE&#039;, &#039;maindomainprefix_users&#039;);
define(&#039;CUSTOM_USER_META_TABLE&#039;, &#039; maindomainprefix _usermeta&#039;);&lt;/code&gt;

in phpmyadmin maindomainPrefix_usermeta added :


&lt;code&gt;user_id meta_key meta_value1
subdomainprefix_capabilities a:1:{s:13:&quot;administrator&quot;;s:1:&quot;1&quot;;}
subdomainprefix_user_level   10  1  nickname  &quot;admin&quot;&lt;/code&gt;

also in sub-domina and main domain wp-config.php added:

&lt;pre lang=&quot;php&quot;&gt;$baseurl = &#039;http://www.mydomain.com&#039;;
$cookiehash = md5($baseurl);
define(&#039;COOKIEHASH&#039;, $cookiehash);
define(&#039;AUTH_SALT&#039;, &#039;AUTH_SALT&#039;.COOKIEHASH);
define(&#039;LOGGED_IN_SALT&#039;, &#039;LOGGED_IN_SALT&#039;.COOKIEHASH);
define(&#039;AUTH_COOKIE&#039;, &#039;AUTH_COOKIE&#039;.COOKIEHASH);
define(&#039;SECURE_AUTH_COOKIE&#039;, &#039;SECURE_AUTH_COOKIE&#039;.COOKIEHASH);
define(&#039;LOGGED_IN_COOKIE&#039;, &#039;LOGGED_IN_COOKIE&#039;.COOKIEHASH);
define(&#039;TEST_COOKIE&#039;, &#039;TEST_COOKIE&#039;.COOKIEHASH);
define(&#039;COOKIE_DOMAIN&#039;, &#039;.mydomain.com&#039;);
define(&#039;COOKIEPATH&#039;, &#039;/&#039;);&lt;/pre&gt;

for users it works perfect, but not for my as Admin. Do you have any idea why this?
thank you.</description>
		<content:encoded><![CDATA[<p>Hi Admin,<br />
in fact you was right, my "admin" user id was =5!!<br />
i changed it, = 1, but still don't work.<br />
when i try to get into dashboard : You do not have sufficient permissions to enter in this page.<br />
Here is what i did :<br />
install both 2 plugins in domain and subdomain,<br />
in sub-domain wp-config.php added: </p>
<p><code>define('CUSTOM_USER_TABLE', 'maindomainprefix_users');<br />
define('CUSTOM_USER_META_TABLE', ' maindomainprefix _usermeta');</code></p>
<p>in phpmyadmin maindomainPrefix_usermeta added :</p>
<p><code>user_id meta_key meta_value1<br />
subdomainprefix_capabilities a:1:{s:13:"administrator";s:1:"1";}<br />
subdomainprefix_user_level   10  1  nickname  "admin"</code></p>
<p>also in sub-domina and main domain wp-config.php added:</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000088;">$baseurl</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">'http://www.mydomain.com'</span><span style="color: #339933;">;</span>
<span style="color: #000088;">$cookiehash</span> <span style="color: #339933;">=</span> <span style="color: #990000;">md5</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$baseurl</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #990000;">define</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'COOKIEHASH'</span><span style="color: #339933;">,</span> <span style="color: #000088;">$cookiehash</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #990000;">define</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'AUTH_SALT'</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'AUTH_SALT'</span><span style="color: #339933;">.</span>COOKIEHASH<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #990000;">define</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'LOGGED_IN_SALT'</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'LOGGED_IN_SALT'</span><span style="color: #339933;">.</span>COOKIEHASH<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #990000;">define</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'AUTH_COOKIE'</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'AUTH_COOKIE'</span><span style="color: #339933;">.</span>COOKIEHASH<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #990000;">define</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'SECURE_AUTH_COOKIE'</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'SECURE_AUTH_COOKIE'</span><span style="color: #339933;">.</span>COOKIEHASH<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #990000;">define</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'LOGGED_IN_COOKIE'</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'LOGGED_IN_COOKIE'</span><span style="color: #339933;">.</span>COOKIEHASH<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #990000;">define</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'TEST_COOKIE'</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'TEST_COOKIE'</span><span style="color: #339933;">.</span>COOKIEHASH<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #990000;">define</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'COOKIE_DOMAIN'</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'.mydomain.com'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #990000;">define</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'COOKIEPATH'</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'/'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></div></div>

<p>for users it works perfect, but not for my as Admin. Do you have any idea why this?<br />
thank you.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on 2 wordpress blogs with 1 users table and 1 login by Fazio</title>
		<link>http://nokeywordinurl.com/2-wordpress-blogs-with-1-users-table-and-1-login/#comment-75</link>
		<dc:creator>Fazio</dc:creator>
		<pubDate>Mon, 23 Apr 2012 15:53:10 +0000</pubDate>
		<guid isPermaLink="false">http://nokeywordinurl.com/?p=121#comment-75</guid>
		<description>Hi Admin,
&lt;blockquote&gt;It&#039;s a good sign if new users can access to both blogs.&lt;/blockquote&gt;
I think the same..:)
&lt;blockquote&gt;What do you mean by &quot;admin = gestore&quot; ?&lt;/blockquote&gt;
this is an example of wordpress admin. I mean : for my first domain WP login i use different ID name and pass , from subdomain WP login name. I did all steps, include the 6 one. (I add the 2 string in maindomainPrefix_user_level and capabilities) . What do you mean here :
&lt;blockquote&gt;Do you have regular configuration when main &quot;admin&quot; with user_id=1?&lt;/blockquote&gt;
Thank you.</description>
		<content:encoded><![CDATA[<p>Hi Admin,</p>
<blockquote><p>It's a good sign if new users can access to both blogs.</p></blockquote>
<p>I think the same..:)</p>
<blockquote><p>What do you mean by "admin = gestore" ?</p></blockquote>
<p>this is an example of wordpress admin. I mean : for my first domain WP login i use different ID name and pass , from subdomain WP login name. I did all steps, include the 6 one. (I add the 2 string in maindomainPrefix_user_level and capabilities) . What do you mean here :</p>
<blockquote><p>Do you have regular configuration when main "admin" with user_id=1?</p></blockquote>
<p>Thank you.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on 2 wordpress blogs with 1 users table and 1 login by admin</title>
		<link>http://nokeywordinurl.com/2-wordpress-blogs-with-1-users-table-and-1-login/#comment-73</link>
		<dc:creator>admin</dc:creator>
		<pubDate>Sun, 22 Apr 2012 16:40:40 +0000</pubDate>
		<guid isPermaLink="false">http://nokeywordinurl.com/?p=121#comment-73</guid>
		<description>Hi, Fazio!
It&#039;s a good sign if new users can access to both blogs.

What do you mean by &quot;admin = gestore&quot; ?
Do you have regular configuration when main &quot;admin&quot; with user_id=1 ?
You just changed login from admin to gestore? Or created new user gestore and assigned him administrator&#039;s role?

Did you really made all as described in &lt;b&gt;step 6&lt;/b&gt; ?</description>
		<content:encoded><![CDATA[<p>Hi, Fazio!<br />
It's a good sign if new users can access to both blogs.</p>
<p>What do you mean by "admin = gestore" ?<br />
Do you have regular configuration when main "admin" with user_id=1 ?<br />
You just changed login from admin to gestore? Or created new user gestore and assigned him administrator's role?</p>
<p>Did you really made all as described in <b>step 6</b> ?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on 2 wordpress blogs with 1 users table and 1 login by Fazio</title>
		<link>http://nokeywordinurl.com/2-wordpress-blogs-with-1-users-table-and-1-login/#comment-72</link>
		<dc:creator>Fazio</dc:creator>
		<pubDate>Sun, 22 Apr 2012 16:19:09 +0000</pubDate>
		<guid isPermaLink="false">http://nokeywordinurl.com/?p=121#comment-72</guid>
		<description>Hello everyone, i add all these passages and for users login it works perfectly.&#160;But for me as manager when i go from may main domain into a subdomain, my capabilities are not as manager but only as a subscriber.&#160;I was thinking that the problem would be the fact that i have a WP login pass and ID, different from Mauindomian and Subdominas.&#160;es : maindomian wp login : admin = gestore , pass = 12345es : subdomain wp login : admin = gestore2, pass = 99988
Do you think this would be the problem?&#160;ps. i can&#039;t login anymore on my WP subdomain (admin = gestore2, pass = 99988)&#160;as manager and manage my subdomain WP.&#160;Thank youFation</description>
		<content:encoded><![CDATA[<p>Hello everyone, i add all these passages and for users login it works perfectly.&nbsp;But for me as manager when i go from may main domain into a subdomain, my capabilities are not as manager but only as a subscriber.&nbsp;I was thinking that the problem would be the fact that i have a WP login pass and ID, different from Mauindomian and Subdominas.&nbsp;es : maindomian wp login : admin = gestore , pass = 12345es : subdomain wp login : admin = gestore2, pass = 99988<br />
Do you think this would be the problem?&nbsp;ps. i can't login anymore on my WP subdomain (admin = gestore2, pass = 99988)&nbsp;as manager and manage my subdomain WP.&nbsp;Thank youFation</p>
]]></content:encoded>
	</item>
</channel>
</rss>

