Dreamweaver CS3: Hangs on “Initializing Extension data”
The symptom just started. The dreamweaver CS3 hangs on “Initializing Extension data” when I start the program.
Rebooting did not help.
But http://www.adobe.com/go/kb401118 did help me.
How to re-create the Dreamweaver user configuration folder (CS3 on Windows XP, Vista)
<span style=”color:#990000;font-style:italic;” mce_style=”color:#990000;font-style:italic;”>To view/add comments, you must enable JavaScript in your browser.</span>
If […] Continue Reading…
PHP: str_word_counter does not count numerals
Realized that str_word_counter() does not count numerals (just numbers alone without alphabets) as a word.
The manual’s expression is:
mixed str_word_count ( string $string [, int $format = 0 [, string $charlist ]] )
If we supply “ab cd ef”, then the function returns 3, and if we supply “11 22 ab”, […] Continue Reading…
Cygwin: nslookup/dig command error : “;; communications error: connection reset”
If you receive following error when execute nslookup or dig command:
;; communications error: connection reset
You have one option if it is for “dig” command. There are two options if it is for “nslookup” command.
For “dig” and “nslookup” command, setup /etc/resolv.conf
For “nslookup”, the another solution is to use “/cygdrive/c/WINDOWS/system32/nslookup.exe” instead […] Continue Reading…
Cygwin: how to look up which package includes the command
This is really becoming our memo….
#will open a new window
When you need to lookup which packages to install to use certain commands/find files within the cygwin package, use the following submit form:
command to search:
Cygwin: How to setup tftpd
Make sure you have setup inetd already.
create a root directory for tftpd:
$ mkdir /tftpboot
Edit /etc/inetd.conf
(before)
#tftp dgram udp wait nobody /usr/sbin/in.tftpd in.tftpd
(after)
tftp dgram udp wait root /usr/sbin/in.tftpd in.tftpd […] Continue Reading…