Site Links
Home
Features
Documentation
Pricing & Order
Members Area
Support Options
UBBDev.com
UBBWiki.com
Who's Online
2 registered (Ruben, Gizmo), 24 Guests and 29 Spiders online.
Key: Admin, Global Mod, Mod
Featured Member
tee
tee
Registered: 07/18/06
Posts: 84
Top Posters (30 Days)
Ruben 45
Bert 26
Gizmo 19
Rob Provencher 12
SD 9
Rimex 9
sw55 7
Eugene 5
Matthias1976 4
TCS1 4
Latest Photos
Uhm...
Mayan End of World
Gas Station Disco Video Shoot
Test Pictures
Audrey Kate
Page 1 of 2 1 2 >
Topic Options
#249626 - 07/06/12 04:41 PM Using UBB as Comment Manager for Articles
BellaOnline Offline

addict
Registered: 06/12/06
Posts: 663
I have a site, BellaOnline, which is an article directory. So for example we have a Wine editor who writes articles on Wine. Associated with BellaOnline are our BellaOnline forums, which are UBB forums. So we have a forum area called "wine" where the wine lovers post.

Each time the Wine editor writes a new article, he creates a matching post in the forum. That way people interested in that article can talk about it. He can link from his article to that thread he created.

What I'd like to do is have the thread text show up UNDER THE ARTICLE, similar to how when you go to CNN or other news sites you see a running tally of comments beneath the article. That way they are right there.

Any ideas on how to make this happen? We have hundreds of thousands of threads. So the idea of exporting flat files of those threads and filling our disks with them boggles my mind. But on the other hand that still might be better than having database calls being made continually to the database, to extract the matching thread details for a given thread.

Is anybody doing this?
_________________________
Lisa Shea, owner, BellaOnline.com
BellaOnline Website
BellaOnline Forums - UBB since Apr 2002
Top
Express Hosting
Express Hosting "We are the official hosting company of UBB.threads. Ask us about our free migration services to migrate your UBB.threads installation."
#249627 - 07/06/12 05:41 PM Re: Using UBB as Comment Manager for Articles [Re: BellaOnline]
Dunny Offline
addict
Registered: 01/16/08
Posts: 546
Loc: DE USA
I am no expert as seen in another thread..however would RSS feeds do something similar? Not sure as I myself don't use them. (though I am thinking about it).

Dunny
_________________________
Dunny

Removed link due to bleedover spammers

Dawn of Iskirra
Top
#249634 - 07/07/12 04:21 PM Re: Using UBB as Comment Manager for Articles [Re: BellaOnline]
Ruben Online   hyper

Registered: 12/20/03
Posts: 4932
Loc: Lutz,FL
I am not 100% on what you are looking for but rss feeds as stated may work for you or using a post island and placing it external use may work. The issue with that method is you currently only have the ability to create 10 post islands.
_________________________
Blue Man Group


There is no such thing as stupid questions. Just stupid answers
Top
#249653 - 07/09/12 01:22 AM Re: Using UBB as Comment Manager for Articles [Re: BellaOnline]
cascadeclimbers Offline

enthusiast
Registered: 06/02/04
Posts: 219
Loc: Seattle, WA
Macworld used to do this when they ran UBB, and they do so now with IPB.

Displaying the posts isn't very hard. If you wanted to allow people to comment in the article it would be harder, maybe something to iterate on. The key to doing this is tying the article to the thread somehow.
_________________________
Won't you take me to Funkytown?
Top
#249656 - 07/09/12 10:46 AM Re: Using UBB as Comment Manager for Articles [Re: BellaOnline]
Gizmo Online   cat

Registered: 06/05/06
Posts: 15453
Loc: Portland, OR; USA
Actually, embedding the post form wouldn't be hard at all to allow comments from the page, so long as you disabled the referrer checking in the control panel.
_________________________
Forums: UGN Security & VNC Web Design & Development
UBB.Threads: UBB.Wiki, My UBBSkins, UBB.Sitemaps
Longtime Supporter, Beta Tester & Resident Post-A-Holic.
Modifications, Upgrades, Styling, Coding Services, Disaster Recovery, and more!
Top
#250571 - 10/09/12 04:48 AM Re: Using UBB as Comment Manager for Articles [Re: BellaOnline]
BellaOnline Offline

addict
Registered: 06/12/06
Posts: 663
I'm just getting back to this project again, now that I have all my forums auto-watching properly. That was the first stage in this process.

OK, so adding comment boxes plus existing posts for a given thread to an external site. Here's what I'm looking to do.

BellaOnline has 400 sites. Each site has a forum area in the matching forums.bellaonline.com forum. So for example:

low carb site -
http://lowcarb.bellaonline.com/Site.asp

Low carb forum -
http://forums.bellaonline.com/ubbthreads.php?ubb=postlist&Board=221&page=1

So far so good. Now the low carb forum has lots of threads in it. I try to make a new thread to go with each new article. So article on eggs and salmonella -

http://www.bellaonline.com/articles/art178214.asp

forum thread on eggs and salmonella -

http://forums.bellaonline.com/ubbthreads...lmonella#UNREAD

Nobody is posting in that thread because it's too cumbersome to go from the article over to the forum to post about it.

So I want the thread content from that "eggs and salmonella" article to show up UNDERNEATH the article content on the main BellaOnline site. And then I want a post box so that someone could add their own thoughts to the thread without manually going over to the forum.

If they're not logged in, it would prompt them to log in, but at least logged in members could instantly post.

Here's part of my challenge. My site gets around 15 million pageviews a month. So that's a lot of hammering. I don't necessarily want, every time an article is requested, for it to have to do a lot of queries to the UBB database to drag out the thread content. Especially if most threads aren't changing often. On the other hand, I have hundreds of thousands of threads. I cringe at the idea of having a script write all of these to a file somewhere in a massive directory. Still, clearly the data has to be *somewhere* to be retrieved when the user needs to see it. So I think having static files on a hard drive would be quicker than constant database queries.

Of course I say that and the BellaOnline article database is all done with live queries, so every time someone requests and article it's going into a SQL database for that content. So that is already working that way and the site loads fairly quickly. So maybe my database concerns aren't overly important.

ASP doesn't play well with RSS so I don't want to be writing things out into RSS and then having ASP have to re-translate it again to put onto the page. It makes more sense to write it out in HTML so ASP can simply include that HTML file and plunk it up without any further work.

So I suppose what I really need, and I cringe again at thinking this, is something that, every time a post is changed, it re-writes that thread out to a flat file. Directories choke if they get too big so it'd have to be organized somehow so a given directory didn't grow too huge. And then I'd need for my article database to know what thread ID to grab for a given article, so that when article 12345 was drawing, it knew to go find thread 98765 to show the matching content for.

You can see why I keep putting this off. But I think it's critical to build up discussion momentum again. People just don't seem to go into standalone forums as much as they used to. They now expect to comment and interact right where they're reading the article.
_________________________
Lisa Shea, owner, BellaOnline.com
BellaOnline Website
BellaOnline Forums - UBB since Apr 2002
Top
#250574 - 10/09/12 10:01 AM Re: Using UBB as Comment Manager for Articles [Re: BellaOnline]
Gizmo Online   cat

Registered: 06/05/06
Posts: 15453
Loc: Portland, OR; USA
If your pages where using PHP I'd suggest using the User Authentication Class over @ UBBDev, it'd allow you to see if a user is logged in or not and then you could do a little form manipulation to allow posting from an outside page... Unfortunately though, you're using ASP which I know absolutely zilch about...
_________________________
Forums: UGN Security & VNC Web Design & Development
UBB.Threads: UBB.Wiki, My UBBSkins, UBB.Sitemaps
Longtime Supporter, Beta Tester & Resident Post-A-Holic.
Modifications, Upgrades, Styling, Coding Services, Disaster Recovery, and more!
Top
#250582 - 10/09/12 02:33 PM Re: Using UBB as Comment Manager for Articles [Re: BellaOnline]
BellaOnline Offline

addict
Registered: 06/12/06
Posts: 663
Yes, I know, you guys aren't too fond of ASP smile. I'll take it piece by piece and see what I can do. The first step is to show the existing parts of the thread so they know what they're responding to. So I have to figure out how to write a thread in a nice HTML fashion when it's updated. I need to have it write into directories in an organized way. Probably a directory per forum, but also I need to organize within that directory. Some forums get huge traffic and if I just dumped one file per thread into a directory it might exceed the directory's ability to work properly. So then maybe subdivide by increments of 10,000?
_________________________
Lisa Shea, owner, BellaOnline.com
BellaOnline Website
BellaOnline Forums - UBB since Apr 2002
Top
#250587 - 10/09/12 07:16 PM Re: Using UBB as Comment Manager for Articles [Re: BellaOnline]
Gizmo Online   cat

Registered: 06/05/06
Posts: 15453
Loc: Portland, OR; USA
:snicker: maybe a slightly smaller number really...

You must utilize the crap out of Sitemaps...
_________________________
Forums: UGN Security & VNC Web Design & Development
UBB.Threads: UBB.Wiki, My UBBSkins, UBB.Sitemaps
Longtime Supporter, Beta Tester & Resident Post-A-Holic.
Modifications, Upgrades, Styling, Coding Services, Disaster Recovery, and more!
Top
#250588 - 10/09/12 07:28 PM Re: Using UBB as Comment Manager for Articles [Re: BellaOnline]
BellaOnline Offline

addict
Registered: 06/12/06
Posts: 663
Gizmo -

Do you mean less than 10,000 files in a given directory? I've had mail queue directories that get over 300,000 files in them and they only seem to crawl when they get up over 100,000 files in them. The directory structures seem fine with 80,000 files. Have you seen issues with directories that have only 10,000 files in them? To me that's a fairly small number of files ...?
_________________________
Lisa Shea, owner, BellaOnline.com
BellaOnline Website
BellaOnline Forums - UBB since Apr 2002
Top
Page 1 of 2 1 2 >



Moderator:  AllenAyres, Harold, Ian, Ron M 
Shout Box

Today's Birthdays
No Birthdays
Recent Topics
Express hosting.
by Ruben
05/16/13 03:54 PM
Level of detail in new user registration emails
by Mitch P.
05/15/13 10:20 PM
Approving users
by Bert
05/15/13 09:22 PM
Users randomly added to other group
by Bert
05/15/13 09:15 PM
Posting and other problems with 7.5.7
by Matthias1976
05/15/13 02:58 PM
Forum Stats
10965 Members
36 Forums
33957 Topics
183402 Posts

Max Online: 978 @ 06/24/07 10:19 PM
Random Image