I created a new CCK node called answer and use that as the comments node for blog. I created a new blog entry and added a couple of comments. In the teaser mode, I see '2 comments' being displayed, but in the full page mode for the blog, I do not see the comments at all below the blog body or even the 2 comments link. I do not know what's wrong. When I use the 'node comments' provided comments node, it works fine. I see the comments being displayed. Could someone please help me here?

Comments

sirkitree’s picture

Category: bug » support

Did you check to make sure that the view reflects that you are using a different node type?

betoaveiga’s picture

Hi Sirkitree did you find what was the problem?

I'm having the same problem cause my node type name is "Comentario"

The worst part is that I don't know if I'm doing something wrong.

I'm gonna try calling ir "comment" to see if that fixed the problem anyway...

Thanks

sirkitree’s picture

Status: Active » Closed (works as designed)

The "problem" is this:
The view that ships with nodecomment specifies the 'comment' node type as a filter. You can change this, effectively making your own view and not using the default one. You will then have to specify this new view in your content type settings of the content type which is using this view to display your comments.

I kept this filter in because that is how the old view is, so I just went with the previous standard.

drupalicasso’s picture

I am at at a complete loss, I get the message

Fatal error: Unsupported operand types in example.com/includes/common.inc on line 1445

I am using it on Drupal 6.

I see "3 comments" "3 new" "Post Comment" links in the teasers, but get the above message when I try to view the page with the comment

kjpil’s picture

Got this same problem. But I tried to uninstall nodecomment, deleted the views and contenttypes connected to it... but still get this error when I visit my frontpage. All other pages seams to work. Dont know how to sort this out. Im rebuilding my system staying away from this module in the future

cratos’s picture

Ok i figured something out, after upgrading to Views RC2, some relationships ceased to exist like the Node Original Parent Nid and others related with the module Nodecomments.

This situation makes impossible to integrate Views and Node Comments.

Don't know if the problem is in Views or Node Comments.

Should i fill a issue reporting this situation??

Thanks in advance

mightyulysses’s picture

see the following article to overcome the error of Fatal error: Unsupported operand types in example.com/includes/common.inc on line 1445

http://drupal.org/node/308437

jp.stacey’s picture

Category: support » bug

I'm bumping this as a bug report: and that solution worked for me, although I used:

// Merge in defaults.
if (!isset($options)) { $options = array(); } // new line - detects NULLs
$options += array( // continue as before

We've been working on a clean 6.4 installation, upgrading to 6.5 and 6.6 as we've been building it, so it's not a D5->D6 issue.