- Statut : non résolu
- Ce sujet contient 4 réponses, 4 participants et a été mis à jour pour la dernière fois par
xavier, le il y a 19 années et 3 mois.
-
AuteurMessages
-
26 octobre 2005 à 9 h 43 min #446562
bonjour, voila je voudrois installé wordpress, mais sa bug au niveau de la base de donnée, enfin c’est moi qui bug car je sais pas comment faire pour l’installer, j’ai pourtant dézipper dans mon ftp free
aprés j’ai mis mes identifiant pour la bas de donnée, et sa me donen sa , comme error:There doesn’t seem to be a wp-config.php file. I need this before we can get started. Need more help? We got it. You can create a wp-config.php file through a web interface, but this doesn’t work for all server setups. The safest way is to manually create the file.
et j’ai pourtant telecharger la version fr la wordpress-1.5.1.3-strayhorn-fr_FR
et c’est écris en anglais, quelqu’un pourez m’aider svp??
26 octobre 2005 à 10 h 25 min #566575As tu bien suivi l’install :
1-Activer sa base de donnée chez Free.
2-Dézipper le package WordPress sur ton bureau.
3-Oouvert le fichier wp-config-sample.php et remplie les éléments de ta base de donnée Free
4-Sauvegarder et renomer le fichier en wp-config.php.
5-uploader tous les fichiers du package sur ton serveur Free via un client FTP.
6-Lancer l’installation : http://monsite.free.fr/wp-admin/install.php. ou un autre chemin selon l’endroit ou tu as installé tes fichiers.???
Pour mémoire les fichiers sont ici.
28 novembre 2005 à 16 h 10 min #566576Bonjour,
J’ai également le même problèùe que nicolasdaguerre !
Pourtant je pense avoir bien fais ce qu’il y a inscrit dans les instructions !
Quand je lance l’install, on me demande le nom de mon weblog et mon adresse mail, puis de cliquer sur « second step »…
Suis-je bon ou pas ?28 novembre 2005 à 16 h 12 min #566577Désolé ca va faire un peu long mais voici ce qui apparait quand je lance l’install :
wp-config.php file. I need this before we can get started. Need more help? We got it. You can create a wp-config.php file through a web interface, but this doesn’t work for all server setups. The safest way is to manually create the file. »); require_once(‘../wp-config.php’); require_once(‘./upgrade-functions.php’); $guessurl = str_replace(‘/wp-admin/install.php?step=2’, », ‘http://’ . $_SERVER . dirname($_SERVER) ); if (isset($_GET)) $step = $_GET; else $step = 0; ?>
hide_errors(); $installed = $wpdb->get_results(« SELECT * FROM $wpdb->users »); if ($installed) die(__(‘
Already Installed
You appear to have already installed WordPress. To reinstall please clear your old database tables first.‘)); $wpdb->show_errors(); switch($step) { case 0: ?>
Welcome to WordPress installation. We?re now going to go through a few steps to get you up and running with the latest in personal publishing platforms. You may want to peruse the ReadMe documentation at your leisure.First Step »
First Step
Before we begin we need a little bit of information. Don’t worry, you can always change these later.Weblog title:
Your e-mail:Double-check that email address before continuing.
Second Step
Now we?re going to create the database tables and fill them with some default data.query(« UPDATE $wpdb->options SET option_value = ‘$weblog_title’ WHERE option_name = ‘blogname' »); $wpdb->query(« UPDATE $wpdb->options SET option_value = ‘$admin_email’ WHERE option_name = ‘admin_email' »); // Now drop in some default links $wpdb->query(« INSERT INTO $wpdb->linkcategories (cat_id, cat_name) VALUES (1, ‘Blogroll’) »); $wpdb->query(« INSERT INTO $wpdb->links (link_url, link_name, link_category, link_rss) VALUES (‘http://blog.carthik.net/index.php’, ‘Carthik’, 1, ‘http://blog.carthik.net/feed/’); »); $wpdb->query(« INSERT INTO $wpdb->links (link_url, link_name, link_category, link_rss) VALUES (‘http://blogs.linux.ie/xeer/’, ‘Donncha’, 1, ‘http://blogs.linux.ie/xeer/feed/’); »); $wpdb->query(« INSERT INTO $wpdb->links (link_url, link_name, link_category, link_rss) VALUES (‘http://zengun.org/weblog/’, ‘Michel’, 1, ‘http://zengun.org/weblog/feed/’); »); $wpdb->query(« INSERT INTO $wpdb->links (link_url, link_name, link_category, link_rss) VALUES (‘http://boren.nu/’, ‘Ryan’, 1, ‘http://boren.nu/feed/’); »); $wpdb->query(« INSERT INTO $wpdb->links (link_url, link_name, link_category, link_rss) VALUES (‘http://photomatt.net/’, ‘Matt’, 1, ‘http://xml.photomatt.net/feed/’); »); $wpdb->query(« INSERT INTO $wpdb->links (link_url, link_name, link_category, link_rss) VALUES (‘http://zed1.com/journalized/’, ‘Mike’, 1, ‘http://zed1.com/journalized/feed/’); »); $wpdb->query(« INSERT INTO $wpdb->links (link_url, link_name, link_category, link_rss) VALUES (‘http://www.alexking.org/’, ‘Alex’, 1, ‘http://www.alexking.org/blog/wp-rss2.php’); »); $wpdb->query(« INSERT INTO $wpdb->links (link_url, link_name, link_category, link_rss) VALUES (‘http://dougal.gunters.org/’, ‘Dougal’, 1, ‘http://dougal.gunters.org/feed/’); »); // Default category $wpdb->query(« INSERT INTO $wpdb->categories (cat_ID, cat_name) VALUES (‘0’, ‘Uncategorized’) »); // First post $now = date(‘Y-m-d H:i:s’); $now_gmt = gmdate(‘Y-m-d H:i:s’); $wpdb->query(« INSERT INTO $wpdb->posts (post_author, post_date, post_date_gmt, post_content, post_title, post_category, post_modified, post_modified_gmt) VALUES (‘1’, ‘$now’, ‘$now_gmt’, ‘Welcome to WordPress. This is your first post. Edit or delete it, then start blogging!’, ‘Hello world!’, ‘0’, ‘$now’, ‘$now_gmt’) »); $wpdb->query( « INSERT INTO $wpdb->post2cat (`rel_id`, `post_id`, `category_id`) VALUES (1, 1, 1) » ); // Default comment $wpdb->query(« INSERT INTO $wpdb->comments (comment_post_ID, comment_author, comment_author_email, comment_author_url, comment_author_IP, comment_date, comment_date_gmt, comment_content) VALUES (‘1’, ‘Mr WordPress’, », ‘http://wordpress.org’, ‘127.0.0.1’, ‘$now’, ‘$now_gmt’, ‘Hi, this is a comment.
To delete a comment, just log in, and view the posts’ comments, there you will have the option to edit or delete them.’) »); // Set up admin user $random_password = substr(md5(uniqid(microtime())), 0, 6); $wpdb->query(« INSERT INTO $wpdb->users (ID, user_login, user_pass, user_nickname, user_email, user_level, user_idmode, user_registered) VALUES ( ‘1’, ‘admin’, MD5(‘$random_password’), ‘Administrator’, ‘$admin_email’, ’10’, ‘nickname’, NOW() ) »); $from = ‘From: ‘.$_POST.’ ‘; $message_headers = « $from »; $message = « Your new WordPress blog has been successfully set up at: $guessurl You can log in to the administrator account with the following information: Username: admin Password: $random_password We hope you enjoy your new weblog. Thanks! –The WordPress Team http://wordpress.org/ « ; @mail($admin_email, ‘New WordPress Blog’, $message, $message_headers); upgrade_all(); ?>
Finished!Now you can log in with the login « admin » and password « ».
Note that password carefully! It is a random password that was generated just for you. If you lose it, you will have to delete the tables from the database yourself, and re-install WordPress. So to review:
Login
admin
Password
Login address
wp-login.php
Were you expecting more steps? Sorry to disappoint. All done! 🙂WordPress, personal publishing platform.
28 novembre 2005 à 16 h 52 min #566578Un truc foire dans ton installation, tu ne devrais pas voir tous ces codes. Efface tout tes fichiers+ base de données, re-upload WP, et relance ?
-
AuteurMessages
- Vous devez être connecté pour répondre à ce sujet.