Website Babble Webmaster Forums  

  #1 (permalink)  
Old 04-22-2007, 11:07 AM
max's Avatar
max max is offline
Regular Babbler
 
Join Date: Apr 2007
Posts: 91
max has a few positive reputation points
Default Creating a Forum Like This?

I know you should have traffic and content before you start trying to attract visitors to a forum but I just want more information on how to create a forum like this. I know I can't do it with sbi until content 2.0 comes out, but if I was just using a regular host, what's the process?
__________________
Just call me Max.
Reply With Quote
  #2 (permalink)  
Old 04-22-2007, 12:22 PM
lisa's Avatar
Administrator
 
Join Date: Apr 2007
Location: Dallas, TX
Posts: 4,214
lisa is the Admin and cannot be rated.
Default

Hey Max,

First of all, you need a standard host that allows MYSQL (almost all standard hosts provide that these days). You also need to create a database at your web host. It sounds complicated but it's really easy. I just logged into my hosting account and followed the instructions (and I am no techy!). Took about 2 minutes.

Once that is all done, you simply edit the control panel file that is provided when you buy the vbulletin forum script. There are about 10-15 variables you need to complete/edit (you can ask your host if you're not sure of some).

Then you just use an FTP program to upload the files to your web server, and your forum is ready to go. It sounds complicated but if you have a basic understanding of FTP-ing then it's no biggie. At worst you'll need to ask your host about some of the variables this script asks for but they are usually familiar with vbulletin since this is such a popular forum script.

Plus vbulletin has a forum for customers and anything I had questions on I got answered by searching their forums. I will admit I've installed other boards before so that helped but it's really not too difficult. It's amazing at what PHP can do and the customization options for this forum are amazing. I haven't even explored most of them yet. Hope that helps!
__________________
Don't put the cart before the horse.
Plan your website, then create it.

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2 Create a Website | 2 Create a Website Blog
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

Recent Blog Posts...

My Thoughts on Lazy People
A MUST READ for Struggling Bloggers
5 Assumptions You Shouldn't Make

Reply With Quote
  #3 (permalink)  
Old 04-22-2007, 01:01 PM
Supreme Babbler
 
Join Date: Apr 2007
Posts: 563
webdev has a few positive reputation points
Default

Lisa, you pretty much answered everything. I like to add that if you are looking for a free forum which is almost equivalent to vbulliten in features check out http://www.phpbb.com. But vbulliten is the preferred choice for everyone since it offers support. I think you get a licensee for ~$85. check it out here http://www.vbulletin.com/order/.

In order to set up phpbb.com, you need to download the lasted phpbb. 3.0 version, ftp it to directory where you want to install the forum (for example if you want the to forum to link to www.yourdomain.com/forums., then make a directory called "forums" on your plublic_html folder and ftp the files there) and follow the install instruction on your hosting server.

http://www.phpbb.com/support/documen...stallation.php

I think most hosting companies have tools or guides which can auto install third party tools like forums on your website. You will have to search your control panel to dig out all those features.
Reply With Quote
  #4 (permalink)  
Old 04-22-2007, 07:26 PM
lisa's Avatar
Administrator
 
Join Date: Apr 2007
Location: Dallas, TX
Posts: 4,214
lisa is the Admin and cannot be rated.
Default

Good point, webdev. I forgot about phpbb. I actually used them once before and they were even easier to install than vbulletin if I remember correctly.
__________________
Don't put the cart before the horse.
Plan your website, then create it.

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2 Create a Website | 2 Create a Website Blog
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

Recent Blog Posts...

My Thoughts on Lazy People
A MUST READ for Struggling Bloggers
5 Assumptions You Shouldn't Make

Reply With Quote
  #5 (permalink)  
Old 04-26-2007, 09:40 PM
ppcFanatic's Avatar
Master Babbler
 
Join Date: Apr 2007
Posts: 165
ppcFanatic has a few positive reputation points
Default

Lisa, did you program the URLs to be search engine friendly? I notice the thread paths are static. Is that an option with vBulletin?
__________________
Severely Addicted to AdWords
Reply With Quote
  #6 (permalink)  
Old 04-27-2007, 08:54 AM
lisa's Avatar
Administrator
 
Join Date: Apr 2007
Location: Dallas, TX
Posts: 4,214
lisa is the Admin and cannot be rated.
Default

Hey ppcFanatic,

Yes, I just bought a plug-in that turns the dynamically generated (PHP) links into static HTML pages so the SE's can finally spider it. Me program?? Heck no! LOL Thank goodness for plugins!!
__________________
Don't put the cart before the horse.
Plan your website, then create it.

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2 Create a Website | 2 Create a Website Blog
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

Recent Blog Posts...

My Thoughts on Lazy People
A MUST READ for Struggling Bloggers
5 Assumptions You Shouldn't Make

Reply With Quote
  #7 (permalink)  
Old 04-27-2007, 09:09 AM
Supreme Babbler
 
Join Date: Apr 2007
Posts: 563
webdev has a few positive reputation points
Default

That's a good point you made lisa. SE don't sipider page with uri made of query strings so its good turn the uri into a proper readable uri.

For example:
a url www.example.com/?article=12345 could be turned into www.example.com/article/12345.html which is easier for the SE spider to index, otherwwise it will get missed.

Well, if any one intersted to know how that is done. You could do that in the .htaccess file (sititng on your root directory) using a mod_rewite rules to turn any query string uris to proper URIs, given that you are running your application an apache web server.
Reply With Quote
  #8 (permalink)  
Old 04-27-2007, 10:48 AM
lisa's Avatar
Administrator
 
Join Date: Apr 2007
Location: Dallas, TX
Posts: 4,214
lisa is the Admin and cannot be rated.
Default

Yep you got it, webdev! And from my limited understanding of mod_rewrites that's exactly what this script does (I actually understood what you wrote about mod_rewrites... SCARY! ) And I could even choose the formatting of the URLs through the control panel. It was pretty easy to use for a non techy like myself.

I'm glad you're here, webdev 'cause I may have some more php questions for you down the line.
__________________
Don't put the cart before the horse.
Plan your website, then create it.

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2 Create a Website | 2 Create a Website Blog
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

Recent Blog Posts...

My Thoughts on Lazy People
A MUST READ for Struggling Bloggers
5 Assumptions You Shouldn't Make

Reply With Quote
  #9 (permalink)  
Old 04-27-2007, 12:40 PM
Supreme Babbler
 
Join Date: Apr 2007
Posts: 563
webdev has a few positive reputation points
Default

It will be exciting answering php questions

I'm just gonan post the mod_rewrite rule that can be used to change url. i haven't tested this thou.

RewriteEngine On
RewriteRule ^\article\(*)\.html$ /?article=$1 [L]

so basically a url http://www.example.com/?article=123456 will be converted to http://www.example.com/article/123456.html by apache before it shows up on the browser address bar.

hmmm. wouldn't be nice if write tutorials on mod_rewrite as well on my website
Reply With Quote
  #10 (permalink)  
Old 04-27-2007, 01:41 PM
Supreme Babbler
 
Join Date: Apr 2007
Posts: 563
webdev has a few positive reputation points
Default

Quote:
Yes, I just bought a plug-in that turns the dynamically generated (PHP) links into static HTML pages so the SE's can finally spider it. Me program?? Heck no! LOL Thank goodness for plugins!!
I didn't relaize you had to buy the plugin. I think it would be cool, if i make a free vbulletin plugin for converting URIs. I'm gonna add this to my to-do list for my new tutorial site. php plugins.
Reply With Quote
  #11 (permalink)  
Old 04-27-2007, 02:49 PM
lisa's Avatar
Administrator
 
Join Date: Apr 2007
Location: Dallas, TX
Posts: 4,214
lisa is the Admin and cannot be rated.
Default

Yep...this board wasn't cheap. LOL The standard vbulletin script is not SEO friendly. I had to buy vbseo (the plugin) and I just installed it yesterday. It has a ton of cool features like as the Admin I can see what external sites are linking to each individual thread and a ton of other cool things.

You would clean up if you could come up with some kind of script and offered much cheaper than vbseo. A lot of webmasters complain about the price of vbseo but then again no one has really come out with anything that can compete as far as I'm concerned. There was a free script out there, but I just felt more comfortable with vbseo after talking with some other webmasters that use it.

And the cool thing is it merges very nicely into the vbulletin Admin panel and you can tell a lot of work went into it.
__________________
Don't put the cart before the horse.
Plan your website, then create it.

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2 Create a Website | 2 Create a Website Blog
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

Recent Blog Posts...

My Thoughts on Lazy People
A MUST READ for Struggling Bloggers
5 Assumptions You Shouldn't Make

Reply With Quote
  #12 (permalink)  
Old 07-02-2007, 05:11 PM
Junior Babbler
 
Join Date: Jul 2007
Posts: 3
Mary has a few positive reputation points
Default vbulletin or PHPBB

I am trying to find out the main differences between these two types of forums. I am familiar with vbulletin from using it, but am looking for a way to create a forum that is very secure. I want to determine who can visit it and keep the content from being available to the public. I also need to make it look like the site that it will be attached to. Any advice is helpful.

Also, i see vbulletin used in a lot of places and they all look the same. I'm wondering if this is because users don't have much control over what the site looks like??

Mary

Last edited by Mary; 07-02-2007 at 05:21 PM.
Reply With Quote
  #13 (permalink)  
Old 07-02-2007, 05:29 PM
lisa's Avatar
Administrator
 
Join Date: Apr 2007
Location: Dallas, TX
Posts: 4,214
lisa is the Admin and cannot be rated.
Default

Hi and welcome, Mary

I believe you can do all of what you want with vbulletin. It's secure and I believe there is an option to manually approve new registrations to control who becomes a member. And if you don't want it visible to the public then there is a feature to only allow members to view the threads/discussions.

As far as design, you have complete control. Most people either don't want to go through the steps to incorporate it into their design or don't know how. It does take some tweaking and adding HTML/CSS to the footer/header templates of the forum but it is completely do-able and the "Admin panel" tells you where to edit the code to edit the header, body and footer of the forum. You can also change the colors of the forums if you'd like.

Vbulletin also has a nice members forum you can use if you want help with customization and other options. It's a very powerful piece of software and I bet I haven't used half of its features.
__________________
Don't put the cart before the horse.
Plan your website, then create it.

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2 Create a Website | 2 Create a Website Blog
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

Recent Blog Posts...

My Thoughts on Lazy People
A MUST READ for Struggling Bloggers
5 Assumptions You Shouldn't Make

Reply With Quote
  #14 (permalink)  
Old 07-02-2007, 05:43 PM
Junior Babbler
 
Join Date: Jul 2007
Posts: 3
Mary has a few positive reputation points
Default Thanks

Great. Thanks Lisa!
Reply With Quote
  #15 (permalink)  
Old 07-07-2007, 11:43 AM
GreenThumb's Avatar
Regular Babbler
 
Join Date: May 2007
Location: USA
Posts: 54
GreenThumb has a few positive reputation points
Default

Hey Lisa, just curious. We may be buying one of these for our church site for various groups to discuss different events. We have someone to install/setup the board but he will not be able to administer it for us all the time, someone else who is non technical will be maintaining it. Would you say you need to have programming experience to maintain the board? Like when you added the new forums, etc? Is that complicated?
Reply With Quote
Reply

Bookmarks

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On



All times are GMT -6. The time now is 07:58 AM.



WB Sponsors

Profit Lance Review

Work At Home Jobs

Houston Web Design

Search Engine Optimization

flash chat



 Subscribe to the Website Babble Feeds

2 Create a Website Homepage | 2 Create a Website Blog


Powered by vBulletin® Version 3.7.4
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Search Engine Optimization by vBSEO 3.1.0