| Friday 15 April 2005 3:05:28 am 
                                                                 
I think, I could do something with your previously given advise but there is still some problem.My suggestion and edit script is as follow:
 where 12 is the object id of the guest accounts and any new register will fall inside this group and so I had done this arrangement,
 
{section show=count($node.object.id|eq(12)}<form method="post"
 action={"content/action/"|ezurl}>
 
 <input class="button" type="submit"
 name="NewButton"
 value="Comment of the User" />
 
 <input type="hidden"name="ClassID"
 value="13" />
 
 <input type="hidden"name="NodeID"
 value="{$node.node_id}" />
 </form>
 {/section}
 {section-else} 
 {section show=count($node.object.can_create_class_list)}
 <form method="post" action={"/content/action"|ezurl}>
 <input type="hidden" name="NodeID" value="{$node.node_id}" />
 <select name="ClassID">
 {section var=class loop=$node.object.can_create_class_list}
 <option value="{$class.id}">{$class.name|wash}</option>
 {/section}
 </select>
 
 
 
 
 <input type="submit" name="NewButton" value="{'Create Here'|i18n('design/standard/node/view')}" />
 </form>
 {/section}
 
 
 {section show=$node.object.can_edit}
 <a href={concat("/content/edit/", $node.object.id)|ezurl}>Edit Here</a>
 {/section}
 {/section}
 
but now the problem is that when new user register then on the front page after registering as new user I received the messeages that "You are successfully register and you will received an e mail as follow the instrustion" but the problem is that I could not received any mail.To solve this problem I had added one line in setting/site.ini.append.php that
 [UserSettings]
 RegistrationEmail=
 VerifyUserEmail=disabled
 and then also clar the cache then also there is still same problem so I have to do anything else?
 you could suggest me something.
 |