I just spent about an hour trying to figure this out, but when you have a php application that requires call time pass reference to be enabled, you can set in the .htaccess file. The trick on some systems is that it must be set to “1″ and not “on” as is indicated on the [...]
Could not load type Foo from assembly NHibernate
This error indicates that the class could not be found when NHibernate is initializing. The key here is “from assembly NHibernate” The reason I was getting this error is because I didn’t realize that you have to specify not only the name of the class (including the namespace prefix), but also the assembly name after [...]
.NET controls don't display formatting correctly in FireFox
If you’re writing .NET applications, when you test them in FireFox, they may look totally different than in IE. The first thing you probably notice is that input boxes are all the default width. Anything that you’ve resized in the designer doesn’t display in FireFox. If you use the Visual Studio designer to resize controls, [...]
MySQL Client does not support authentication protocol
If you ever get this error when trying to connect your application to a MySQL server, it’s because as of 4.1 MySQL made changes to the authentication method used. Most hosts are still running PHP that does not support this new authentication and so any application (PHPBB, etc) that you try to install won’t work. [...]
Transfer SQL Server Database Preserving Keys and Identities
If you try to transfer a database from one SQL Server to another using the Enterprise Manager data transfer wizard, you may notice that your primary key and identity properties do not transfer correctly. To transfer these, you have to use the “Transfer Objects” and change a few of the defaults. If you just accept [...]