It's good now, the problem with adsense id was solved.
But I still don't see the ads of users, only the id i've put in the show_ads.tpl file is published.
Please help me and send any advice, as it's the only thing keeping me from launching my new pligg based website.
Sorry for my bad english.
PS:
Here is my show_ads.tpl, may be the problem is coming from here
PHP Code:
<center>
<br />
{*adsense assign=users_adsense*}
<script type="text/javascript"><!--
{if $users_adsense}
google_ad_client = "{$google_adsense_id}"; {* dont change this line *}
{else}
google_ad_client = "pub-4607650921970052"; {* be sure to put your adsense id here *}
{/if}
google_alternate_ad_url = "";
google_ad_width = 468;
google_ad_height = 60;
google_ad_format = "468x60_as";
google_ad_type = "text";
{if $users_adsense}
google_ad_channel ="{$google_adsense_channel}"; {* dont change this line *}
{else}
google_ad_channel ="";
{/if}
{if $the_template eq "p-Lyric"}
google_color_border = "ffffff";
google_color_bg = "ffffff";
google_color_link = "3971a8";
google_color_text = "303840";
google_color_url = "71a839";
{elseif $the_template eq "p-Tone"}
google_color_border = "ffffff";
google_color_bg = "ffffff";
google_color_link = "3971a8";
google_color_text = "303840";
google_color_url = "71a839";
{elseif $the_template eq "b-Ice"}
google_color_border = "ffffff";
google_color_bg = "ffffff";
google_color_link = "3971a8";
google_color_text = "303840";
google_color_url = "71a839";
{else}
google_color_border = "ffffff";
google_color_bg = "ffffff";
google_color_link = "1773bc";
google_color_text = "000000";
google_color_url = "ff5b00";
{/if}
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script>
</center>
EDIT:
I've modified the code above, i've changed the first "if"
From : {if $users_adsense}
To : {if !$users_adsense}
And the problem now is that the ads of the users show in the story pages at 100% not the 50% by default. And in the other pages (index, category...) where my ads should normaly appear, i've nothing, and when I look at the source code I see this :
google_ad_client = "";
Any comment ?
Thanks in advance.