Thanks in advance for reading. I am helping forum user archcommus to try and use an old database from DNN 2 era, and to make it the database for a fresh, new DNN 4.3.7 build. Below was just a prelim test to see if it could be installed in that way.
I feel I am so close to successfully getting this running, but have been foiled at the very end by the following error on Firefox:
"Problem loading page: Unable to connect.
Firefox can't establish a connection to the server at localhost:7756"
Now I've been reading the forums for a while, so I figured I could get around this one. A list below of what I have achieved, and what I have attempted to get around this browser server error...
(1) I successfully installed DNN 4.3.7 with his old database and got to the "Click here to access your portal" goodness. You probably should take a look at the Install report sequence --
The full install report is here(2)
There were some errors on that install. Were they critical? See the hypertext in item (1) above, please.
(3) I figured the 'Firefox can't establish a connection to server at localhost" error was the tried-and-true lack of the key
add key="UsePortNumber" value="True" . So I added that key with appropriate XML tags, but nope, that didn't do the trick.
(4) I then figured that this error was a Portal Alias error. So using the Query function of SQL Server 2005 Express, I tried some variations like this:
update PortalAlias set httpalias = 'localhost/randall' where portalaliasid =1
(where randall is the virtual folder for the assumed-successful DNN 4.3.7 install above. But nope, that didn't do the trick. (I tried a few variations also. Each time the Query Execute was done successfully, so I know I am changing the table value.)
(5) You should know that I used
Shawn Mehaffie's excellent blog page here to configure the database attach so that both SQL Server Management Express and DNN could both access the DNN database without fighting each other.
(6) The connectionstring which I used, and which resulted in the
successful install here was :
connectionString="Data Source=.\SQLExpress;Integrated Security=True;User Instance=False;Database=tfs01;"(7) I tried a few variations on connection stings with no success.
(8) One thing I feel I could/should be able to do is to use the SQL Server 2000 connectionstring of "Data Source=.\SQLEXPRESS;Initial Catalog=tfs01;uid=sa;pwd=xxxxx;" BUT I can't figure out where to give sa a password. I did it before in other DNN installs (give sa a password) but perhaps because I am using the Shawn Mehaffie attach method, maybe I cannot do so?
Any help greatly appreciated. I feel I must surely be one small step from seeing my DNN default.aspx page load up. Thanks!
.