Permantly turn off word wrap Dreamweaver
Open ONE document.
Select: View > Code View Options
Deselect Word Wrap
Close the document
All documents opened will now default with word wrap turned off in code view.
Dreamweaver Problems selecting local root folder
Problem: While defining a site using the Windows version of Dreamweaver, when the users tries to set the local root folder by browsing into and selecting it, the local root folder is set one directory higher than the one he’s chosen.
This is a bug affecting Dreamweaver in Windows 7 and Vista after the SP2 pack is installed (though it was fine before I replaced the hard drive).
Solution: It's a known bug. Either adjust the address manually, or select a folder within the desired folder. Less than ideal, but it's a one-off per site.
MySQL Error:
Error Type:
ADODB.Connection.1 (0x80004005)
SQLState: S Native Error Code: 1251 [TCX][MyODBC]Client does not support authentication protocol requested by server; consider upgrading MySQL client
Solution:
In phpMyAdmin, run:
set password=old_password("the-old-password")
MySQL Error:
Error Type:
ADODB.Connection.1 (0x80004005)
SQLState: S Native Error Code: 2002 [TCX][MyODBC]Can't connect to local MySQL server through socket '/tmp/mysql.sock' (2)
Solution:
Hosting company needs to do this:
"The problem was solved by creating a symlink from /tmp/mysql.sock -> /var/lib/mysql/mysql.sock and restarting MySQL.
"
|