it's interesting how Ubuntu, my favourite Linux distribution, and Drupal, the best and most popular cms platform, have new releases coming out at the same time.
it's worth noting that ubuntu uses drupal to run it's main site, www.ubuntu.com and it's news site The Fridge.
I've been working on my localhost with Drupal 5.1 successfully; I get the above error message during the installation process on Drupal 6 beta. The MySQL socket on my local server (which is working fine) is '/var/mysql/mysql.sock'; the installation is looking for '/tmp/mysql.sock' and fails, generating the Can't connect to local MySQL server through socket '/tmp/mysql.sock' error message.
Suppose I have a MENU_CALLBACK that is intended to be called via an Ajax call from client side JavaScript. Using Drupal 6.x's new menu system, how can I ensure that only the html/data produced by my callback is the only thing sent back to the browser after a request from the browser has been processed server side? It looks like I have to print the output myself from my callback, and then exit() from Drupal.
Is there a test site where we can play with Drupal 6 to see what it looks like? I'm holding off going live with the my 5.3 site until 6, and just want to see if I should just wait to go live, or put my effort into the version I have.