
-----------------------------------
ProgrammingFun
Wed Sep 29, 2010 5:20 pm

Creating a forum in phpBB
-----------------------------------
This is directed mainly towards Dan and Tony and anyone else who has created and ran a forum.
My school webteam appointed me to create a school forum on the website.
The team leaders previously tried and failed: http://forum.victoriaparkci.com
I have no knowledge whatsoever about phpBB and was wondering if anyone can provide me with a beginners tutorial (somewhere on the net) and if possible, a free (or really cheap) template (a generator would be nice too :vi: ) so that I can create a forum similar to CompSci for the school.

A bot tutorial will also be nice so that it can crawl the forum for inappropriate content.

Thank you for the time.

EDIT: Is it possible that I can use the template in effect on this site?

-----------------------------------
Kharybdis
Wed Sep 29, 2010 5:37 pm

RE:Creating a forum in phpBB
-----------------------------------
do you mean like from scratch, or an already-built-one but customized?

-----------------------------------
ProgrammingFun
Wed Sep 29, 2010 5:39 pm

Re: RE:Creating a forum in phpBB
-----------------------------------
do you mean like from scratch, or an already-built-one but customized?
From scratch if no template is found or build on top of a template...
Basically from scratch  :)

-----------------------------------
rdrake
Wed Sep 29, 2010 8:48 pm

RE:Creating a forum in phpBB
-----------------------------------
Google really is your friend here.  If you're looking at phpBB, they have a nice [url=http://www.phpbb.com/styles/demo/3.0/index.php]forum styles preview page here.  The styles used here are basically the original phpBB 2.0 styles with a bunch of extra stuff duct taped on.

-----------------------------------
ProgrammingFun
Wed Sep 29, 2010 9:16 pm

Re: RE:Creating a forum in phpBB
-----------------------------------
Google really is your friend here.  If you're looking at phpBB, they have a nice 

Thanks for the template :!: 
What I really need to know is how I would get it started (files to upload and settings to configure on the host).

-----------------------------------
Dan
Thu Sep 30, 2010 10:25 am

Re: RE:Creating a forum in phpBB
-----------------------------------


Thanks for the template :!: 
What I really need to know is how I would get it started (files to upload and settings to configure on the host).

All of that information should be on the phpbb website. It should be as simple as uploading the files to a webserver accesable directory that suports PHP and runing the setup script.

As for the template we use, i can give it to you if you like but it's not for the same version of phpBB and is heavliy modifed so it would not work even if it was. Also it's based on subSilver, which is a default template.

-----------------------------------
DtY
Thu Sep 30, 2010 2:59 pm

Re: RE:Creating a forum in phpBB
-----------------------------------
As for the template we use, i can give it to you if you like but it's not for the same version of phpBB and is heavliy modifed so it would not work even if it was. Also it's based on subSilver, which is a default template.I thought compsci.ca was based on SMF?

-----------------------------------
Dan
Thu Sep 30, 2010 4:52 pm

Re: RE:Creating a forum in phpBB
-----------------------------------
I thought compsci.ca was based on SMF?

I guess you could say our forum software is a fork of phpBB 2. In reality it's a mess of hacks and patches that would make any programer want to cry.

-----------------------------------
Amailer
Thu Sep 30, 2010 5:15 pm

RE:Creating a forum in phpBB
-----------------------------------
We should setup a public git repo (and use github!) to build a new website for compsci :D
Anyone should be allowed to contribute but the pulls will have to be accepted by a group (core) of individuals.

It's been a while since v3 was released - and as you said - its a total hack.

In terms of setting up phpBB however, looks like they got a pretty well documented guide:
http://www.phpbb.com/support/documentation/3.0/quickstart/quick_installation.php

-----------------------------------
ProgrammingFun
Thu Sep 30, 2010 5:42 pm

Re: RE:Creating a forum in phpBB
-----------------------------------
In terms of setting up phpBB however, looks like they got a pretty well documented guide:
http://www.phpbb.com/support/documentation/3.0/quickstart/quick_installation.php

I already followed the instructions on that site but am returned with a 404 error when I try to access the install files.
The forum that the club leaders previously set up worked but did not show settings, admin controls, or even the fact that you were signed in...

...so I deleted it  :oops: 

Now I guess I'm gonna have to get them to reinstall it.  :?

EDIT: I think I should be able to customize it when it gets reinstalled...hopefully.

-----------------------------------
copthesaint
Thu Sep 30, 2010 6:36 pm

RE:Creating a forum in phpBB
-----------------------------------
Go to this site www.w3schools.com for things like php, Css and asp.net. Its a very good site, My dad, who creates websites, says it is an excellent resource. -> http://shan-tech.blogspot.com/ My dads help page. Or one of them at least... lol

-----------------------------------
ProgrammingFun
Thu Sep 30, 2010 8:30 pm

RE:Creating a forum in phpBB
-----------------------------------
Another question...how can I make, upload, and run AI Bots on the forum to check for and remove inappropriate content etc...

I have already checked http://www.phpbb.com/customise/db/modifications-1/ 
but how would I get this to work?

Sorry for the noob questions...

-----------------------------------
Dan
Fri Oct 01, 2010 2:49 am

Re: RE:Creating a forum in phpBB
-----------------------------------
Another question...how can I make, upload, and run AI Bots on the forum to check for and remove inappropriate content etc...


This is not trival and i would not trust it to a random bot script. There are some spam services and black lists you can subcribe to, however, there is no magic soultion to spam and inappropritate content. Afterall this is what mods and admins are for.

Some things you can do:

Use the word filter in phpBB to replace "bad" words.
Don't allow posts with know "bad" words or links to known "bad" sites.
If your version of phpBB does not require a captcha, add one.
Keep phpBB updated.
Require valid e-mails and have accounts activated via e-mail.
Have a mod aprove accounts before they can post.
Don't let users with less then X posts, post links or images.
Block access to users in countries that would not noramly access your fourm (ie. no need to allow access from russia if your site is just for your school)
Use a blacklist service like http://www.stopforumspam.com/
Add a system where users can report a user and or topic and even vote to ban the user and or topic.
Have many trusted admins/mods on 24/7.
Only allow file uploads of know safe types.
Have an admin/mod aprove signatures/avatars/etc before they are displayed.
Have an admin/mod aprove posts before they are displayed.


CompSci.ca uses a few of above, but obvesly not all as we don't want to restrict users.

Captcha on registartion page is a must, and it would likey be a good idea to add one to the post page too.

stopforumspam.com is a great way to share your ban list with other fourms. Currenly compsci.ca uses this service and so far it has worked well (however you may need to make the modifcations to phpBB your self).

And most of all get good mods that are allways online  :wink:

-----------------------------------
Amailer
Fri Oct 01, 2010 7:58 am

Re: RE:Creating a forum in phpBB
-----------------------------------
 have already checked http://www.phpbb.com/customise/db/modifications-1/ 
but how would I get this to work?

I haven't used phpBB3 a lot but I believe each mod comes with an XML file; open that XML file in firefox/IE and it should give you instructions on how to install that specific mod.

At least in phpBB2, mod installations required you to manually edit files at times as there was no "automatic" way of adding code. That might have changed however in  phpBB3 but I'm not 100% sure, read the instructions that are provided with each mod they should tell you.

-----------------------------------
ProgrammingFun
Fri Oct 01, 2010 9:48 pm

RE:Creating a forum in phpBB
-----------------------------------
The forum is successfull up at:
http://forum.victoriaparkci.com/v1/index.php

I set the default directory to /vi/index.php however, when I go to: 
http://forum.victoriaparkci.com/

there are no pictures there...

Plz help!!!

-----------------------------------
Zren
Fri Oct 01, 2010 10:00 pm

RE:Creating a forum in phpBB
-----------------------------------
That;s because all the links in the code are looking at ./styles/....png. Or this current folder. Somewhere there should be an option to set the installation folder in the BB admin stuff.

-----------------------------------
ProgrammingFun
Sat Oct 02, 2010 7:54 am

Re: RE:Creating a forum in phpBB
-----------------------------------
That;s because all the links in the code are looking at ./styles/....png. Or this current folder. Somewhere there should be an option to set the installation folder in the BB admin stuff.

Thanks...
...but something tragic happend  :( 
when I went to the forum today, I found out that it died.

I guess we're gonna have to restart.  :roll:

-----------------------------------
ProgrammingFun
Sat Oct 02, 2010 2:53 pm

Re: RE:Creating a forum in phpBB
-----------------------------------
That;s because all the links in the code are looking at ./styles/....png. Or this current folder. Somewhere there should be an option to set the installation folder in the BB admin stuff.

The site is back up and I still have the same problem.
Which option do I need to change?
I want to keep the forum in the v1 folder but I also want people to see it when they visit forum.victoiraparkci.com

EDIT:
another noob question,
if I want to add a favicon to the site, or change the header pic, do I need to edit the overall_header.html for each theme?
I changed one and I still can't see the favicon (it is in the same directory as the overall_header and is linked to as favicon.ico

-----------------------------------
ProgrammingFun
Sun Oct 03, 2010 7:17 pm

RE:Creating a forum in phpBB
-----------------------------------
@Dan/Tony, is it OK if I link to your site on the following page:

http://www.forum.victoriaparkci.com/v1/viewforum.php?f=18

-----------------------------------
ProgrammingFun
Wed Oct 13, 2010 4:44 pm

RE:Creating a forum in phpBB
-----------------------------------
How can I change the permissions of a forum so that only registered users with over a certain post count, mods, and admins can see it?
Thanks...
