Trying to Install Locally on Mac
-
Hi,
I am a designer and have designed and coded a few sites. I’m trying to redesign my personal site and decided to try WordPress for a blogging portion. I want to set up a testing site on my Mac. I have followed all the directions that I have been able to find on this website, but I am completely confused. I guess I’ve installed WordPress because when I open install.php, I get this:
ERROR: %s’), $error); ?>
checked=”checked” />
‘.__(‘Already Installed’).’
‘.__(‘You appear to have already installed WordPress. To reinstall please clear your old database tables first.’).’
‘);} switch($step) { case 0: case 1: // in case people are directly linking to this display_header(); ?>ReadMe documentation at your leisure. Otherwise, just fill in the information below and you’ll be on your way to using the most extendable and powerful personal publishing platform in the world.’), ‘../readme.html’); ?>
error) ) wp_die($wpdb->error->get_error_message()); display_header(); // Fill in the data we gathered $weblog_title = isset($_POST[‘weblog_title’]) ? stripslashes($_POST[‘weblog_title’]) : ”; $admin_email = isset($_POST[‘admin_email’]) ? stripslashes($_POST[‘admin_email’]) : ”; $public = isset($_POST[‘blog_public’]) ? (int) $_POST[‘blog_public’] : 0; // check e-mail address $error = false; if (empty($admin_email)) { // TODO: poka-yoke display_setup_form( __(‘you must provide an e-mail address.’) ); $error = true; } else if (!is_email($admin_email)) { // TODO: poka-yoke display_setup_form( __(‘that isn’t a valid e-mail address. E-mail addresses look like: username@example.com’) ); $error = true; } if ( $error === false ) { $wpdb->show_errors(); $result = wp_install($weblog_title, ‘admin’, $admin_email, $public); extract($result, EXTR_SKIP); ?>
admin
‘. $password .’
‘; } echo ‘‘. $password_message .’
‘; ?>I never got a username or password, but I am required to enter both in order to open the site on my computer.
I’d like to think that I’m an intelligent person and can understand code, but all of this stuff is really over my head (apparently). I don’t want to make a site on WordPress.com because I want to have my own design and layout. Could someone please help? Thanks!
The topic ‘Trying to Install Locally on Mac’ is closed to new replies.