|
Yet Another Forum.NET
»
YAF Forum Discussions
»
YAF Announcements
»
YAF v1.9.403 BETA3 (Dated: 10/22/2009) - SVN Rev. 2796
 Rank: YAF MVP
Medals:  
Joined: 8/16/2008(UTC) Posts: 336 Location: il
Thanks: 6 times Was thanked: 7 time(s) in 7 post(s)
|
sweet! i found myself in the changelog!! ill begin testing this on my forum next week.
|
|
|
|
|
|
Rank: YAF Lover
Joined: 5/27/2008(UTC) Posts: 70 Location: South Burlington, Vermont
Thanks: 2 times Was thanked: 1 time(s) in 1 post(s)
|
Beta 3???? Damn, you guys are crankin! It was like 8 months between betas with 1.9.3. Now it's more like 8 days!
I thought I'd be updating to Beta2 over the weekend. Even better!
|
|
|
|
|
|
Rank: YAF Head Dude
Medals:  
Joined: 10/9/2004(UTC) Posts: 4,152 Location: Raleigh, NC
Thanks: 35 times Was thanked: 94 time(s) in 49 post(s)
|
daveburke wrote:Beta 3???? Damn, you guys are crankin! It was like 8 months between betas with 1.9.3. Now it's more like 8 days!
I thought I'd be updating to Beta2 over the weekend. Even better! Honestly, Beta 2 had some issues. It was best to move to 3 as soon as possible  Let me know how update to latest goes... "I have a simple philosophy: Fill what's empty. Empty what's full. Scratch where it itches.”. 
|
|
|
|
|
|
Rank: Advanced Member
Joined: 12/17/2008(UTC) Posts: 45 Location: Surin Thailand
Thanks: 0 times Was thanked: 0 time(s) in 0 post(s)
|
Will this be supported on godaddy hosting?
|
|
|
|
|
|
Rank: YAF Lover
Joined: 5/27/2008(UTC) Posts: 70 Location: South Burlington, Vermont
Thanks: 2 times Was thanked: 1 time(s) in 1 post(s)
|
Using the source distrib to upgrade from 1.9.3. Playing with it now!!! Small logic error in SQL upgrade scripts. Does an !IfExists.Create on yaf_PMessageView then throws error on invalid IsDeleted column in procedures.sql. Need to add IfExists.Alter then add IsDeleted from yaf_UserPMessage table since yaf_PMessageView exists in 1.9.3 but doesn't have the IsDeleted column. Code:
FILE: mssql/procedures.sql
ERROR: Invalid column name 'IsDeleted'.
STATEMENT: CREATE PROCEDURE [dbo].[yaf_pmessage_list](@FromUserID int=null,@ToUserID int=null,@UserPMessageID int=null) AS BEGIN SELECT PMessageID, UserPMessageID, FromUserID, FromUser, ToUserID, ToUser, Created, Subject, Body, Flags, IsRead, IsInOutbox, IsArchived, IsDeleted FROM [dbo].[yaf_PMessageView] WHERE ((@UserPMessageID IS NOT NULL AND UserPMessageID=@UserPMessageID) OR (@ToUserID IS NOT NULL AND ToUserID = @ToUserID) OR (@FromUserID IS NOT NULL AND FromUserID = @FromUserID)) ORDER BY Created DESC END
Back later! Thanks for making the source distribution available. It means a lot and is very helpful to The Cause. -Dave
|
|
|
|
|
|
Rank: YAF Lover
Joined: 5/27/2008(UTC) Posts: 70 Location: South Burlington, Vermont
Thanks: 2 times Was thanked: 1 time(s) in 1 post(s)
|
Huge Avatars sited. The settings are the default 150x150 and they're in yaf_registry, but being ignored on existing avatars. Here are a couple of screenshots. Oh, I see YAF's cool "attach files" feature are not enabled on this forum. No problem. http://dbvt.com/x/a/y/yaf1024a.jpghttp://dbvt.com/x/a/y/yaf1024b.jpg
|
|
|
|
|
|
Rank: YAF Lover
Joined: 5/27/2008(UTC) Posts: 70 Location: South Burlington, Vermont
Thanks: 2 times Was thanked: 1 time(s) in 1 post(s)
|
Wow, I had already seen that active topics were fixed in 1.9.4, almost reason enough for me to upgrade to the beta, but after seeing tinyMCE and the Shoutbox I'm just blown away. Amazing job, guys. I'm going to play around for awhile, do some integration work, but definitely moving forward. I'm eager to see how several YAF boards will work on the same site. They worked great in 1.9.3. Regarding ASPNET Membership integration, I went through the source and did a quick replace on "Administrators" to "ForumAdministrator" to match Sueetie roles as I did with 1.9.3. "Registered" is the same. Then I replaced the YAF.Providers for Membership, Roles and Profile with the standard Web.Security providers I've used with 1.9.3. Since I'm using central member administration to assign roles, manage emails, etc., I think this is going to work perfectly. I am still able to retrieve member info, everything YAF does normally without error, though I'd be using the site admin piece, not YAF for that as I said. The point is that everything just works! Here's the exact web.config contents that seem to work in my environment, FWIW. Code: <membership defaultProvider="SqlMembershipProvider"> <providers> <clear/> <add name="SqlMembershipProvider" type="System.Web.Security.SqlMembershipProvider" connectionStringName="yafnet" applicationName="Sueetie" requiresQuestionAndAnswer="false" requiresUniqueEmail="true" passwordStrengthRegularExpression="" minRequiredPasswordLength="6" minRequiredNonalphanumericCharacters="0" passwordFormat="Encrypted"/> </providers> </membership> <roleManager defaultProvider="SqlRoleProvider" enabled="true" cacheRolesInCookie="true" cookieName=".SueetieROLES"> <providers> <clear/> <add name="SqlRoleProvider" type="System.Web.Security.SqlRoleProvider" connectionStringName="yafnet" applicationName="Sueetie"/> </providers> </roleManager> <profile defaultProvider="CustomProfileProvider" enabled="true" automaticSaveEnabled="true" inherits="YAF.Classes.Utils.YafUserProfile"> <providers> <clear/> <add name="CustomProfileProvider" type="System.Web.Profile.SqlProfileProvider" connectionStringName="yafnet" applicationName="Sueetie"/> </providers> <properties> <clear/> <add name="DisplayName" type="String" serializeAs="String"/> </properties> </profile>
|
|
|
|
|
|
Rank: YAF Lover
Joined: 5/27/2008(UTC) Posts: 70 Location: South Burlington, Vermont
Thanks: 2 times Was thanked: 1 time(s) in 1 post(s)
|
This is beta source, I realize, and you probably already know about this, but compiling the source is kind of squirrelly. My current compile error has to do with AdminMenu. According to this there's not supposed to be any content allowed between the opening and closing tags of AdminMenu. http://dbvt.com/x/a/y/yaf1024c.jpgThat results in a slew of compile errors http://dbvt.com/x/a/y/yaf1024d.jpgand the inability to use the admin area. http://dbvt.com/x/a/y/yaf1024e.jpgI'll play with this some more and if I come up with anything, will let you know. Thanks, Dave
|
|
|
|
|
|
Rank: YAF Lover
Joined: 5/27/2008(UTC) Posts: 70 Location: South Burlington, Vermont
Thanks: 2 times Was thanked: 1 time(s) in 1 post(s)
|
Playing more with AdminMenu. Don't know if helping or adding more noise. Apologies if the latter. Noticed I'm not retrieving the menu definition file in AdminMenu OnLoad() when I step through the source. Code: string defFile = "YAF.Controls.AdminMenu.AdminMenuDef.xml";
var deserializer = new XmlSerializer(typeof(YafMenu)); using (Stream resourceStream = Assembly.GetAssembly(this.GetType()).GetManifestResourceStream(defFile)) { // resourceStream is null if (resourceStream != null) _menuDef = (YafMenu)deserializer.Deserialize(resourceStream); }
Thanks, Dave
|
|
|
|
|
|
Rank: YAF Head Dude
Medals:  
Joined: 10/9/2004(UTC) Posts: 4,152 Location: Raleigh, NC
Thanks: 35 times Was thanked: 94 time(s) in 49 post(s)
|
Not sure Dave... the dev team and I are not having 3000 errors compiling. Dave... can we move this into the source forum or another forum? There you can upload. Features are limited on this forum to cut down on the noise. "I have a simple philosophy: Fill what's empty. Empty what's full. Scratch where it itches.”. 
|
|
|
|
|
|
Rank: YAF Lover
Joined: 5/27/2008(UTC) Posts: 70 Location: South Burlington, Vermont
Thanks: 2 times Was thanked: 1 time(s) in 1 post(s)
|
Thanks for replying, Jaben. The only thing that's keeping me from going live is the AdminMenu control issue. Will post on my future adventures with compiling in the source forum.
-Dave
|
|
|
|
|
|
Rank: YAF Commander
Medals: 
Joined: 11/19/2007(UTC) Posts: 146
Thanks: 0 times Was thanked: 5 time(s) in 5 post(s)
|
Whitterz wrote:Will this be supported on godaddy hosting? I'm also interested in this. For those of us who are less technically astute, will there be a "step by step" deployment guide on how to roll out this new release? I see SO many fabulous new features that I'd love to update from the existing 1.9.1.8 which is what GoDaddy is using. Thanks to all for your excellent work and contribution to the online community.
|
|
|
|
|
|
Rank: YAF Leader
Medals: 
Joined: 3/15/2008(UTC) Posts: 300
Thanks: 6 times Was thanked: 32 time(s) in 30 post(s)
|
Works Great on GoDaddy, As for the upgrade from 1.9.1.8 to the new beta have not tried it yet.
|
|
|
|
|
|
Rank: YAF Lover
Joined: 8/28/2009(UTC) Posts: 48
Thanks: 1 times Was thanked: 3 time(s) in 3 post(s)
|
I am searching for YafAPIDocumentation.chm, is it a joke ?
CS
|
|
|
|
|
|
Rank: YAF Lover
Joined: 8/28/2009(UTC) Posts: 48
Thanks: 1 times Was thanked: 3 time(s) in 3 post(s)
|
Hello,
I would appreciate to understand the status of this Beta, is it near RTM ? How long for a stable enough version ? What are the : 1) deprecated 2) less stable 3) not working area It's evident that many changes have occurred, is it worth working on 1.9.3 when we need adaptations ?
Thanks for some answer.
CS
|
|
|
|
|
|
Yet Another Forum.NET
»
YAF Forum Discussions
»
YAF Announcements
»
YAF v1.9.403 BETA3 (Dated: 10/22/2009) - SVN Rev. 2796
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.
YAFPro Theme Created by Jaben Cargman (Tiny Gecko)Powered by YAF 1.9.4 RC4 | YAF © 2003-2010, Yet Another Forum.NETThis page was generated in 0.339 seconds.
|
|