By darumaki on
Does anyone know why this would happen ? I switched from uieforum to the Drupal forum, everything appears ok, but when I create a topic, it does not show up. This has me scratching my head.
Does anyone know why this would happen ? I switched from uieforum to the Drupal forum, everything appears ok, but when I create a topic, it does not show up. This has me scratching my head.
Comments
Have you created a forum
Have you created a forum vocabulary so that your forum post knows where in the forum hierarchy it should go?
----------------------------------------------------------------------
http://www.bwv810.com/
I am a writer and researcher. In my spare time I build websites with Drupal.
Je peux communiquer en français. / Я могу общаться на русском языке.
I figure it out, categories
I figure it out, categories and content types got messed up in the process of switching from uieforum to the default, so had to redo it again, its working now
I have noticed this still
I have noticed this still happens, when you create a new forum topic, it does not show up until you run cron or rebuild permissions, so if users post it won't show up right away, is this normal for Drupal forum ?
No, this is not normal at
No, this is not normal at all.
----------------------------------------------------------------------
http://www.bwv810.com/
I am a writer and researcher. In my spare time I build websites with Drupal.
Je peux communiquer en français. / Я могу общаться на русском языке.
Me too
I installed uieforum, reverted back to the 5.5 default forum and no posts are showing up.
Arrrrrrrrrrgh.
Could uieforum have changed something that the regular forum module needs ?
Is there any way to re run the default forum's install script ?
What access control modules
What access control modules are you using?
What access control modules
Thanks for asking.
Since installing Drupal 5.5 I've not changed the access module so I guess its whatever comes with 5.5.
I will start debugging the forum module to see whats going on but it kind of defeats the productivity boost that these modules offer if we have to learn about their implementations.
Thanks again.
At this point you might want
At this point you might want to do a clean install of 5.7; update your database and see what happens.
----------------------------------------------------------------------
http://www.bwv810.com/
I am a writer and researcher. In my spare time I build websites with Drupal.
Je peux communiquer en français. / Я могу общаться на русском языке.
At this point you might want
I backed everything up and upgraded to 5.7 but still the postings are not showing up in the forums. Nodes are being added to the database but there is a clause in the query to gather postings that joins with the taxonomy table, I think some records might have been deleted by UIEForum, not sure yet.
Reverted from 5.7 to 5.5 since I don't have time to test the 12 or so optional modules I use.
The fix to this is probably
The fix to this is probably quite simple, but its difficult to diagnose without access to your site. If you are using 12 modules for 5.5, they should all work just fine with 5.7.
----------------------------------------------------------------------
http://www.bwv810.com/
I am a writer and researcher. In my spare time I build websites with Drupal.
Je peux communiquer en français. / Я могу общаться на русском языке.
Solved
Merci bien bwv.
I think the following mysql statement statement has fixed the problem.
insert into vocabulary_node_types values (1, 'forum');
I have no idea why or when this record got deleted.
Wales - Rugby Champions of Europe.
That works!
That is exactly what I found in my database table vocabulary_node_types:
no link from vid 1 to forum!
So I inserted it using this sql code.
It works.
Remember when testing: forum topics inserted before fixing are still hidden of course because missing link to forum topic.
New topics inserted after fixing are shown.
I did sql insert but it
I did sql insert but it didn't help. Still stuck on this issue
This worked for me also. Has
This worked for me also. Has this been reported as a bug?
Issue still exists
Thought I'd mention that I have just upgraded a Drupal install from 5.7 to 5.10 and ran into this exact issue. Turns out that the vocabulary_node_types table had indeed lost it's record for the forum type at some point during the upgrade.
I dropped vocabulary_node_types and recreated it from my previously taken backup SQL dump which included the forum type and related vid, this seems to have solved the issue.
So whatever the root cause is, the issue still seems to be present upgrading to 5.10.
insert into vocabulary_node_types values (1, 'forum');
That worked for me also! Thanks a LOOOOOT!
Wow, groberts100's solution
Wow, groberts100's solution worked for me, too. Many thanks. I'd been banging my head against a wall for ages.
Topic shows in Active Topics but not in Forum
I have a similar problem - People post to the forums and the posts show up in the "Active Topics" menu block but do not show up as topics within the Forums. This happened after recently upgrading to v5.6
I have checked Access and registered users have access.
I've checked Categories and Forums is a Vocabulary item with my 3 original Forums as List Items.
I wrote a test post as site admin and it did not show up in the forums but did show up in the "Active Topics" menu block.
Confused as to what happened, why and how to fix!
fixed it - Forums had a
fixed it - Forums had a Category Type of "Forum Topic" but with 5.6 apparently also needed to have an additional type of "page" (or always did and was somehow disabled during upgrade)
can u be more specific? not
can u be more specific? not everyone understand what u talkin about...
Excellent info, (1, Forum) but here is the rest of the story
I followed the advice above for entering 1, forum. When that did not work for me, I did about 10 seconds more research and got it working. By first viewing the vocabularies table, I found that my forum VID was actually 2, not one. Once changed my entry in the vocabulary_node_types from 1, forum to 2, forum, it worked like a champ (for new posts)!!
Happy mysqling!!
Drupal Forum Topic not displaying
Check Your vid # like webalchemist says!
Your vid number must be the one originally set for your forum. It is not necessarily 1. There are other modules that will save their data in vocabulary_node_types like ubercart for example. I looked back at my saved SQL backups and found that my vid # was 2.
My vocabulary_node_types table was wiped clean! I think it was during an update as the timing of the update coincided with the problem.
The clear symptom of this issue for my Drupal installation was that the Forum drop down selector no longer displayed on the create Forum Topic page.
Drupal chiefs should take note and see if there is something going on with the updates.