Quick Nav:  Online Store   |   Login | Register

Site error after install version 1.4.1

Rate this topic:

Please Register to post a reply. Another benefit of registration is the ability to subscribe to and recieve notifications of new posts.
AuthorMessages
James Brown
<20 Posts
Posts:5


09/02/2006 11:51 AM  
I just installed 1.4.1, put the DLL files in the /bin dir (verified that they were there), modified config.sys and coppied  snapsis.pageblaster.config to the site root (also verified tht it is there).  running  DNN3.2.2 currently (my inhouse test server at http://192.168.0.123)

I am getting the error below after setting up PB according to you directions.  Any suggestions?

Configuration Error

Description: An error occurred during the processing of a configuration file required to service this request. Please review the specific error details below and modify your configuration file appropriately.

Parser Error Message: File or assembly name Snapsis.HttpModules.PageBlaster, or one of its dependencies, was not found.

Source Error:
Line 57:  add name="Personalization" type="DotNetNuke.HttpModules.PersonalizationModule, DotNetNuke.HttpModules.Personalization" />
Line 58: !-- JJB: added line below for pageblaster install -->
Line 59: add name="PageBlaster" type="Snapsis.HttpModules.PageBlaster.PageBlasterModule, Snapsis.HttpModules.PageBlaster" />
Line 60: /httpModules>
Line 61: !-- This is for FTB 3.0 support -->

Source File:
C:\Inetpub\wwwroot\DNN3\web.config    Line: 59

Assembly Load Trace: The following information can be helpful to determine why the assembly 'Snapsis.HttpModules.PageBlaster' could not be loaded.

=== Pre-bind state information ===
LOG: DisplayName = Snapsis.HttpModules.PageBlaster
(Partial)
LOG: Appbase = file:///C:/Inetpub/wwwroot/DNN3
LOG: Initial PrivatePath = bin
Calling assembly : (Unknown).
===

LOG: Policy not being applied to reference at this time (private, custom, partial, or location-based assembly bind).
LOG: Post-policy reference: Snapsis.HttpModules.PageBlaster
LOG: Attempting download of new URL file:///C:/WINNT/Microsoft.NET/Framework/v1.1.4322/Temporary ASP.NET Files/root/91f4a16e/6efb0c78/Snapsis.HttpModules.PageBlaster.DLL.
LOG: Attempting download of new URL file:///C:/WINNT/Microsoft.NET/Framework/v1.1.4322/Temporary ASP.NET Files/root/91f4a16e/6efb0c78/Snapsis.HttpModules.PageBlaster/Snapsis.HttpModules.PageBlaster.DLL.
LOG: Attempting download of new URL file:///C:/Inetpub/wwwroot/DNN3/bin/Snapsis.HttpModules.PageBlaster.DLL.
LOG: Attempting download of new URL file:///C:/Inetpub/wwwroot/DNN3/bin/Snapsis.HttpModules.PageBlaster/Snapsis.HttpModules.PageBlaster.DLL.
LOG: Attempting download of new URL file:///C:/WINNT/Microsoft.NET/Framework/v1.1.4322/Temporary ASP.NET Files/root/91f4a16e/6efb0c78/Snapsis.HttpModules.PageBlaster.EXE.
LOG: Attempting download of new URL file:///C:/WINNT/Microsoft.NET/Framework/v1.1.4322/Temporary ASP.NET Files/root/91f4a16e/6efb0c78/Snapsis.HttpModules.PageBlaster/Snapsis.HttpModules.PageBlaster.EXE.
LOG: Attempting download of new URL file:///C:/Inetpub/wwwroot/DNN3/bin/Snapsis.HttpModules.PageBlaster.EXE.
LOG: Attempting download of new URL file:///C:/Inetpub/wwwroot/DNN3/bin/Snapsis.HttpModules.PageBlaster/Snapsis.HttpModules.PageBlaster.EXE.

John Mitchell
Posts:3033


09/02/2006 12:05 PM  

That error is suggesting that the Snapsis.HttpModules.PageBlaster.dll is not in the /bin directory.

What might be happening since you are doing it local is that you have a virtual directory setup, but the directory is not setup to be it's own application.

Does your DNN3 site run normally when the setting for the httpModule is not in the web.config?

James Brown
<20 Posts
Posts:5


09/02/2006 12:19 PM  
Boy, that was fast - you answered it while I was still trying to figure out how to make the code appear in the FTB edited text.

I am not sure what you mean by that last question.
John Mitchell
Posts:3033


09/02/2006 12:29 PM  

I was asking if you had the DNN3 site running normally before installing the PageBlaster.

One thing I need to add to the instructions is to put the PageBlaster as the first HttpModule in the list.

So your web.config should look something like this:

  <httpModules>
<addname="PageBlaster"
   type="Snapsis.HttpModules.PageBlaster.PageBlasterModule,
   Snapsis.HttpModules.PageBlaster"
/>
<addname="UrlRewrite"
   type="DotNetNuke.HttpModules.UrlRewriteModule,
   DotNetNuke.HttpModules.UrlRewrite"
/>

That wouldn't be the cause for your error though. 

Another thing you can try is putting the dll's from the install into the /bin directory of wwwroot.  If that works, then your site is looking in it's parent website's /in folder.

James Brown
<20 Posts
Posts:5


09/02/2006 12:38 PM  
I will try that, but the site has been up and running normally for months - I use it to test all modules skins and for skin development before I install them on live sites.

BTW - i saw in another post which i cannot find now, your instruction on how to make code appear properly in one of thes posts - would you mind repeating that?

John Mitchell
Posts:3033


09/02/2006 12:47 PM  
If the site has been running and you allways install modules there, then it must be something else. One thing I have seen rarely in the past, is sometimes .Net will be case-sensitive. If the Snapsis.HttpModules.PageBlaster.dll is all lower-case in the /bin directory, try renaming it to match the case of the entry in web.config. To make code appear properly wrap it with code tags

< code >Code goes here< /code >(without the spaces areound the tags).

James Brown
<20 Posts
Posts:5


09/02/2006 12:59 PM  
it is working, thanks to your guidance. The crash was due to pilot error. I have several DNN installations on my local system
and had coppied the DLL files into one of the other ones. Kind of like a take-off on the wrong runway.

On formatting with code - I assume that goes into the HTML view and not the design view?
John Mitchell
Posts:3033


09/02/2006 3:01 PM  
Good to hear you got it corrected.

The code tags can go in either view.
Greg Hamilton
<20 Posts
Posts:1


10/02/2006 12:10 PM  
Hey John, this article fixed this problem for me. It is the suggestion to make the add for page blaster the first entry in the httpmodules sections of the web.config. I recommend getting this added to the read me as soon as you can.

Thanks for a great module!
John Mitchell
Posts:3033


10/02/2006 12:15 PM  
Thanks for the feedback Greg.
Please Register to post a reply. Another benefit of registration is the ability to subscribe to and recieve notifications of new posts.
Forums >Snapsis Product Support >PageBlaster > Site error after install version 1.4.1



ActiveForums 3.7
Powered by: Snapsis Software