Dreamweaver CS5 crash when I open certain files -
i've been using cs4 on year without problems. today installed dreamweaver cs5 and, well... have not been able work because keeps crashing. when try open files (in case: index.php) crashes.
i had problem "upload on save" option untill unchecked "use alternative ftp move method" option in server settings.
i've tried googling problem without luck. know solution this?
update:
after testing every line of code in index.php found source of problem. if add line file:
<link rel="stylesheet" type="text/css" href="http://fonts.googleapis.com/css?family=reenie+beanie">
dreamweaver cs5 stops working. cs5 installed try it?
it's external links issue. culprit in case font file being loaded google.
problem:
<link rel="stylesheet" type="text/css" href="http://fonts.googleapis.com/css?family=reenie+beanie">
commenting or removing line work, problem need font test website i'm developing. did instead (since i'm using php) echo out link dw can't try crawl it.
solution:
<link rel="stylesheet" type="text/css" href="<?php echo "http://fonts.googleapis.com/css?family=reenie+beanie"; ?>">
it's pointless code, works - dw stop hanging , font still work when testing in live environment.
Comments
Post a Comment