accidentally deleted comments option

Author Message

Hilary C.

Thursday 10 March 2005 4:20:26 pm

Help.... I was editing the "article" class and foolishly deleted the 'enable comments' option from the class. How do I get it back? I'm using ezpublish 3.13.4.

Ɓukasz Serwatka

Thursday 10 March 2005 11:33:03 pm

You can restore database from backup, or go to Setup->Classes edit article class and add checkbox with the same id 'enable_comments'.

Personal website -> http://serwatka.net
Blog (about eZ Publish) -> http://serwatka.net/blog

Hilary C.

Friday 11 March 2005 9:01:57 am

Thank you :):):)

I did that (adding the checkbox with id enable_comments back to the article class), also added this to site.ini.append:

[EzArticleMain]
UserComments=enabled

(I got this from another person's post on here, hopefully it applies to the version of eZpublish I'm using)

And added permissions to my user roles to read, create and edit comments.

I also verified that my articles now have the Enable Comments checkbox, with it defaulting to checked.

And of course I deleted all caches.

All that and I don't see anything showing up different on the site at all -- not even an error message. Please help?

Hilary C.

Tuesday 15 March 2005 7:52:41 am

Someone please help? Please please please? :)

Jack Rackham

Tuesday 15 March 2005 8:29:44 am

Check that your "enable comment" attribute has the same identifier as in your override/full/article_template(comment section).
Normally something like this

{section show=$node.object.data_map.enable_comments.data_int}
<div class="articlecomments">
    {let message_list=fetch( content, list, hash(
                                                parent_node_id, $node.object.main_node_id,
                                                sort_by, array( published, false() ),
                                                limit, $page_limit, 
                                                offset, 0,
                                                class_filter_type, include, 
                                                class_filter_array,array( 'comment' ) ) )}

    {section show=$message_list}
        <h2>{"Kommentarer"|i18n("design/news/layout")}</h2>
        {section name=Comment loop=$message_list}
            {node_view_gui view=line content_node=$:item}
        {/section}
    {/section}

    <h2>{"Skriv en kommentar"|i18n("design/news/layout")}</h2>

    <div class="buttonblock">
        <form method="post" action={"content/action"|ezurl}>
        <input type="hidden" name="NodeID" value="{$node.main_node_id}" />
        <input type="hidden" name="ClassID" value="13" />
        <input class="button" type="submit" name="NewButton" value="Ny kommentar" />
        </form>
    </div>

    {/let}
</div>
{/section}

Then go 'User accounts' - 'Roles' - 'Anonymous'
Add
- content create Class( Comment )
- content edit Class( Comment )
- content versionread Class( Comment ) , Owner( Self )

Hilary C.

Tuesday 15 March 2005 1:24:13 pm

Thank you!! That was exactly what I needed! :)

Powered by eZ Publish™ CMS Open Source Web Content Management. Copyright © 1999-2014 eZ Systems AS (except where otherwise noted). All rights reserved.