-
Website
http://www.tech-recipes.com/ -
Original page
http://www.tech-recipes.com/rx/2757/leopard_how_to_install_wordpress/ -
Subscribe
All Comments -
Community
-
Top Commenters
-
davak
83 comments · 1 points
-
Web Design
3 comments · 1 points
-
danishbacker
9 comments · 1 points
-
flexinfo
11 comments · 1 points
-
Tonychelle
4 comments · 1 points
-
-
Popular Threads
-
Facebook: How To Get Only Status Updates on Your FB Home Page
1 week ago · 4 comments
-
Firefox: Enable Case Sensitive Searches When Using Find (Ctrl+F)
5 days ago · 1 comment
-
Firefox 3.6: Enable Visual Previews When Using Ctrl+Tab (Windows Only)
6 days ago · 1 comment
-
Windows 7: How To Disable Live Preview for Taskbar Thumbnails
2 weeks ago · 2 comments
-
Gmail: How to block a sender from your inbox
3 weeks ago · 3 comments
-
Facebook: How To Get Only Status Updates on Your FB Home Page
Just one comment - when editing wp-config.php I found that setting DB_HOST to "localhost:/tmp/mysql.sock" didn't work, I had to just use "localhost".
/usr/local/mysql/bin/safe_mysqld
is now
/usr/local/mysql/bin/mysqld_safe
Good day!
Instead of create a folder on /var/mysql you can:
cp /etc
sudo cp php.ini.default php.ini
Then, edit the line that starts with mysql.default_socket to look like this
mysql.default_socket = /tmp/mysql.sock
cd /etc/
and not cp /etc
Get message from Terminal: The file /Users/xxx/.profile does not exist.
Any help?
/etc/profile and checked the username as such,
if [[ $USER = "test" ]]
then
export PATH="$PATH:/usr/local/mysql/bin"
fi
Thanks
ERROR 1133 (42000): Can't find any matching row in the user table
I have tried some variations of the set password line, but no luck. Should I stop and then start Mysql, or is setting a password for this user necessary?
Thank you for this very helpful tutorial.
Phill(synapticlight)
I got through the installation with no problem, but it won't let me login to wordpress. When I look at the table in mysql, there is only one user 'admin'. I can't login as my own user and I can't login as admin. Am I missing something? I used all the username and password settings exactly as in this tutorial. What am I doing wrong?
Thanks,
BD
When I downloaded the mysql-5.1.35-osx10.5-x86.dmg I noticed that it included a Startup app. Once installed, this app starts up automatic the MySQL server after a reboot and no manual action is needed anymore.
many thanks.
Great...
So instead of using:
set password for wpuser@localhost = old_password('wppass');
Use:
set password for wpuser@localhost = password('wppass');