|
Rank: YAF Head Dude
Medals: 
Joined: 3/18/2003(UTC) Posts: 426 Location: Kristiansund, Norway
Thanks: 0 times Was thanked: 0 time(s) in 0 post(s)
|
I've been doing some more work on the migration to ASP.NET 2.0. * Uses ASP.NET DB for security. * Roles and users are mirrored to the forum tables. * Upgrades existing forums to ASP.NET DB (creates users and roles). This is only a test version, so please don't use it in any production environment. I recommend doing a clean install instead of upgrading at this point, although upgrades also should function ok. Rename default.config to web.config and edit connection strings and mail settings in the file. Known issues: * After registration users can log in without approval or e-mail verification. Is it possible to use ASP.NET DB and require e-mail verification of users? To open this solution in VS2005 you need to download the Visual Studio Web Application Project.
|
|
|
|
|
|
 Rank: YAF Developer
Medals:  
Joined: 7/12/2005(UTC) Posts: 1,899 Location: on Dock Street
Thanks: 2 times Was thanked: 9 time(s) in 9 post(s)
|
ok I must be doing something wrong, new install no upgrade, get to the third wizard screen where it asks for details like admin name, admin email etc.. fill that in and clicked next. I then recieve error : Failed to create user: Error Status: Invalid Password. If I can gleen anymore I'll post.  "It's a case of RTFM.. the only problem being we don't have a manual!" When I post FP:Mek in a topic, I'm leaving my footprint there so I can track it once I get into coding/supporting. (Yes I stole this off Ederon  )
|
|
|
|
|
|
 Rank: YAF Developer
Medals:  
Joined: 7/12/2005(UTC) Posts: 1,899 Location: on Dock Street
Thanks: 2 times Was thanked: 9 time(s) in 9 post(s)
|
Ignore, I was being a prat and had not install aspnetdb. aspnet_regsql.exe from the .net command prompt for anyone else who doesn't know.  "It's a case of RTFM.. the only problem being we don't have a manual!" When I post FP:Mek in a topic, I'm leaving my footprint there so I can track it once I get into coding/supporting. (Yes I stole this off Ederon  )
|
|
|
|
|
|
 Rank: YAF Developer
Medals:  
Joined: 7/12/2005(UTC) Posts: 1,899 Location: on Dock Street
Thanks: 2 times Was thanked: 9 time(s) in 9 post(s)
|
How I wish you could edit your own posts on this forum... right just as a warning to everybody if you do an upgrade on your dev server, and your smtp works on your dev. THis upgrade masses all users with a new password .. so all my users recieved new passwords that wouldn't work on a live forum. I think I should just give up for today. p.s. If anyone has any suitable guides/tutorials on aspnetdb and this role membership thingy I'd be grateful (so please PM).  "It's a case of RTFM.. the only problem being we don't have a manual!" When I post FP:Mek in a topic, I'm leaving my footprint there so I can track it once I get into coding/supporting. (Yes I stole this off Ederon  )
|
|
|
|
|
|
Rank: YAF Head Dude
Medals: 
Joined: 3/18/2003(UTC) Posts: 426 Location: Kristiansund, Norway
Thanks: 0 times Was thanked: 0 time(s) in 0 post(s)
|
If you read the information on the "Migrate Roles and Users" screen during upgrade you will see the text "all of the users in your forum database will be converted to users in the ASP.NET DB with new passwords mailed to their e-mail address".
|
|
|
|
|
|
 Rank: YAF Developer
Medals:  
Joined: 7/12/2005(UTC) Posts: 1,899 Location: on Dock Street
Thanks: 2 times Was thanked: 9 time(s) in 9 post(s)
|
Indeed, reading. Damn those seductive next buttons that just make you want to click  "It's a case of RTFM.. the only problem being we don't have a manual!" When I post FP:Mek in a topic, I'm leaving my footprint there so I can track it once I get into coding/supporting. (Yes I stole this off Ederon  )
|
|
|
|
|
|
Rank: YAF Camper
Joined: 2/20/2006(UTC) Posts: 13 Location: USSR, Moscow
Thanks: 0 times Was thanked: 0 time(s) in 0 post(s)
|
When install page asks to create configuration pass, after inputting and pressing "next" button install page just reloads, and asks again to create conf pass... What to do? Deus To Vult! 
|
|
|
|
|
|
Rank: YAF Head Dude
Medals: 
Joined: 3/18/2003(UTC) Posts: 426 Location: Kristiansund, Norway
Thanks: 0 times Was thanked: 0 time(s) in 0 post(s)
|
Institoris wrote:When install page asks to create configuration pass, after inputting and pressing "next" button install page just reloads, and asks again to create conf pass... What to do? Do you have javascript enabled in your browser? If anything goes wrong you should get an alert.
|
|
|
|
|
|
Rank: YAF Camper
Joined: 2/20/2006(UTC) Posts: 13 Location: USSR, Moscow
Thanks: 0 times Was thanked: 0 time(s) in 0 post(s)
|
JS enabled, but no errors are shown. Tried on opera and IE. Same result both. Deus To Vult! 
|
|
|
|
|
|
 Rank: YAF MVP
Medals: 
Joined: 2/11/2005(UTC) Posts: 1,032 Location: Italy
Thanks: 0 times Was thanked: 1 time(s) in 1 post(s)
|
Institoris wrote:When install page asks to create configuration pass, after inputting and pressing "next" button install page just reloads, and asks again to create conf pass... What to do? Im getting exactly the same error happeninf when I try to install! Even tried manually creating the database and appsettngs strings.....no luck .....the man in black fled across the desert..........and the gunslinger followed.....
|
|
|
|
|
|
Rank: YAF Commander
Joined: 7/29/2005(UTC) Posts: 85 Location: Spain
Thanks: 0 times Was thanked: 0 time(s) in 0 post(s)
|
I had the same problem in 1.9.1. I commented in pages/forumpage.cs in ForumPage_Load() function the lines Code:try { string key = string.Format("BannedIP.{0}",PageBoardID); DataTable banip = (DataTable)HttpContext.Current.Cache[key]; if(banip == null) { banip = DB.bannedip_list(PageBoardID,null); HttpContext.Current.Cache[key] = banip; } foreach(DataRow row in banip.Rows) if(Utils.IsBanned((string)row["Mask"], HttpContext.Current.Request.ServerVariables["REMOTE_ADDR"])) HttpContext.Current.Response.End(); } catch(Exception) { // If the above fails chances are that this is a new install Response.Redirect(Data.ForumRoot + "install/"); } and I can get the portal pages, not the install pages. In 1.9.2 I think it is the same thing, but I did not test it.
|
|
|
|
|
|
Rank: YAF Commander
Joined: 7/29/2005(UTC) Posts: 85 Location: Spain
Thanks: 0 times Was thanked: 0 time(s) in 0 post(s)
|
I have problems with the 1.9.2 version in a shared host because the membersip ASP.NET 2.0 provider has hard-coded the user dbo to call the stored procedures and my hoster does not allow me to use the dbo but my own user.
I changed all the asp_ SP to use my own user but the membership provider allways use dbo.
Does mean this that the new YAF 2.0 will not work in shared host?
|
|
|
|
|
|
Rank: YAF Commander
Joined: 7/29/2005(UTC) Posts: 85 Location: Spain
Thanks: 0 times Was thanked: 0 time(s) in 0 post(s)
|
Can you, please, put a URL to download the YAF release 1.9.1 again.
|
|
|
|
|
|
Rank: YAF Head Dude
Medals: 
Joined: 3/18/2003(UTC) Posts: 426 Location: Kristiansund, Norway
Thanks: 0 times Was thanked: 0 time(s) in 0 post(s)
|
herensuge wrote:Can you, please, put a URL to download the YAF release 1.9.1 again. The 1.9.1 release is "obsolete", and 1.9.2 was not based on 1.9.1. If you really really want it, send me a pm with your email address and I'll mail it to you.
|
|
|
|
|
|
Rank: YAF Commander
Joined: 7/29/2005(UTC) Posts: 85 Location: Spain
Thanks: 0 times Was thanked: 0 time(s) in 0 post(s)
|
bhenden wrote: The 1.9.1 release is "obsolete", and 1.9.2 was not based on 1.9.1. If you really really want it, send me a pm with your email address and I'll mail it to you.
Thank you, Bhenden, very much! I got the 1.9.1. release.
|
|
|
|
|
|
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.293 seconds.
|
|