Dreamweaver Namespace issue on my web server

I am hosting my site on GoDaddy.com. I have created a site
using Dreamweaver CS3 and SQL2005. Everything works great on my
local machine, but when I upload it to the remote web server, the
aspx pages do not work. GoDaddy support says it is due to the
second line in every one of my aspx pages, specifically the
namespace attribute. From what I've read, this is automatically put
into every page created by Dreamweaver that contains an asp/asp.net
control. GoDaddy's response is to remove this line from my page and
everything will work great, which obviously it will not. I really
would not like to have to rebuild 32 + aspx pages after already
developing them in Dreamweaver. The actual line they say is causing
the problem is below:
<%@ Register TagPrefix="MM" Namespace="DreamweaverCtrls"
Assembly="DreamweaverCtrls,version=1.0.0.0,publicKeyToken=836f606ede05d46a,culture=neutra l"
%>
Does anyone have any suggestions as to how to get around this
issue?

"carrb69" <[email protected]> wrote in
message
news:[email protected]...
> Joris,
>
> I did have the dll located in a subfolder of the root
directory. I also
> put it
> in the root directory as well after receiving your
previous response and
> got
> the same results. Unfortunately, I would need to go to
GoDaddy to get the
> exact
> error because all I see when I try to access my aspx
pages is a very
> generic
> error. I had to go to GoDaddy previously to figure out
that it was the
> Namespace attribute that was causing the issue. I'll try
this evening to
> get
> them to send me the actual error message and post it
then. Thanks for the
> quick
> responses.
>
> Brian
Hi Brian,
maybe it's your browser that's hiding the error message, if
using MSIE then
please disable the "Show friendly HTTP error messages" option
in Internet
Options.
If that doesn't reveal the error message, try editing the
web.config that
dreamweaver generated for you with the following settings,
(add any missing
settings, and leave the connectionstrings that dreamweaver
has setup intact)
<configuration>
<system.web>
<compilation debug="true"/>
<customErrors mode="Off"/>
<trace
enabled="true"
traceMode="SortByCategory"
requestLimit="10"
pageOutput="false"
localOnly="false"
/>
</system.web>
</configuration>
Debug Compilation should give more insight inrto compilation
errors, which
can allso be done at the page level via<% @ Page
debug=true" %>
Custom Errors Off will disable any error pages that may be
shown in case of
an error, seting it to "emoteOnly" will only thow these page
to external
visitors, but since you are not working on the server that
actually makes
little sense.
The trace setting should enable a HTTP Handler that allows
you to view trace
information from /trace.axd in the root of your website,
enabling pageOutput
will inject the tracing information into every page, which
can allso be done
at the page level via <% @ Page trace=true" %>
There settings do have a performance impact because they are
enabled for
every request in the application, once you've got the errors
out disable
them at the application level and enable them per-page.
Hope this helps
Joris

Similar Messages

  • Dreamweaver cs4 come with a web server or web app server ?

    dreamweaver cs4 come with a web server or web app server ? Or
    can be configured [has menues for] web server local ? When running
    a server localhost
    http://localhost/... , this can be
    run/view a file[in local server] without an internet connection ?
    yes without / no needed ?

    123polis123 wrote:
    > dreamweaver cs4 come with a web server or web app server
    ? Or can be configured
    > [has menues for] web server local ? When running a
    server localhost
    >
    http://localhost/... , this can be
    run/view a file[in local server] without an
    > internet connection ? yes without / no needed ?
    Dreamweaver does not ship with a web server, you have to
    install one, or activate one on your system (IIS or Apache for
    Widows and Apache for Mac are the common choices). When you define
    a site within Dreamweaver you can specify a testing server, as well
    as a remote server. If the testing server and/or remote server are
    available to your system without an internet connection, then you
    can certainly test pages through the web server such as through
    http://localhost/
    If you are creating HTML pages, then there is no need for a
    server at all for creating and testing your pages, but if you are
    working with PHP or ColdFusion, then you will need a web server to
    work with.
    If you have follow up questions, you should ask in the
    Dreamweaver General forum (general Dreamweaver usage questions), or
    the Application Development forum (questions about dynamically
    generated pages), depending on what you're looking to do:
    DW General:
    http://www.adobe.com/cfusion/webforums/forum/categories.cfm?forumid=12&catid=189&entercat= y
    App Dev:
    http://www.adobe.com/cfusion/webforums/forum/categories.cfm?forumid=12&catid=263&entercat= y
    Danilo Celic
    |
    http://blog.extensioneering.com/
    | WebAssist Extensioneer
    | Adobe Community Expert

  • Admin Commands issue on Windows Web Server 2008 R2 - 64Bit

    Hi,
    I have tried exactly same process on FMS3.5 Installed on Centos and it worked perfectly.
    But not working in case of Windows Web Server 2008 R2 - 64Bit.
    Here is what i am trying to do -
    Basically i want to extract live streams list and display them in HTML as ordered list on another server them FMS.
    What i did in the case of FMS on Centos server -
    I installed Apache and PHP on this server and created a PHP file with following text in it. -
    abc.php
       $xml = simplexml_load_file('http://<fms-server-ip>:1111/admin/getLiveStreams?auser=admin&apswd=password&appInst=live','Simple XMLElement', LIBXML_NOCDATA);
    foreach($xml->children() as $child)
       foreach($child->children() as $child2)
              echo $child2 . ",";
    and in hosting server where i want to display the list i entered following code in PHP file -
    $homepage = file_get_contents('http://<fms-server-ip>/abc.php');
    echo $homepage;
    i got comma seperated values easily and everything is loading fast without any issue.
    Now problem occured with Windows Web Server 2008 R2 - 64Bit.
    I installed FMS, Apache and PHP in this server also, did evrything in the same way like in centos.
    FMS, APache and PHP files are working fine in this.
    But only problem occured when in abc.php i use
    $xml =  simplexml_load_file('http://<fms-server-ip>:1111/admin/getLiveStreams?auser=admin&apswd=password&appInst=live','Simple XMLElement',  LIBXML_NOCDATA);
    After this file do not loads and takes longer time to load and after some time a blank page appears. It works fine with a local XML file.
    i am able to see the XML file by opening it directly in browser, but somehow this is not working with   simplexml_load_file. I dont think this is PHP issue because with local XML file it works fine. May be some port issue or something else. But i am able to view XML file directly in browser from another computers as well.
    Kindly help, is there some other configurations should be changed in case of windows version. I have allowed admin commands as usual before doing all this. Ports 1111,80,1935 are also opened.
    Please guide

    Hi,
    Yes in Browser, the response is perfect. The only issue is in Calling inside in any file, i even tried Javascript's XML dom to load it, but same result, the file is just loading and never loads completely. I also tried using an SWF file with AS3 code to load XML inside as3 and send the result to any JS function.
    The output comes using trace in as3, but when it comes to browser, the same loading happends and result never loads.

  • Installation issue: Sun one web server 6.1 SP5 with JDK1.6 on Windows XP

    Hi,
    I am trying to install sun one webserver 6.1 SP5 on my system which has windows XP operating system for the development work. the JDK version i am using is JDK1.6.
    While installing sun one webserver at step where i can use custom java development kit i am providing path for the JDK1.6 in "JDK Path" text box as "C:\Java\jdk1.6.0_11".
    while clicking next it throws me error "The version of selected JDK is too old". i don;t have any other version of JDK installed on my system.
    Can any one tell me what can be the problem here?
    Regards,
    Nemish

    Can you try Web Server 7.0 update 6?
    BTW JDK version you are using has security vulnerabilities. Please upgrade to the latest JDK
    as per [http://sunsolve.sun.com/search/document.do?assetkey=1-66-263489-1]
    This issue is addressed in the following Java SE and Java SE for Business releases for Windows, Solaris, and Linux:
    * JDK and JRE 6 Update 15 or later
    * JDK and JRE 5.0 Update 20 or later

  • Security Issues of Labview Web Server?

    Hi All,
    How secure is the web server for Labview? Is anyone aware of any one
    successfully hacking the systems?
    I would assume that it could be possible to gain full control of the
    machine running Labview as Labview can read/write data to drives etc.
    Just interested as we will be running labview servers on open network
    not protected by a firewall etc.
    Any comments?
    Regards
    Wayne Peacock

    I have found that a LabVIEW application running the Web Server can be crashed from any machine that has access to it. The Browser Access List denial of an IP address will not prevent this crash.
    I have reported the details and National Instruments has confirmed the report and responded with this: "Crashing LabVIEW Through the G Web Server Using TCP VIs"
    http://digital.ni.com/public.nsf/websearch/4C3F86E655E5389886256BA00064B22F?OpenDocument. It turns out that this crash will only occur if the web server logging is enabled.
    Aborting a server is generally categorized as a Denial of Service (DOS) attack. In this case, it is the LabVIEW application itself that aborts, web server and all. This can be more serious than the usual DOS if the application is perf
    orming some other important activity by running VIs. They would unexpectedly abort along with the rest of LabVIEW.
    This attack does not enable reading or writing drives, or otherwise controlling the host machine, the vulnerabilities that you asked about. I have even tried to trick the server into getting pages outside of its root directory without success.
    If you are running a LabVIEW Web Server, you should certainly disable web server logging. If you could not tolerate an unexpected abort in some LabVIEW VIs that you are running and want to be even safer, I recommend that you do not run them in the same LabVIEW application that is running the LabVIEW Web Server. The principle here is compartmentalization.
    On one hand, the small number of deployed servers, relative to other more numerous and attractive targets, has not attracted undesired attention. So you're pretty safe now. On the other hand, LabVIEW is growing and moving to the Internet, and LabVIEW systems control machin
    es and chemical processes, not merely data and dollars. Think about the risks as well as the convenience of using the web.
    Steve Zins -- steve @ iLabVIEW . com

  • Deploy Soap on iPlanet 6 web server

    Hi everyone, I'm having problem trying to deploy SOAP on iPlanet 6 web server. Does someone have any docs or kindly give me some directions to set this up. I need to get this working ASAP.

    Please post your web server related issue to the web server fourm:
    http://forum.sun.com/jive/forum.jspa?forumID=16
    Regards,
    Ludovic

  • LMS 3.2 on Win 2008 Server - Web Server Issue

    Hi,
    I just installed LMS 3.2 on Windows 2008 Server Standart X64 and the CiscoWorks Web Server service does not start (Apache service is down but Tomcat up).
    All other services seem to be correctly started even if this is quit long.
    When I try to manually start the Apache Service with "pdexec Apache", i got :
    ERROR:Get reply from server failed:
    ERROR: Daemon Manager startup in progress. Please wait.
    When the deamon is up, the second line disapeared but apache is still not responding and of course, the URL is unreachable.
    This is a HP Proliant Server with 12Go RAM, is there a maximal size for the paging file ?
    I did not modify TMP and TEMP variable, should I have done it before the installation ?
    it appears to be some service startup issue on win 2008, is there bug fix or work around ?
    pdshow attached
    Thanks for your help, this is quit urgent.
    Cedric.

    >>>  is there a maximal size for the paging file ?
    There's indeed a swap file issue with Win 2008. See the first reply in this thread for corrective action: https://supportforums.cisco.com/message/675893#675891
    Though it may not apply, because you've installed LMS 3.2 ok, since you seem to be aware of it, the TMP/TEMP variables do need to be shortened, as noted in this post: https://supportforums.cisco.com/message/677383#677383
    Is your Win 2008 Server running any Microsoft Service Packs? Because AFAIK Win 2008 SP2 is not yet supported, and no one seems to have any luck on it with LMS 3.2 yet.
    After LMS 3.2 is up and running, if you can't log in to the web GUI, you might be running into the CSCtb17186 bug, described in this post: https://supportforums.cisco.com/message/676256#676256

  • Issue with permissions to upload files into Apache web server to OS 10.8.2

    Hello everyone;
    I setted up Apache web server and mysql to OS 10.8.2 Mountain Lion. It's working fine except for the permissions. I can't upload files into the web site directory. Doesn't recognize, e.g., the PHP function "move_uploaded".
    One problem for my is that I can't modify the permissions by "Terminal" app since it telling me that the "Process completed" and I can't write any script.
    Any suggestion will be welcome.
    Thanks in advance.

    My only question now would be how to speed up Safari's 6.0.1 performance in 10.8.2 or do I just accept that it's a little slower than it was, which is fine. Are other folks having this issue?
    I was primarily passing along info about my particular download speed and for the Web Confidential 3.8 people: make a backup of your passwords b4 installing 10.8.2 or be prepared to upgrade.

  • HP Officejet Pro X576dw MFP Default PIN/Secure Embedded Web Server Issues

    Hello I have a few issues with this printer: 1. I am unable to get to the secure embedded web server ie. https://192.xxx.xxx.xxx, although the normal unsercure version works fine. The problem with this is I cant edit or reset any of the fucntions such as scan to email and scan to network for my users. This function used to work for a while till I had to reset the printer for some problem. 2.  Further there is a tab called sign in into which I am not able to sign in as there is no mention of the PIN anywhere in the manual or in any literature. Please help. Thank you

    Okay so I managed to reset to factory defaults and the secure pages were accessible. However this still doesnt solve the mystery of the Default PIN. HP Please help. Thanks

  • Apache web server 2.0 plugin issue with Iframes

    I was wondering if anyone had any issues related to iframes when going from the Apache plugin for version 1.3 to version 2.0. Currently I'm having a problem where I use the mod_wl20.so plugin on Apache web server 2.0X and I will get a download dialog box to download a html file. I do not have this issue when using the plugin for Apache web server 1.3X.
    Thanks
    Jon
    Message was edited by:
    [email protected]

    there is no SAP supported solution for Apache2.
    Note https://service.sap.com/sap/support/notes/442401 stated the development has ended.
    But you can build your own filter based on SSOEXT library, see https://service.sap.com/sap/support/notes/304450 for details.
    regards, Norbert

  • Web Server Issue

    Guys,
    I am facing a little problem related to Apache Web Server. When we configured Reporting and Analysis tool, the results showed Web server as succeded. But i could not see Apache in the services list and hence could not start. As a result i am getting errors while viewing reports in Workspace
    So I had started Apache from the Hyperion directory folder(after unblocking the Windows security alert) upon which i am able to see the reports in workspace. I have to start Apache everytime
    I login to the server.
    Is there a way to resolve this issue.
    Thanks in advance
    K

    It might help others if you mention which version you are referring to and the OS that is installed on.
    Cheers
    John
    http://john-goodwin.blogspot.com/

  • Security issue with web server plug-in with Weblogic server

    Hi,
    I have a setup where I have an Microsoft IIS setup as the front facing web server and have the WLS IIS plug-in installed on it. At the backend, is two WLS11g managed servers in a cluster.
    I have a JAX-WS client running on HPUX hitting the web service via IIS but I observe a very strange thing. When the service request is rather small, it could pass through IIS and the managed servers could pick up the call and reply correctly. However, when I have a bigger request call (larger payload), it will error out, citing "Unsupported Content-Type: text/html Supported ones are: [text/xml]".
    I have also attempt to put in a TCP/IP Monitor between the client and IIS and it appears that regardless if the call gets through, it seems to consistently got hit with a HTTP error 401.2, follow by a 401.1, and then, the WSDL came back. I am pretty sure that the web services are not secured as I could get the WSDL without any authentication on the managed servers direct from my brower (it did pop the authentication window if I attempt to hit the web services via IIS)
    Anyone has any idea what is going on, the issue seems to be so contradicting...
    Thanks in advance.

    When you look at this link http://www.microsoft.com/technet/prodtechnol/WindowsServer2003/Library/IIS/8feeaa51-c634-4de3-bfdc-e922d195a45e.mspx?mfr=true
    You can check the authentication method that is configured for that node in the metabase.

  • Dreamweaver CS3 fails when publishing to the web server using WebDAV

    Dreamweaver CS3 fails when publishing to the web server using
    WebDAV
    using an earlier version (7.x/8.x) works fine.
    Does anybody know if there is a solution for this.. This is
    urgent..
    Attempting to call the 1-800-833-6687 number fails with:
    recording, music, rings as though someone will finally answer, but
    gets a few dial tones and connection goes silent..
    Thanks
    J.

    If all of your credentials are correct, Server Name/IP Address, Username, Password, Root Directory and it's still not connecting, I would try toggling the Passive FTP checkbox.
    If you still can't connect in DW, try downloading a third party FTP program like Filezilla (free) and uploading there. If the third party app doesn't work either, there is likely a problem with your credentials and you would need to contact your hosting provider to straighten it out.

  • Intel vPro AMT integration with SCCM 2012R2 - Issues with SCCM finding the "ConfigMgr AMT Web Server Certificate"

    Good evening all,
    I'm attempting to get Intel SCS integrated with SCCM 2012 R2 and I have both sides working, doing what they do best, however, I have issues when I try to mate the two. I started with a single server for the site and then tackled the Intel side with success,
    then I added another site server to run the Out of Band service point and Enrollment point. Up until this point I've had no issues with certificate templates, or issuance of those certs. 
    I have re-read the TechNet documents a few times regarding the PKI setup, some Intel documentation and three step by step articles and non of them seem to differ so I can't understand why I'm unable to choose my "ConfigMgr AMT Web Server Certificate"
    when configuring the Out of Band Management Component Properties page.  The "AMT web server certificate template:" dialog shows my CA FQDN and CA name, but the certificate template list is always blank.  I've tried this from both the remote
    and local ConfigMgr consoles.  The site servers have rights on the CA to manage and issue certs, is there something I'm missing that isn't in the documentation or buried somewhere that I missed?  Is there a Application policy that should be on the
    cert that isn't mentioned anywhere?
    Thanks in advance!
    Tesfaye

    Hi Joyce,
    Thanks for responding.  I pretty much have this error repeating in the log file and not much else:
    [28, PID:13388][05/21/2014 15:17:15] :System.DirectoryServices.DirectoryServicesCOMException\r\nThere is no such object on the server.
       at System.DirectoryServices.DirectoryEntry.Bind()
       at System.DirectoryServices.DirectoryEntry.get_AdsObject()
       at System.DirectoryServices.DirectorySearcher.FindAll(Boolean findMoreThanOne)
       at System.DirectoryServices.DirectorySearcher.FindAll()
       at Microsoft.ConfigurationManagement.AdminConsole.Common.ADUtils.EnumEnterpriseCACertificateTemplates(String domainEntryName, String certAuthorityFqdn, Boolean isServerAuthen)\r\n
    I will look into this, but another hint would be greatly appreciated!
    Thanks,
    Tesfaye

  • Can Acrobat 9 pro be installed to XP with web server(IIS) without any license issue?

    It seems not to permit to install into window server, but how about the window XP had web server installed?

    Thanks for your reply. As I mentioned in my post, when I went to Control Panel to uninstall Acrobat 11.0, it wasn't listed among currently installed apps. However, after going back and looking through the Installed On dates in Control Panel, I realized that for some reason, it's called Adobe PFD Creation Add-on XI, rather than Acrobat 11.0. Interestingly, the program folder name in Windows Explorer still uses Acrobat 11.0.
    Fortunately for me, I always have disc versions of my software. So I was able to re-install Acrobat 9.0 once I got rid of Adobe PDF Creation Add-on XI. I really wish that Adobe made clearer what extras they are installing with these trial versions :-(
    Thanks again.

Maybe you are looking for

  • Checkbox in datatable

    Hi, I use a data table in my jsf page.I have give a f:selectbooleanchkbox. When i select the chk box my data table has to be updated with the checked ones. problem here is: I have a button at the bottom of my page named reassign.when i click on the r

  • Warehouse RF and 2 step picking

    Hi Guys, I have set up wm mobile in ecc 6.0 and also have 2 step TO's working manually but can't get them to work with a scanner. I have one storage type one side of the road and one the other but they all form part of the same warehouse in SAP. They

  • Extremely slow performance with ojdbc6.jar on IBM JVMs (Java 6)

    We are consistently seeing slow performance (easily demonstrable by the simplest of test cases) while using ojdbc6.jar on IBM JDKs. Pefrormance is normal when we simply opt for ojdbc14.jar under the same JDK, same java program. Works well ======= JRo

  • GREP to Find Numbers at End of Story

    I want use GREP to do a find to locate any six digit number or just the numeral zero at the end of each story in my InDesign 4 documents. So far, I have ben able io identify six digit numbers by searching for the following \d{6} But when I add the en

  • Function control of the PXI system

    Hi All! We order  NI PXI-1036DC + PXI-4462 + PXI-6682 GPS + PXI-6653 + PXI-8101. Is it possible to control: 1. DC voltage and current? 2. GPS coordinates of the system? 3. Accuracy (or quality) of the 10 MHz clock disciplining by the 6682 GPS? It m