Welcome Guest Search | Active Topics | Members | Log In | Register

the agony booth
the agony booth Offline
#1 Posted : Saturday, May 17, 2008 8:10:36 AM

Rank: Member

Joined: 12/10/2007
Posts: 12
Location: Tustin, CA

Thanks: 0 times
Was thanked: 0 time(s) in 0 post(s)
Hey all, our website the agony booth is a site devoted to making fun of bad movies. We just upgraded to YAF 1.9.1.8 (the forums were formerly using Snitz). So far, all of our existing forum members are very pleased.

http://www.agonybooth.com/Forum.aspx

Thanks to the YAF development team for all their hard work!


Jaben Offline
#2 Posted : Saturday, May 17, 2008 11:04:30 AM

Rank: YAF Head Dude

Medals: Medal of Honor Key: Given to pillars of the community who are key players in the YAF community and project.Medal of Honor for the Support King: Given to a community member who tirelessly answers tons of support questions.

Joined: 10/9/2004
Posts: 4,009
Location: Asheville, NC

Thanks: 20 times
Was thanked: 48 time(s) in 31 post(s)
Nice. Like the topic -- looks like an active site! Might suggest turning URL Rewriting ON (in yafnet.config) since you might want better SEO accessibility.
"I have a simple philosophy: Fill what's empty. Empty what's full. Scratch where it itches.”.

test2005 Offline
#3 Posted : Saturday, May 17, 2008 2:09:14 PM


Rank: YAF MVP

Medals: Medal of Honor Key: Given to pillars of the community who are key players in the YAF community and project.

Joined: 2/12/2005
Posts: 1,032
Location: Italy

Thanks: 0 times
Was thanked: 0 time(s) in 0 post(s)

Very nice site! The forum and the site go together nicely.

Only thing I'd change is the home page width. It's not taking up 100% width, which would make it blend better into the forum.

Cool topic! Worst fild I've seen lately is The Crow 4!!! Talk about pure agony!!!!

Razz

.....the man in black fled across the desert..........and the gunslinger followed.....

ash360 Offline
#4 Posted : Saturday, May 17, 2008 3:42:13 PM

Rank: YAF Commander

Joined: 3/28/2008
Posts: 122
Location: New York

Thanks: 0 times
Was thanked: 0 time(s) in 0 post(s)
nice site
its really interesting
Visit my Forums: FORUMZ360.com
the agony booth Offline
#5 Posted : Saturday, May 17, 2008 4:32:56 PM

Rank: Member

Joined: 12/10/2007
Posts: 12
Location: Tustin, CA

Thanks: 0 times
Was thanked: 0 time(s) in 0 post(s)
Jaben wrote:
Nice. Like the topic -- looks like an active site! Might suggest turning URL Rewriting ON (in yafnet.config) since you might want better SEO accessibility.

Unfortunately, I have my own custom URL rewriting for my site content, otherwise I would. I'm not so sure it matters anymore. Google still indexes all the forums and topics just fine.

The only thing I don't like from an SEO perspective is that when I integrate the yaf:Forum control into my existing site template, I can't get the title of the topic in the browser title bar. The page title is the same for all topics in the forum. Is there any way to fix that?


Jaben Offline
#6 Posted : Sunday, May 18, 2008 12:18:06 PM

Rank: YAF Head Dude

Medals: Medal of Honor Key: Given to pillars of the community who are key players in the YAF community and project.Medal of Honor for the Support King: Given to a community member who tirelessly answers tons of support questions.

Joined: 10/9/2004
Posts: 4,009
Location: Asheville, NC

Thanks: 20 times
Was thanked: 48 time(s) in 31 post(s)
The page that contains your head should have this in it:

<head id="YAFHead" runat="server">
...blah title, etc...
</head>

YAF will locate it and change the title as needed. (Works for Master Pages too.)
"I have a simple philosophy: Fill what's empty. Empty what's full. Scratch where it itches.”.

the agony booth Offline
#7 Posted : Sunday, May 18, 2008 1:17:20 PM

Rank: Member

Joined: 12/10/2007
Posts: 12
Location: Tustin, CA

Thanks: 0 times
Was thanked: 0 time(s) in 0 post(s)
Jaben wrote:
The page that contains your head should have this in it:

<head id="YAFHead" runat="server">
...blah title, etc...
</head>

YAF will locate it and change the title as needed. (Works for Master Pages too.)

That did the trick. Thanks a bunch!


sayedwasim Offline
#8 Posted : Monday, May 26, 2008 10:26:22 PM

Rank: Member

Joined: 5/13/2008
Posts: 11

Thanks: 0 times
Was thanked: 0 time(s) in 0 post(s)
hi,
just wondering how you made the forum rules open as a seperate page, meaning that the page is kinda not integrated with the forum (forum.aspx?....). Same like how the Wiki forum opens as a seperate page in this forum. Would like to know how its done.

Thanks
ash360 Offline
#9 Posted : Tuesday, May 27, 2008 1:22:42 AM

Rank: YAF Commander

Joined: 3/28/2008
Posts: 122
Location: New York

Thanks: 0 times
Was thanked: 0 time(s) in 0 post(s)
sayedwasim wrote:
hi,
just wondering how you made the forum rules open as a seperate page, meaning that the page is kinda not integrated with the forum (forum.aspx?....). Same like how the Wiki forum opens as a seperate page in this forum. Would like to know how its done.

Thanks


i think when you create a forum you have the option to use and external url for it
Visit my Forums: FORUMZ360.com
APIJunkie Offline
#10 Posted : Tuesday, October 28, 2008 12:28:55 AM
Rank: YAF Forumling

Joined: 10/27/2008
Posts: 4
Location: US

Thanks: 0 times
Was thanked: 0 time(s) in 0 post(s)
Jaben wrote:
The page that contains your head should have this in it:

<head id="YAFHead" runat="server">
...blah title, etc...
</head>

YAF will locate it and change the title as needed. (Works for Master Pages too.)


Another way that was useful for me, when I didn't want to change the page header, was to use the PageTitleSet event:
public event EventHandler<yaf.pages.ForumPageArgs> PageTitleSet;
So in the page I embed the forum control I can do the following:
protected void Page_Load(object sender, EventArgs e)
{
forum.PageTitleSet += new EventHandler<yaf.pages.ForumPageArgs>(forum_PageTitleSet);
}
And then the handler could look something like:
void forum_PageTitleSet(object sender, yaf.pages.ForumPageArgs e)
{
Title = e.Title;
}

anil21_22gupta Offline
#11 Posted : Thursday, February 04, 2010 11:53:23 AM
Rank: YAF Forumling

Joined: 2/4/2010
Posts: 1
Location: Delhi

Thanks: 0 times
Was thanked: 0 time(s) in 0 post(s)
Thanks a lot for this thread.
I was looking for the title tag solution for a long time with YAF.

Thanks to google search also, they pointed me to this thread Smile
Users browsing this topic
Guest
Forum Jump  
You cannot post new topics in this forum.
You cannot reply to topics in this forum.
You cannot delete your posts in this forum.
You cannot edit your posts in this forum.
You cannot create polls in this forum.
You cannot vote in polls in this forum.