Move forum topics
dimitris_s - September 18, 2007 - 11:54
It may be the dumbest question ever, but I haven't seen anywhere an option for moving topics in forums. How can I move topics in forums? :/
It may be the dumbest question ever, but I haven't seen anywhere an option for moving topics in forums. How can I move topics in forums? :/
So it's not the dumbest
So it's not the dumbest question ever. Nobody knows how to move forum topics? [with the default forum module + forum access]...
http://www.dobro.gr - Online community for Greek students in Bulgaria
http://virgus.no-ip.org - simple designs
=-=
you edit the forum topic and change it's forum in the dropdown, with choice of leaving a shadw copy in the original forum.
Thank you very much!
Thank you very much! :)
http://www.dobro.gr - Online community for Greek students in Bulgaria
http://virgus.no-ip.org - simple designs
There's no forum dropdown...
I just set up Drupal, and, created a forum topic, without first creating a forum or container.
I then created a forum.
I now want to move the (orphan) forum topic into the forum I just created. Will I be able to do this?
When I edit the forum topic, the only dropdown I see is under Menu Settings, and it does not show the forum I created.
Drupal version: 6.3
--aslam
=-=
If you have a forum taxonomy you should be able to do this easily, if you don't have access to the forum taxonomy drop down on edit. Do you have it on new thread creation ?
also of note: Drupal 6.3 was found to have some XSS exploits. It benefits you greatly to update to Drupal 6.4 so as to protect your site from being exposed by the exploits found in 6.3.
forum taxonomy
What would the forum taxonomy look like, if I had one forum and no containers?
When I tried to create a new forum topic, I didn't see any way to add it to a forum.
As for the 6.4 upgrade, I did it a couple of hours ago.
--aslam
=-=
When you enable the forum.module you get the shell of a forum taxonomy.
If you go to create content -> forum topic
you should see a drop down menu with "please choose" in it. There is nothing else there because you've not finished creating the taxonomy.
in administer -> taxonomy. you'll have a vocabulary called forum. You will then need to add terms to this vocabulary. (I'd use forum names)
once you have that, and go back to create content -> forum topic
your drop down, will have those terms add to it.
My suggestion is to start a test site, where you can play with the taxonomy away from your production site.
Thanks!
I don't think the "shell of a forum taxonomy" was created. The Please Choose dropdown was missing entirely, during forum topic create/edit.
There was also no vocabulary. I created one, called "Forums", configured as follows:
- checked content type Forum Topic
- checked setting Required
I then added the term corresponding to the forum name, as you suggested.
After I did this, I saw the Please Choose dropdown, for the first time, in forum topic edit. I was then able to add the orphan forum topics to the forum in the dropdown.
My 2 cents...
Seems to me that I shouldn't have been able to create the orphan forum topics, in the first place. During forum topic create, I should've been required to choose a forum, or asked to create a new forum first. Secondly, the Forums vocabulary should exist if the forum module is installed. Thirdly, the creation of a new forum should also add a corresponding term to the Forums vocabulary.
--aslam
Vocabulary used for forums is not associated with forum.module.
The problem:
The following URLs show that the forums and forum topics are empty when they are not:
Background info:
Please see...
- http://drupal.org/node/262541 -- starting at comment #6
- http://drupal.org/node/235571 -- comment #3
As explained in my previous post in this thread, I've ended up creating a vocabulary independently of the forum module. So, I have 2 vocabularies, "Tags" & "Forums", and I've been using the "Forums" vocab as if it were for the forum module, but it's not. Here's the record in table 'vocabulary':
vid | name | description | help | relations | hierarchy | multiple | required | tags | module | weight1 | Forums| | | 1 | 2 | 0 | 1 | 0 | taxonomy| 0
The vid for the newly created forum, "Temp Forum", following your instructions, is 0.
How should I fix this? Should I change the module field to "forum" as well? If I do that, what would the ramifications be?
--aslam
Additional info: 'forum' table
See: http://drupal.org/node/231691#comment-762284
Based on all this info, here's what I did to fix the "faux forum vocabulary" problem:
update term_node set tid=23 where tid=22insert into forum select nid,vid,tid from term_node where tid=23The forum URLs now show the correct info for the forums, and the forum threads are recognized by the Forum Thread module, which wasn't the case before.
--aslam