Add Forums somehow
Permalink
I am currently working my site using concrete5 5.7 and it is probably the easiest application to my site for my site. I am a beginner to all of this and have been reading up on a lot of community posts about how to add a forum to my site. Now currently I understand that there is no add-on to add forums to the site (5.7) but I was wondering if I could export the users and their profiles to a phpbb forum so that users would not have to register twice. Let me know if this is possible, my site really needs forums and if I cannot have them, then I am going to have to rebuilt my site using a different cms. Thanks
I just need basic user profile info. The overall goal is to not make users register twice. ( once for the site and once for the forum) how would I go about transferring the user list and profiles? Is there a how to anywhere? Thanks
What development expertise do you have? It requires comfort using php and SQL.
Have a look at the Users table in phpMyAdmin and experiment with the 'export' option phpMyAdmin provides.
Have a look at the Users table in phpMyAdmin and experiment with the 'export' option phpMyAdmin provides.
Though if you're starting from scratch and have a intermediate development skillset, it wouldn't be hard to work up a forum based on pages and the discussion block. That literally gets you 80% of the way there. The other 20% is building a few things to deal with permissions.
Edit: He did say "beginner in all of this". I assume he means all things web/dev.
Your original idea, and johns solution both will have problems when you have visitors registering on your site, and you haven't exported that information yet to phpbb.
Edit: He did say "beginner in all of this". I assume he means all things web/dev.
Your original idea, and johns solution both will have problems when you have visitors registering on your site, and you haven't exported that information yet to phpbb.
Yeah I get that. But couldnt you create a script that updates the users on the forums based off of the users that register on the site? Or is that too much to ask from a computer?
If you want more than that, you would need to join database tables and the task would be a lot more difficult. So it would then be easier to write a short job for user listing and export to a csv.
You may be able to get round it another way if there are not too many users. List everything you want in the dashboard user search page, then just cut/paste the table into a spreadsheet. Sometimes a simplistic approach like that can actually work.