Changeset 6965 for trunk/wp-admin/setup-config.php
- Timestamp:
- 02/21/2008 11:55:11 PM (18 years ago)
- File:
-
- 1 edited
-
trunk/wp-admin/setup-config.php (modified) (5 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/setup-config.php
r6726 r6965 34 34 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> 35 35 <title>WordPress › Setup Configuration File</title> 36 <link rel="stylesheet" href="<?php echo $admin_dir; ?>css/install.css" type="text/css" /> 36 37 37 <style media="screen" type="text/css">38 <!--39 html {40 background: #eee;41 }42 body {43 background: #fff;44 color: #000;45 font-family: Georgia, "Times New Roman", Times, serif;46 margin-left: 20%;47 margin-right: 20%;48 padding: .2em 2em;49 }50 51 h1 {52 color: #006;53 font-size: 18px;54 font-weight: lighter;55 }56 57 h2 {58 font-size: 16px;59 }60 61 p, li, dt {62 line-height: 140%;63 padding-bottom: 2px;64 }65 66 ul, ol {67 padding: 5px 5px 5px 20px;68 }69 #logo {70 margin-bottom: 2em;71 }72 .step a, .step input {73 font-size: 2em;74 }75 td input {76 font-size: 1.5em;77 }78 .step, th {79 text-align: right;80 }81 #footer {82 text-align: center;83 border-top: 1px solid #ccc;84 padding-top: 1em;85 font-style: italic;86 }87 -->88 </style>89 38 </head> 90 39 <body> … … 107 56 </ol> 108 57 <p><strong>If for any reason this automatic file creation doesn't work, don't worry. All this does is fill in the database information to a configuration file. You may also simply open <code>wp-config-sample.php</code> in a text editor, fill in your information, and save it as <code>wp-config.php</code>. </strong></p> 109 <p>In all likelihood, these items were supplied to you by your ISP. If you do not have this information, then you will need to contact them before you can continue. If you’re all ready, <a href="setup-config.php?step=1">let’s go</a>! </p> 58 <p>In all likelihood, these items were supplied to you by your ISP. If you do not have this information, then you will need to contact them before you can continue. If you’re all ready…</p> 59 60 <p><a href="setup-config.php?step=1" class="button">Let’s go!</a></p> 110 61 <?php 111 62 break; … … 114 65 display_header(); 115 66 ?> 116 </p>117 67 <form method="post" action="setup-config.php?step=2"> 118 68 <p>Below you should enter your database connection details. If you're not sure about these, contact your host. </p> 119 <table >69 <table class="niceblue"> 120 70 <tr> 121 71 <th scope="row">Database Name</th> … … 145 95 </table> 146 96 <h2 class="step"> 147 <input name="submit" type="submit" value="Submit" />97 <input name="submit" type="submit" value="Submit" class="button" /> 148 98 </h2> 149 99 </form> … … 198 148 display_header(); 199 149 ?> 200 <p>All right sparky! You've made it through this part of the installation. WordPress can now communicate with your database. If you are ready, time now to <a href="install.php">run the install!</a></p> 150 <p>All right sparky! You've made it through this part of the installation. WordPress can now communicate with your database. If you are ready, time now to…</p> 151 152 <p><a href="install.php" class="button">Run the install</a></p> 201 153 <?php 202 154 break; 203 155 } 204 156 ?> 205 <p id="footer"><a href="http://wordpress.org/">WordPress</a>, personal publishing platform.</p>206 157 </body> 207 158 </html>
Note: See TracChangeset
for help on using the changeset viewer.