XML Parsing Error when opening Dreamweaver CS4

Hi guys, I downloaded a trial version of Dreamweaver CS4
which was downloaded from the adobe website and once i try
installing it it comes up with 'please delete current menus.xml
file and then rename menus.bak file to menus.xml'. Once I tried
that the new renamed xml file has the same problem as the old one.
Now, When i opened up the file in Firefox it came up with an XML
Parsing error. The exact error is as below:
XML Parsing Error: prefix not bound to a namespace
Location:
file:///C:/Program%20Files/Adobe/Adobe%20Dreamweaver%20CS4/configuration/Menus/menus.xml
Line Number 12, Column 5: <shortcut
mmstring:name="menus/DWShortcuts_Main_Quit" key="Opt+F4"
command="dw.quitApplication()" id="DWShortcuts_Main_Quit" />
----^
I am running windows XP SP3. Can anyone offer an
insight/possible solution? I've already tried the following methods
which have been suggested by other forums:
CS4 clean script on Adobe website
Microsoft installer clean up
uninstall and reinstall all CS4/adobe products
deleting Cache.db
deleting Macromedia folder
deleting faulty line in menus.xml file
Is there anything else I can do? Thanks guys!

1) Close Dreamweaver
2) Navigate to the Design.xml file and rename it.
3) Launch Dreamweaver and it will recreate the Design.xml file
The AppData folder is hidden by default on Windows, so you need to enable the option to view hidden files and folders in order to locate it, as follows:
In Vista/Windows 7, select Start > Computer > Organize > Folder and Search Options > View. In Advanced settings, choose Show hidden files and folders. 
In Windows XP, select Start > My Computer > Tools > Folder Options > View. In Advanced settings, choose Show hidden files and folders.
Once you turn on this option, hidden folders are displayed as dimmed icons to remind you to treat them with care.

Similar Messages

  • Adobe Designer 7.0 - XML parsing error when data connection to XML with UTF-16

    Hi all
    <br />
    <br />I need to change my data connection xml file to use UTF-16 instead of ISO-8859-1. When I connect the file with the UTF-16 encoding, I receive the following error
    <br />
    <br />Invalid XML: Xml parsing error: encoding specified in XML declaration is incorrect (error code 19) ..
    <br />
    <br />The XML declaration is:
    <br /><?xml version="1.0" encoding="utf-16"?>
    <br />
    <br />I am able to succesfully set the encoding to "UTF-8". UTF-16 should also be possible.
    <br />
    <br />Has anyone seen this error before ? How can I resolve this ?
    <br />
    <br />Thanks in advance
    <br />
    <br />Bilal Haniff

    Thank you, expert, for your quick reply.
    Described problem got solved: we noticed later that the extra text only appears for users using Adobe professional 7.0, 'normal' users with adobe 8.0 reader don't get the extra text, so that is ok for us.

  • XML Parsing Error when diplaying the downloads window

    After upgrading to the 3.6.15 version everytime I open the downloads window the following text is displayed:
    XML Parsing Error: unclosed token
    Location: chrome://mozapps/content/downloads/downloads.xul
    Line Number 83, Column 5: <menuitem id="menuitem_show"
    ----^

    After upgrading to the 3.6.15 version everytime I open the downloads window the following text is displayed:
    XML Parsing Error: unclosed token
    Location: chrome://mozapps/content/downloads/downloads.xul
    Line Number 83, Column 5: <menuitem id="menuitem_show"
    ----^

  • UCSPE XML parsing error when importing from live UCS

    Hi all,
    I'm trying to import our live UCS hardware inventory in to the UCS platform emulator but keep getting an error stating:
    Server Error: code ERR-xml-parse-error: XML PARSING ERROR: no class named computeExtBoard
    The UCSPE imports all of our chassis' and blade servers, but it's missing all the chassis fans and psus, and the dimms, hdds, cpus, and storage controllers from all the blades. I haven't been able to figure out how to download or export the hardware inventory from the live UCS Manager as an XML for editing/loading in to UCSPE. It looks like you can only export as XML from USCPE, not from UCS Manager. Anybody have experience dealing with this?
    Thanks in advance!
    Jordan

    Hi all,
    I'm trying to import our live UCS hardware inventory in to the UCS platform emulator but keep getting an error stating:
    Server Error: code ERR-xml-parse-error: XML PARSING ERROR: no class named computeExtBoard
    The UCSPE imports all of our chassis' and blade servers, but it's missing all the chassis fans and psus, and the dimms, hdds, cpus, and storage controllers from all the blades. I haven't been able to figure out how to download or export the hardware inventory from the live UCS Manager as an XML for editing/loading in to UCSPE. It looks like you can only export as XML from USCPE, not from UCS Manager. Anybody have experience dealing with this?
    Thanks in advance!
    Jordan

  • XML parser error; when XPath elements starts with "_"

    Hi,
    I have a problem in extracting elements from XML which is starting with "_". please check the queries below executed on Oracle 10g.
    Query 1:
    SELECT EXTRACTVALUE(XMLTYPE('<A><_B>1</_B><_C>2</_C><_D>3</_D><E>4</E></A>'),'/A/_B') FROM DUAL;
    Error starting at line 1 in command:
    SELECT EXTRACTVALUE(XMLTYPE('<A><_B>1</_B><_C>2</_C><_D>3</_D><E>4</E></A>'),'/A/_B') FROM DUAL
    Error report:
    SQL Error: ORA-31011: XML parsing failed
    ORA-19202: Error occurred in XML processing
    LPX-00601: Invalid token in: '/A/_B'
    31011. 00000 - "XML parsing failed"
    *Cause:    XML parser returned an error while trying to parse the document.
    *Action:   Check if the document to be parsed is valid.
    Query 2:
    SELECT EXTRACTVALUE(XMLTYPE('<A><_B>1</_B><_C>2</_C><_D>3</_D><E>4</E></A>'),'/A/E') FROM DUAL;
    EXTRACTVALUE(XMLTYPE('<A><_B>1</_B><_C>2</_C><_D>3</_D><E>4</E></A>'),'/A/E')
    4
    Oracle version:
    BANNER
    Oracle Database 10g Enterprise Edition Release 10.2.0.1.0 - Prod
    PL/SQL Release 10.2.0.1.0 - Production
    CORE     10.2.0.1.0     Production
    TNS for 32-bit Windows: Version 10.2.0.1.0 - Production
    NLSRTL Version 10.2.0.1.0 - Production
    Please let me know if there is any workaround for this.*
    Thanks,
    Veerababu Kanumilli.

    Hi MichaelS,
    - I have executed the queries provided by you, but I am not able to get the result in 10g when I am trying to access elements with "_" in XPath.
    select * from v$version where rownum = 1;
    select extractvalue (xmltype ('&lt;A&gt;<_B>1</_B><_C>2</_C><_D>3</_D><E>4</E>&lt;/A&gt;'), '/A/_B') "_B" from dual;
    select extractvalue (xmltype ('&lt;A&gt;<_B>1</_B><_C>2</_C><_D>3</_D><E>4</E>&lt;/A&gt;'), '/A/E') "E" from dual;
    Output:
    BANNER
    Oracle Database 10g Enterprise Edition Release 10.2.0.1.0 - Prod
    Error starting at line 4 in command:
    select extractvalue (xmltype ('&lt;A&gt;<_B>1</_B><_C>2</_C><_D>3</_D><E>4</E>&lt;/A&gt;'), '/A/_B') "_B" from dual
    Error report:
    SQL Error: ORA-31011: XML parsing failed
    ORA-19202: Error occurred in XML processing
    LPX-00601: Invalid token in: '/A/_B'
    31011. 00000 - "XML parsing failed"
    *Cause:    XML parser returned an error while trying to parse the document.
    *Action:   Check if the document to be parsed is valid.
    E
    4
    Thanks,
    Veerababu Kanumilli

  • How do I fix a javascript error when opening Dreamweaver?

    DW CS6 recently started having 2 JavaScript errors while opening the application and at least 1 additional JavaScript error when using the Insert Image command.  Can someone provide some advice on fixing this issue?

    This will help -
    Index to Dreamweaver FAQ
    Look at the very first issue.

  • "Parse Error" when opening .WFT file

    I have a .wft file left behind by a consultant; when I try to open it in WF Builder (2.6.3.5) I'm getting the following errors:
    1300: Could not load.
    1223: Parse error in line 45663.
    1211: Invalid name for 'NAME' field of 'ROLE' entity.
    204: Value must be upper case.
    I'm almost certain that we opened all his files before he left; no one - to my knowledge - has changed any of them.
    The scary thing is (other than the fact that I'm supposed to be migrating these files into production soon!) is that WF Builder simply won't open the file... period. I can't poke around in it to try and see what's wrong because I can't get into it at all.
    Anyone seen this sort of thing before? I saw where someone posted about a .WFT giving similar errors because it contained Japanese characters... I kind of doubt that that is the problem in this case.

    Apparently that was it. I found these two entries in the file:
    BEGIN ROLE "CFO Approval Pool"
    DISPLAY_NAME = "CFO Approval Pool"
    DESCRIPTION = "CFO Approval Pool"
    NOTIFICATION_PREFERENCE = "MAILHTML"
    LANGUAGE = "AMERICAN"
    TERRITORY = "AMERICA"
    STATUS = "ACTIVE"
    END ROLE
    BEGIN ROLE "Notification of Approved PO"
    DISPLAY_NAME = "Notification of Approved PO"
    DESCRIPTION = "Notification of Approved PO"
    NOTIFICATION_PREFERENCE = "MAILHTML"
    LANGUAGE = "AMERICAN"
    TERRITORY = "AMERICA"
    STATUS = "ACTIVE"
    END ROLE
    When I replaced the text in quotes that followed "BEGIN ROLE" and saved a copy, the copy opened without a hitch. I considered that text to be for documentation purposes and not considered in syntax... but obviously I was wrong.
    Thanks!

  • Error when opening Photoshop CS4

    I own a new dell laptop with Window 7 OS. About 1 month after I installed Adobe CS4, I started getting an error everytime I opened up Photoshop: "Photoshop has encountered a problems with the display driver, and has temporarily disbled GPU enhancements. Check the video card manufacturer's website for the latest software."
    I contacted Dell to see why I was getting that error. The technical support staff at Dell was unable to figure it out and said I needed to contact you. Do you know why I would get this error 1 month after I installed it?
    Cindee

    Many laptops do not have very good video adaptors and yours may not meet the demands of CS4 in terms of OpenGL performance.
    This could cause the error message. Try updating the video drivers and if that doesn't help, disable OpenGL in Edit > Preferences > Performance.
    For better understanding of this issue see: http://go.adobe.com/kb/ts_kb404898_en-us
    Also: http://go.adobe.com/kb/ts_kb405711_en-us

  • Transcript Error when opening dreamweaver cs5.5 mac HELP!

    i have tried renaming the configuration folder by going through application's/dreamweaver cs5.5/configurations
    and changing the folder to configurations old but it comes up with this message! Pleese help assignment due in dreamweaver tommorow and i need to fix the problem

    Yes it is a legit version and yesterday it was working and today its randomly stopped working.
    where would i go from here ?

  • Since I updated Firefox 4, I cannot open any attachments in my Gmail, whether Word or PDF files, I can only view them. When trying to download attachments I get an error message: "XML Parsing Error:undefined entity. Help!

    The full error message is the following:
    XML Parsing Error: Undefined entity
    Location chrome://mozapps/content/downloads/unknown content type.xul
    Line Number 30, Column 18

    In order to use ''nxm://'' links, Nexus Mod Manager must be installed and associated with the ''nxm'' protocol.
    * http://www.nexusmods.com/skyrim/mods/modmanager/
    In case of problems with this third-party program, please refer to its support forum:
    * http://forums.nexusmods.com/index.php?/forum/1413-nmm-code-development-chat

  • Firefox crashes continually. Now I'm getting this error and cannot open firefox at all: XML Parsing Error: not well-formed Location: chrome://browser/content/browser.xul Line Number 1068, Column 87:

    SInce the latest update Firefox has crashed continually for about two weeks now. Continually means at least 10 times a day. Now it does not open at all and I get this message when launching Firefox:
    XML Parsing Error: not well-formed Location: chrome://browser/content/browser.xul Line Number 1068, Column 87:

    SInce the latest update Firefox has crashed continually for about two weeks now. Continually means at least 10 times a day. Now it does not open at all and I get this message when launching Firefox:
    XML Parsing Error: not well-formed Location: chrome://browser/content/browser.xul Line Number 1068, Column 87:

  • Multiple JavaScript errors when opening aspx file in Dreamweaver

    I get multiple javascript errors when opening aspx file in Dreamweaver similar to... "While executing translateHyperLink in ExternalRenderers.htm, a JavaScript error occurred."

    Hi Steven,
    Not sure if this is related, but can  you try the solutions in Troubleshoot JavaScript errors | Dreamweaver CS4, CS5, CS5.5, CS6
    Thanks,
    Preran

  • Error Code 150:30 when opening up CS4

    When opening up CS4 I receive Error Code 150:30, what is this??

    If you upgrade your OS (most likely OSX) or recover Photoshop from backup, this breaks licensing.
    The simplest advice is to reinstall CS4 from your discs.
    If this is a problem, please get back to me.
    Gene

  • I've just tried to open Auroara and am only getting a small window stating... XML Parsing Error: undefined entity Location: chrome://browser/content/browser.xu

    I've just tried to open Auroara and am only getting a small window stating...
    XML Parsing Error: undefined entity
    Location: chrome://browser/content/browser.xul
    Line Number 540, Column 9: <button default="true"

    Start Firefox in <u>[[Safe Mode|Safe Mode]]</u> to check if one of the extensions (Firefox/Tools > Add-ons > Extensions) or if hardware acceleration is causing the problem (switch to the DEFAULT theme: Firefox/Tools > Add-ons > Appearance).
    *Do not click the Reset button on the Safe mode start window or otherwise make changes.
    *https://support.mozilla.org/kb/Safe+Mode
    *https://support.mozilla.org/kb/Troubleshooting+extensions+and+themes

  • I have an Error 16 when opening Dreamweaver CC

    I have an Error 16 when opening Dreamweaver CC - what should I do?

    Error 16 http://helpx.adobe.com/x-productkb/policy-pricing/configuration-error-cs5.html
    -including DW039 https://forums.adobe.com/thread/1500609

Maybe you are looking for

  • Running win 7 on boot camp

    I am trying to set up Windows 7 on my brand new Mac book pro. 15 inch retina screen. I7 processor. Apple support says the  version of Boot Camp on my brand new machine only supports, Win 8. I don't want to have to buy another version of Windows, but

  • Typing in other languages

    Hello, Is anyone knows how to type in other language, like russian in iphone? i can see all the Russian symbols when browsing, it even uderstands emails that written in Russian. So, is there any way I can change keyboard layout to a Russian one? Than

  • Modify the text of a data field on the screen

    Hi, I am looking to change the text of a  SAP data field on the display screen for an infotype 106. I have the required object key for it. When I entered the key it logged me successfully, however it displayed a message that I am not authroized for c

  • Error message in Contribute on file checkout from Subversion

    I have Contribute CS5 and Subversion talking to each other perfectly (I also have my Dreamweaver CS5.5 connected to this Subversion server). I can create a new file in Contribute and save it which checks the file into Subversion, but everytime I try

  • EPub and iBooks Author

    I have written a book. I have it in iBooks and ePub format. I want to upload both the formats to iTunes iBookStore. I have already uploaded iBook format. But what I want to do is upload both iBook and ePub in the same book. Like for example, if the i