|
WEDNESDAY, APRIL 28, 2010
Robbie loves to "talk". He makes noises all the time. Sometimes he will wake up early and just talk to himself.
If there are strangers around him and they are being loud, he won't talk. But if you are quiet he will. Also, if Amanda or I talk, he will start talking. It is amazing that he knows that the sounds coming from us are 1) something he can mimic, 2) are something he should mimic.
Posted by Chet at 9:31 AM0 Comments
FRIDAY, APRIL 02, 2010
Enabling the php_mssql.dll extension in php.ini might fail silently. If you look at the output of phpinfo(), there will be no references to mssql. A cryptic error message can found in the error log. It says:
PHP Warning: PHP Startup: Unable to load dynamic library 'C:\PHP\ext\php_mssql.dll' - The specified module could not be found. This makes it sound like it couldn't find the php_mssql.dll file. It is clear that the dll file is in the correct location. Firing up Process Monitor, you can see that it has a dependency on ntwdblib.dll. This file is usually located in the PHP base directory... no problem there. However, this dll has a dependency on msvcr71.dll, which is not provided by PHP install. You need to locate the file on your harddrive and do one of the following: Put the location in your PATH, and reboot. Copy the file to the PHP base directory. Until you do this, PHP will run fine, but if you look at the output of phpinfo(), you will not see any references to mssql.
Posted by Chet at 10:06 AM1 Comment
|