Issue #1 (no marker image displayed on local server) -------- When using my local server (IIS 5.1 on XP Pro) the marker image does not display in the map. It does display in the extension panel dialogs, but not on the asp page when viewed from the local server. Do you have any suggestions on how to overcome this problem?
Issue #2 (Active Server Pages error 'ASP 0131') -------- My hosting service uses IIS 6, which by default has the Parent Path setting disabled for security purposes. I plan to store several ASP map files in a /maps folder. But when testing an ASP map file stored in a folder I get the following error message....
Active Server Pages error 'ASP 0131' Disallowed Parent Path /maps/InterTours.asp, line 17 The Include file '../dwzGoogleMap/dwzGoogleMap.asp' cannot contain '..' to indicate the parent directory.
The problem is the file relative path used in this line of code.... <!--#include file="../dwzGoogleMap/dwzGoogleMap.asp"-->
This MS article.... http://support.microsoft.com/kb/226474 suggests the best solution to the problem is to use absolute virtual paths from the root of the Web site instead of relative paths. And Dreamweaver's SSI property inspector does allow me to choose a Virtual path, which changes the line of code to this.... <!--#include virtual="/dwzGoogleMap/dwzGoogleMap.asp" -->
This virtual path does in fact get rid of the error message and allows me to view the ASP page. However, when I subsequently use the extension to edit the map settings and then click OK, the extension re-inserts the line of offending code again using a relative path. I end up getting the error message again, because now there are two lines of code like this....
<!--#include file="../dwzGoogleMap/dwzGoogleMap.asp"--> <!--#include virtual="/dwzGoogleMap/dwzGoogleMap.asp" -->
Is it possible to have a future release of the extension recognize the user's preference for a "Virtual" path, and then not re-insert another line of code? Or better yet, have the extension offer the user radio buttons for File or Virtual in the same way Dreamweaver 8 offers it to users in the SSI property inspector panel.
Regards, Frank
|
|
|