Category: Errors

  • Fixing GrowlMail with Mac OS X 10.6.7 and Mail 4.5

    Add following two lines to Info.plist: <string>9049EF7D-5873-4F54-A447-51D722009310</string> <string>1C58722D-AFBD-464E-81BB-0E05C108BE06</string> Between <key>SupportedPluginCompatibilityUUIDs</key> <array> And </array> You can find the Info.plist in: ~/Library/Mail/Bundles/GrowlMail.mailbundle/Contents/ Or /Library/Mail/Bundles/GrowlMail.mailbundle/Contents/ If you already opened Mail (and received the disable warning), it’s probably in a folder named “Bundles (Disabled)”; just move the content to Bundles again. You can do the same ‘hack’ with GPGMail;…

  • nginx: could not build the server_names_hash

    I’ve recently started switching my custom nginx installations to the Debian repository version. So from 0.9.4 to 0.6.32 (Lenny), which will be upgraded to 0.7.x in Squeeze. I’ve come across this error on certain servers: # /etc/init.d/nginx restart Restarting nginx: 2011/02/11 11:34:58 [emerg] 3624#0: could not build the server_names_hash, you should increase server_names_hash_bucket_size: 32 nginx.…

  • Call to undefined function http_post_data()

    After updating my server from testing to Squeeze it suddenly crashed after running a high CPU % perl script. Being unresponsive I reset the machine to reboot it. After booting up and testing websites running on it I came along an odd PHP error; Call to undefined function http_post_data() Probably due to PHP updates from…

  • Debian MySQL Gem file error

    When installing the MySQL Gem, I had this error: Building native extensions. This could take a while… ERROR: Error installing mysql: ERROR: Failed to build gem native extension. /usr/bin/ruby1.8 extconf.rb –with-mysql-dir=/usr/include/mysql checking for mysql_query() in -lmysqlclient… no checking for main() in -lm… yes checking for mysql_query() in -lmysqlclient… no checking for main() in -lz… yes…

  • Malformed or invalid time zone in working hours XML in mailbox

    This error might be caused by changing this setting. When having this error in OWA, ECP or Outlook: You can fix this by setting the correct time zone in Outlook (you cannot change it through ECP — you need Outlook): File > Options > Calendar > Time Zone section Label: YourCity (e.g. Brussels) Time Zone:…

  • Exchange error 0x6d9

    I noticed my “Offline Address Book” was no longer automatically updating. Running “get-offlineaddressbook |fl” in the EMS showed it last updated somewhere 16th November 2010. Trying to manually update it through EMC (“Organizational Configuration > Mailbox > Offline Address Book > right click Default Offline Address Book > click update”) it gave me this error:…

  • Tomcat: javax.servlet.ServletException issues

    javax.servlet.ServletException org.apache.catalina.security.SecurityUtil.execute (SecurityUtil.java:294) Solution: Create 20servlets.policy: nano -w /etc/tomcat5.5/policy.d/20servlets.policy And add: grant codeBase “file:${catalina.base}/webapps/-” { permission java.security.AllPermission; }; And restart Tomcat /etc/init.d/tomcat5.5 restart

  • Xen: PTY allocation request failed

    $ ssh vm3.rootspirit.com -l root [email protected]’s password: PTY allocation request failed on channel 0 stdin: is not a tty Solution: Kill the DomU (xm console *might* work, but somehow rarely works for me). mkdir /tmp/disk mount /path/to/disk.img /tmp/disk chroot /tmp/disk /bin/bash => in chroot env nano -w /etc/fstab And add (though this is probably not…

  • Xen: Failed to find an unused loop device

    I had to start a new Xen domU this afternoon, xm create vm#.domain But this resulted in following error: Error: Device 5632 (vbd) could not be connected. Failed to find an unused loop device Solution: Create /etc/modprobe.d/local-loop.conf with this content: options loop max_loop=64 Turn off all DomUs, yes, bummer. You’ll need to reload the loop…