I would like to send this post to follow up and conclude the issue which prompted me to post in the first place, namely the inability to locate a log of errors which could help me to diagnose a nagging install problem. Thanks to William Severance for pointing me in the right direction!
I had known about the Log Viewer on my portal, but when the portal would not launch, I did not know how to see the errors. I had initially believed, that if I turned off customErrors in my web.cong file that they would show on the page at the time they were generated. This was reinforced by others on this forum who told me that that would be the case…
It looks like, however, that this is not true if you host your site with a provider… so I had been looking for a solution that was not going to work for me.
With Bill’s help I learned that I should go instead to the EventLog table in my site's MS SQL Server database. Here I hit pay dirt. I used a simple SQL statement to select the last 20 records:
SELECT TOP 20 [LogTypeKey]
,[LogUserName]
,[LogPortalID]
,[LogCreateDate]
,[LogProperties]
FROM [Your_database].[dbo].[EventLog]
ORDER BY [LogCreateDate] DESC
Then, follow Bill instructions “copy the contents of one row of this column to the clipboard and paste it into a notepad text file which you save with an xml extension. You can then double click on this file to open it in your web browser to view properly formatted xml."
Using this method I was able to diagnose the problem, and finally get my site started.
Thanks to Bill and all others on this forum who give freely of their time and expertise to help novices like myself!