Dreamweaver MX 2004 - "An Unidentifed Error has occorred." - Please help!!

Hi folks. I have scoured the internet for a fix to this problem. Most of the posts I read are unanswered or the solution does not work. I am hoping a guru reads mine and has the magic answer - I am ready to chuck the project altogether if I can't find a solution. Although I am not a newbie to simple page design, I have never really tackled data access (dynamic content) before, like I am about to. I am ready and willing to learn but this obstacle may hinder my interest if it is going to be this big a pain in the keester.
Let's start with my system config:
Windows XP Pro w/ SP3
Dreamweaver MX 2004
IIS 5.1 - configured with FTP support
PHP 5.2.11
MySQL 5.0 - For now I am using the Test DB that comes with MySQL. Using "root" account.
I have verified that all is running properly to the best of my knowledge. Certainly Dreamweaver up until this issue has worked for years. I have not used DW for data access before on this machine but have successfully on others.
IIS > Loads web content from http://localhost just fine. Including PHP test page. And IIS help stuff that comes pre-installed.
MySQL > I can build DB's and Schemas just fine. I can even import data from external sources so I have to assume it's running fine.
Dreamweaver > The site I am building has the following config:
Local Info
Site Name: medimj
Local Root: C:\medimj *set to refresh
Images: C:\medimj\images
HTTP: blank
Remote Info
Access: Local/Network
Remote Folder: C:\inetpub\wwwroot\medimj\       *set to refresh auto
Testing Server
Server Model: PHP MySQL
This site contains: Dreamweaver MX Pages Only (default)
Access: Local/Network
Testing Server Folder: C:\indetpub\wwwroot\medimj\          *set to refresh auto
URL Prefix: http://localhost/medimj
<<<Everything else I believe is irrelevant to the topic and left to defaults>>>
SO HERE IS WHAT IS HAPPENING:
When I go to make a data connection (Step 4 under the Database tab of Applications section in DW), I click the "+" button and select "MySQL Connection". The dialogue window appears and I input:
Connection Name: medimj
MySql Server: localhost
User Name: root
Password: <password>
I click "Select" button and get an error window that says "An Unidentified error has occurred." and I am taken back to the MySQL Connection dialogue box. I have tried adding http:, slashes, \medimj, IP address, and pipe name to the Server name to make the connection and none of it works. If I put a DB name and click "ok" the binding will appear but no table ever come into view. If I click on "Test" I get the same error.
Here is the mysql area of the test.php. From what I see, I should be able to make a connection; but I'm not expert. Should I be seeing more information?:
mysql
MySQL Support
enabled
Active Persistent Links
0
Active Links
0
Client API version
5.0.51a
Directive
Local Value
Master Value
mysql.allow_persistent
On
On
mysql.connect_timeout
60
60
mysql.default_host
localhost
localhost
mysql.default_password
no value
no value
mysql.default_port
3306
3306
mysql.default_socket
no value
no value
mysql.default_user
no value
no value
mysql.max_links
Unlimited
Unlimited
mysql.max_persistent
Unlimited
Unlimited
mysql.trace_mode
Off
Off
I just don't see what's wrong at this point. I really hope somebody here can help.
I've been at this for 4 days and uninstalled and reinstalled everything to no avail. I hope I have given enough information for someone to make a suggestion that will help. I thank anyone for their time in advance.
prdreamweaver

I would like to share with everyone a fix for this problem. I wish I could say I found it here but I did not. After continuing to search the Internet, while eagerly awaiting an answer here, I stumbled upon the answer deep in a thread in the MySQL website forums.
If someone should find this topic before the supposed Adobe fix, please do not waste your time with what Adobe suggests. It has been know cause more problems than help - as was the case with me. Applying their "fix" forced me to reinstall MySQL and a fresh version of PHP. I am also providing OS information and versions of all components I am using as well as settings within Dreamweaver. I cannot speak as to whether this fix transitions across other versions of Dreamweaver but it's worth looking at if yours does not match mine.
NOTE: ALWAYS MAKE A RECORD OF WHAT YOU CHANGE. THIS IS BASIC TROUBLESHOOTING AND WILL MINIMIZE THE NEED TO REINSTALL IF THINGS GET WORSE. BEING ABLE TO REVERSE WHAT YOU'VE CHANGED IS IMPORTANT.
System Info
OS: Windows XP Pro w/ SP3 (patched to the hilt)
IIS: 5.1 (installed from XP Pro CD - additional windows components)
PHP: v5.2.11 (installer version)
MySQL: v5.0.87 (installer version)
Dreamweaver: MX 2004
Install IIS, PHP, and MySQL per their individual instructions.
IIS Tweaks
Note: This tweak assumes you haven't already created your website virtual directory under IIS. If you have, you can delete it and follow these steps. You don't have to but I like this recommendation I found on another site as it tricks DW into thinking its attaching to an "outside" server. You'll see what I mean when you see the DW confg options later in this topic.
1. Create a folder under c:\inetpub\wwwroot that matches the local folder in DW for the site you are designing. Make sure they are spelled the same. If you have pages and images already in your local folder for DW, you don't have to re-create them here. You can sync them to the "server" much like you would when you FTP your pages up to a live server. Just make sure the root folders are named the same.
2. Right click your localhost site select "properties". Click the "Home Directory" tab. Click on the "Configuration" button. Under "Application Mappings", click the "Add" button. A new dialogue box appears > In the "Executable" area, browse to the root PHP folder and select file "php5isapi.dll" and click ok to return to the dialogue box. In the "Extension" box type ".php" without the quotes. Make sure "Script Engine" and "Check that file exists" are checked. Click ok.
NOTE: A DIALOGUE BOX MAY APPEAR ASKING IF YOU WANT TO PROPOGATE THE CHANGES ACROSS ALL OTHER SITES. YOU CAN SAY YES BUT IT DOESN'T ALWAYS WORK. (IT'S AN IIS THING) TO SEE IF IT DID, CHECK THE PROPERTIES OF YOUR VIRTUAL DIRECTORY AND FOLLOW STEP TWO IF YOU DON'T SEE THE PHP MAPPING THERE.
PHP Tweaks
1. extension_dir = c:\php\ext ~ change folder to match your install
2. cgi.force_redirect = 0 ~ required for IIS
3. register_globals = On
4. register_long_arrays = On
5. extension=php_mysql.dll ~ removed the ;
6. extension=php_mysqli.dll ~ removed the ;
7. include_path = "."
8. mysql.default_host = localhost
9. mysql.default_port = 3306
**NOTE: IF I DIDN'T PUT QUOTES - NEITHER SHOULD YOU.
10. Save and Close
copy the file libmysql.dll
to c:\windows & c:\windows\system32 ~ this file is in the root of PHP 5 folder
XP Environment Variables: Add the following at the end of Paths> c:\<php folder>;c:\<php folder>\ext ~ change php folder for your install
NOTE: ANY CHANGES TO ENVIRONMENT VARIABLES HAS THE POTENTIAL TO CAUSE SYSTEM PROBLEMS IF NOT DONE CORRECTLY. MAKE SURE YOU HAVE A ";" AT THE END OF THE PATH BEFORE YOU ADD THE CHANGES.
REBOOT!!!! THESE CHANGES WILL NOT TAKE EFFECT UNTIL YOU DO SO.
DW - edit current site or create it new
Local Info:
Should be left however you have it now OR if creating new, just do it like you always have.
Remote Info:
Access : Local/Network
Remote Folder: C:\inetpub\wwwroot\<your virtual directory>
* Check Refresh Automatically
Testing Server:
Server Model: PHP MySQL
Access: Local/ Network
Testing Server Folder: C:\inetpub\wwwroot\<your virtual directory>
URL Prefix: http://localhost/<your site name>
* Check Refresh Automatically
** I don't make changes to anything else under site editing so I stop there. Click OK and you're done.
At this point, you should see under the "Application" section on the "Database" tab, steps 1,2,3 checked. Now create a connection by clicking the "+" button. Enter the following:
Connection Name: <whatever you want>
MySQL Server: localhost
User Name: root (or another account you have created with sufficient privileges)
Password:
Database: enter a DB name you wish to connect to or click select if you wish to browse for it.
You shouldn't get the "Unidentified Error..." message anymore. I know I don't.
I hope this helps the next poor sap this happens to. I'm sorry for the long post but I hate, hate, hate, when people post half assed instructions because they are too lazy to type.
Good luck everyone and happy designing!!!
prdreamweaver
email: [email protected]
(you can email me with questions but remember, I am not an expert with dynamic content. however, I am willing to assist if I can)

Similar Messages

  • HT2693 In-app purchase error has occurred. please help: (

    In-app purchase error has occurred. please help: (

    Maybe you might explain the app and the error?
    Contact the developer to get a resolution.

  • Trying to log into App store and keep getting "An unknown error has occured" please help

    I keep trying to log into the App store and get "An unknown error has occured"  help!!

    Im having the same issue cant purchase anything.  must be down

  • I am not able to download apps from app store. i get error "an unknown error has occured". please help me

    all of a sudden i am not able to download apps from App Store. I get an error "An Unknow Error Occured". i am able to connect to my wi-fi and browse websites. but not able to download apps. please help me.
    Thanks!
    Balaji

    I have this issue too, is anyone able to assist?
    I can access and download items from iTunes on Mac and Iphone 5... but not on the mac store?
    Thanks

  • Cannot connect to the phone system. An unidentified error has occurred, Please try again.

    Issue:  Lync 2013 users with remote call control enabled cannot connect to the phone system.  When the user logs into Lync, they see an exclamation in the bottom right corner
    with this error.
    Error:  Cannot connect to the phone system.  An unidentified error has occurred, Please try again.  If the problem continues, please contact your support team.
    Environment: 
    1 site:  Site1
    2 Pools:
    1. Lync 2010
    Trusted application is added here for the site.
    2. Lync 2013
    Avaya phone system:  AES r6-1-2-32-0
    I have not moved the trusted application to the Lync 2013 pool yet, but my understanding is that it should still work since it’s in the site.  Is my understanding on this correct?  (All of my other trusted applications do work for Lync 2013
    users & none of them have been moved yet. Remote Call Control is the only one that does not work.)
    This is from the uccapi log.  This is just from the user logging in, not actually making a call.  Below are the items that I think are important, however, I don’t know how to interpret it to determine if the problem is on the Lync side or
    the Avaya side.  Here’s a summary:
    SIP/2.0 100 Trying
    Authentication-Info: TLS-DSK qop="auth", opaque="5FD217E1", srand="E05700E2", snum="9", rspauth="f308eae87c0bbe64a1ab213574776cbdf9823ab6", targetname="lync03.domain.com",
    realm="SIP Communications Service", version=4
    From: <sip:[email protected]>;tag=bbb282ebbd;epid=a86d5b0a29
    To: <sip:[email protected]>
    Call-ID: 9eb0d23a3b8f4e0eafc6c6da622fbecf
    CSeq: 1 INVITE
    Via: SIP/2.0/TLS 10.155.48.96:61472;ms-received-port=61472;ms-received-cid=1FA400
    Server: http%3A%2F%2Fwww.microsoft.com%2FLCS%2FUdcAgent
    Content-Length: 0
    SIP/2.0 200 OK
    Authentication-Info: TLS-DSK qop="auth", opaque="5FD217E1", srand="15C0F9A2", snum="13", rspauth="4fd891e39a33e902fb1cec5d980e5bf0ccb172a0", targetname="lync03.domain.com",
    realm="SIP Communications Service", version=4
    From: <sip:[email protected]
    >;tag=bbb282ebbd;epid=a86d5b0a29
    To: <sip:[email protected]
    >;tag=A7A45C856ECD79121A1827265ABBD7F6
    Call-ID: 9eb0d23a3b8f4e0eafc6c6da622fbecf
    CSeq: 1 CANCEL
    Via: SIP/2.0/TLS 10.155.48.96:61472;ms-received-port=61472;ms-received-cid=1FA400
    Server: http%3A%2F%2Fwww.microsoft.com%2FLCS%2FUdcAgent
    Content-Length: 0
    SIP/2.0 487 Request terminated
    Authentication-Info: TLS-DSK qop="auth", opaque="5FD217E1", srand="F46EC133", snum="14", rspauth="1d92718caa4f61d967faa46a5c256aafa8b4e740", targetname="lync03.domain.com",
    realm="SIP Communications Service", version=4
    From: <sip:[email protected]
    >;tag=bbb282ebbd;epid=a86d5b0a29
    To: <sip:[email protected]
    >;tag=A7A45C856ECD79121A1827265ABBD7F6
    Call-ID: 9eb0d23a3b8f4e0eafc6c6da622fbecf
    CSeq: 1 INVITE
    Via: SIP/2.0/TLS 10.155.48.96:61472;ms-received-port=61472;ms-received-cid=1FA400
    ms-diagnostics: 5002;reason="Request was cancelled";AppUri="http%3A%2F%2Fwww.microsoft.com%2FLCS%2FUdcAgent";source="lync03.
    domain.com"
    Server: http%3A%2F%2Fwww.microsoft.com%2FLCS%2FUdcAgent
    Content-Length: 0

    Hi Suelizy,
    To better understand the issue, I would like to collect the following information for troubleshooting:
    1. Do you mean the Lync 2010 user can connect to the Phone System?
    2. What’s next hop pool of the application?  
    In a mixed environment, you must set the next hop pool to be the Lync Server 2013 pool.
    Best regards,
    Eric

  • Error While downloading the file A server Error has occurred, please try again later Downloading Yahoo mail Application Attachments  Trying to download My Photos and movie 3 items so i can delete them all

    I have icloud and a new iPhone5 ! They work good , took pictures and a few short movies, plugged in my phone to my iMac transfered Items to iPhoto then inported items to iMovie. when getting to know what i was doing i decided to delete pictures and movies i no longer wanted. when i looked for a few missing items i opend Finder and there some where buyt i had already trashed them and deleted the doubles. Still could not find missing pictures and movies 3 items and today after calling yahoo about a different complant with sending feed back for Yahoo mail Applications login . i opened up Attachments Not the Large Attachments just Attachments and there were the 3 items i had been hunting for to Trash and delete. the mail Attachments file does not have the Option to delet Files and photos and movies. When i tried to Download the 3 items a window shows up that says Error While Downloading the Files, A Server Error has occured, please Try Again later. nothing works how do i remove the Trapped photo and movie Blank Files and trash them?  Onece they get into my downloads i can do something with them as i understand.    That part of it kind of keeps me in Question also because why should i have to down load my own files of Attachments / Pictures and movies if they are comming from my iMac?    How much better is iLife11 then iPhoto08 and iMovie08 .  Thanks Greg

    Hello,
    Thank you for your post.
    This is a quick note to let you know that we are performing research on this issue.
    If you have feedback for TechNet Subscriber Support, contact
    [email protected]
    Simon Wu
    TechNet Community Support

  • I am unable to use iTunes credits for game credits When I try to purchase a box comes up with an error has occurred please try later"

    I am unable to use iTunes credit for game credit purchase. A box comes up with " an error has occurred Please try later" any advice greatly appreciate. Thanks

    mgpainter wrote :
    prince2012 wrote:
    Hi mgpainter
    Welcome to the Community
    Sorry I am not a RIM employee, But still regarding your problem have a look at this RIM Knowledge Base to resolve the error .Try it and see if it resolves your problem : KB25882 .
    Prince
    Click " Like " if you want to Thank someone.
    If Problem Resolves mark the post(s) as " Solution ", so that other can make use of it.
    Thanks for the welcome and the reply!
    I looked at KB25882 and my settings are good, so that didn't help.
    I had this problem over a year ago, and someone at RIM found a bit set that shouldn't have been set and fixed it (that is my terminology for what happened).
    I am really looking for a way to contact RIM directly.  I hate going through the mill with my carrier to get it escalated to RIM for resolution......  <sigh>
    Hi mgpainter 
                                Most easiest way to Contact RIM is through your Carrier but as you don't prefer that than there is another way of support called Incident Based Support but just want to inform you that its not free.If you want have a try  BlackBerry Incident Based Support .
    Good Luck
    Prince
    Click " Like " if you want to Thank someone.
    If Problem Resolves mark the post(s) as " Solution ", so that other can make use of it.
    Click " Like " if you want to Thank someone.
    If Problem Resolves mark the post(s) as " Solution ", so that other can make use of it.

  • I transfered my iWork '09 to my new Mac Air. Now my Keynote won't open. I get message, "An unexpected error has occurred, please quit and reopen Keynote." This doesn't work.

    I transfered my iWork '09 to my new Mac Air. Now my Keynote won't open. I get message, "An unexpected error has occurred, please quit and reopen Keynote." This doesn't work.

    so Keynote still isnt working after installing, I thought you had it sorted from your last post.
    If you have not done so remove any files relating to iWork and Keynote and reinstall iWork
    files that must go are:
    the iWork ’09 folder from the main HD > Applications;
    the iWork ’09 folder in HD > Library > Application Support
    the individual iWork application plist files found in HD > Users > (your account) > Library >
    There are a number of free application removal tools  that will do this for you:
    trashme       webpage
    apptrap        webpage
    appcleaner   webpage

  • What can i do to sort my ipod touch 4th gen, when ever i connect it to my laptop my itunes keeps saying, and i quote "itunes could not connect to this ipod, an unknown error has occured" please helpppppp i have not had my ipod for long either

    what can i do to sort my ipod touch 4th gen, when ever i connect it to my laptop my itunes keeps saying, and i quote "itunes could not connect to this ipod, an unknown error has occured" please helpppppp i have not had my ipod for long either

    - Try restoring on another computer.
    -  Make an appointment at the Genius Bar of an Apple store.
    Apple Retail Store - Genius Bar

  • While ordering book:'Unexpected error has occurred, please try again later'

    Hello,
    Not sure if this is a suitable forum, but when I was using Iphoto '08 V7.1.3 (latest version), and I tried to purchase an album, the following error always appeared : "Unexpected error has occurred, please try again later".
    It always appears after iphoto has transfered all the data across after I click 'Buy Now'. And it is driving me crazy!
    I called up apple support and have tried to do whatever they told me to, which includes:
    1) Creating a new album
    2) Creating a new apple i.d.
    but its all futile! The dreaded message always appears!
    Does anyone know if theres any way I can just SEND THE THING over manually, in a CD or something, cos I really want the album book! Or, do any technical guys here have any idea?? Im also kinda tired of waiting on the hold line on the phone!

    I wish I could help - but I am having the same exact problem. It is totally frustrating to make the book and then go through all the steps only to have the same message appear.

  • I downloaded a movie and i tried to put it on my ipod touch but it says "itunes cant put this on your ipod and error has occured" any help? thanks!

    i downloaded a movie and i tried to put it on my ipod touch but itunes said " itunes cant put this on your ipod touch and error has occured" any help? thanks!

    iTunes: May be unable to transfer videos to iPhone, iPad, or iPod
    iTunes: Frequently asked questions about viewing and syncing videos

  • TS1702 Has any one had trouble getting or giving lives in candy crush...I keep getting a message that says an error has occurred, please try later.  This has been going on for two days! Can't move cause I need to be unlocked, can't ask friends  because of

    Keep getting message"error has occurred, please try again later". When i try to send lives or ask friends for lives.  Can't play cause I need to be unlocked.  Help!

    Simple...
    http://www.apple.com/uk/support/mac/app-store/contact/

  • When i try to use boot camp assistant to install windows 7 it sais an error has occured any help?

    When i try to use boot camp assistant to install windows 7 it sais an error has occured any help?

    Boot from another hard drive or DVD and repair with Disk Utility.

  • Why do videos embedded in facebook and livejournal posts say "an error has occurred, please try again later" when I click on them?

    Videos embedded in facebook and livejournal posts say "an error has occurred, please try again later" when I click on them. (This doesn't happen in Internet Explorer.) I have the latest flash player, and the only firewall in use is Windows Firewall. Popups are blocked.

    mgpainter wrote :
    prince2012 wrote:
    Hi mgpainter
    Welcome to the Community
    Sorry I am not a RIM employee, But still regarding your problem have a look at this RIM Knowledge Base to resolve the error .Try it and see if it resolves your problem : KB25882 .
    Prince
    Click " Like " if you want to Thank someone.
    If Problem Resolves mark the post(s) as " Solution ", so that other can make use of it.
    Thanks for the welcome and the reply!
    I looked at KB25882 and my settings are good, so that didn't help.
    I had this problem over a year ago, and someone at RIM found a bit set that shouldn't have been set and fixed it (that is my terminology for what happened).
    I am really looking for a way to contact RIM directly.  I hate going through the mill with my carrier to get it escalated to RIM for resolution......  <sigh>
    Hi mgpainter 
                                Most easiest way to Contact RIM is through your Carrier but as you don't prefer that than there is another way of support called Incident Based Support but just want to inform you that its not free.If you want have a try  BlackBerry Incident Based Support .
    Good Luck
    Prince
    Click " Like " if you want to Thank someone.
    If Problem Resolves mark the post(s) as " Solution ", so that other can make use of it.
    Click " Like " if you want to Thank someone.
    If Problem Resolves mark the post(s) as " Solution ", so that other can make use of it.

  • Each time I go to click sign in, OR create account, it keeps telling me "an error has occured, please try again later". Can someone give me a step-by-step on how to fix this problem. Trying to redeem a $15 gift card!

    Each time I click on "sign in" , OR EVEN "create a new account", it keeps giving me a message to some effect of, "An error has occured, please try again later." It also includes some four or five digit number in parenthesis. I've tried to fix this but have no clue how to remove the error message and proceed. Can someone please give me a break-down of how to fix it? I need to redeem a gift card, and also obviously want to have access to purchase other items. Thanks.

    For what it's worth, you posted this in 2011, and here in 2014 I am still having this same issue. Over the last two days, I have had to unlock my apple account 8 times. I didn't get any new devices. I haven't initiated a password reset. I didn't forget my password. I set up two factor authentication and have been able to do the unlocking with the key and using a code sent to one of my devices. 
    That all works.
    It's this having to unlock my account every time I go to use any of my devices. And I have many: iMac, iPad, iPad2, iPad mini, iPhone 5s, iPod touch (daughter), and my old iPhone 4 being used as an ipod touch now.  They are all synced, and all was working just fine.
    I have initiated an incident with Apple (again) but I know they are just going to suggest I change my Apple ID. It's a simple one, and one that I am sure others think is theirs. I don't want to change it. I shouldn't have to. Apple should be able to tell me who is trying to use it, or at least from where.
    Thanks for listening,
    Melissa

Maybe you are looking for