MySQL Server on Windows Vista x64 Setup Guide, An Install That Works!!!

After hours of beating our heads against a wall, we’ve finally come up with a solid MySQL install guide. It wasn’t easy, but it’s something we needed, and obviously something our fellow developers needed. We spent hours reading through endless threads with errors such as;
Cannot Create Windows Service for MySQL. Error:0,
Vista x64 could not start the service mysql,
Windows could not start the mysql service on local computer error 1067,
Can’t create/write to file,
Can’t connect to [local] MySQL server,
Table ‘tbl_name’ doesn’t exist,
Yet even after reading through what seemed like hundreds of cries for help, and just as many supposed fixes, we were still no closer to resolving this issue. So after coming to the realization that there was little help to be had online, we just attacked our install, and dealt with the issues one by one. After repeated failed installs, and botched setups, we were able to get MySQL loaded properly. The setup instructions you see below were repeatable on 4 different machines, when followed properly. If you run into an issue, please let us know. Good luck with your setup.
My WordPress Blog is Sending Mail With My Webhosts Address
Here’s our solution. Be sure your working with the most up to date file. Local copies can become outdated with online updates. Edit the following file: wordpress-root-directory/wp-includes/class-phpmailer.php
On line 75 (valid on WordPress 2.7.1 — 2.8.7) and edit, “root@localhost.com” to the address you’de like to appear in administrative emails, ie. user@yourdomain.com. You’ll also want to change your FromName, on line 81, and your email address on line 88. Simply fill the empty quotes.
71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88
/** * Sets the From email address for the message. * @var string */ var $From = 'root@localhost'; /** * Sets the From name of the message. * @var string */ var $FromName = 'Root User'; /** * Sets the Sender email (Return-Path) of the message. If not empty, * will be sent via -f to sendmail or as 'MAIL FROM' in smtp mode. * @var string */ var $Sender = '';
And that’s it. Your sever will now send administrative Emails from your chosen name, and address. Let us know if this was helpful.
-
The Previous Posting
How I Made Our Background Image.… -
The Next Posting
WordPress, Fatal error: Allowed memory size of 33554432 bytes exhausted