OK. I've done some investigating. My installation stopped at the same spot as Mihai's - Configuring Super User.
I was puzzled as well since when I look at the database after running the install, I see tables created and some are populated with install data. I also see that the tables with the ASPNET_ prefix are owned by dbo as opposed to the rest of the tables which are owned by my database user provided by my host.
In my web.config file, I use that same database owner in both of the connection strings. I know this is correct because I get connected to the database and create and modify objects.
I also changed the parameter for databaseOwner from 'dbo' to the same database user name provided by my host.
My host runs SQL2000 and the ASPNET_ tables are created directly inside the DNN database. Those are the ones that are created as owned by dbo.
Since the install chokes when it's trying to configure the super user, I assume that it's trying to add data to the .net user data (ASPNET_ tables I assume) and chokes because the tables are owned by dbo and not the user you specify as databaseOwner in web.Config.
So my question is:
At what point in the install are the aspnet_ tables created and can they be created owned by the host-provided database user specified in databaseOwner? Or is there some other parameter that I'm missing where you can specify a database username other than dbo for tasks like this?