Changeset 555 for trunk/plog-admin/includes/install-form-setup.php
- Timestamp:
- 07/07/08 17:22:49 (5 months ago)
- Files:
-
- 1 modified
-
trunk/plog-admin/includes/install-form-setup.php (modified) (5 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/plog-admin/includes/install-form-setup.php
r552 r555 10 10 ?> 11 11 <h1>Plogger Configuration Setup</h1> 12 <p>To install, simply fill out the following form. If there are any problems, you will be notified and asked to fix them before the installation will continue. After the installation has finished, you will be redirected to the Plogger admin page.</p> 12 13 <p>To install, simply fill out the following form. If there are any problems, you will be notified and asked to fix them before the installation will continue. After the installation has finished, you will be redirected to the Plogger admin page.</p> 14 13 15 <form action="_install.php" method="post"> 14 16 <input type="hidden" name="action" value="install" /> 15 17 <table> 16 18 <tr> 17 <td colspan="2"> 18 <div id="navcontainer"> 19 <h1>Database Setup</h1> 20 </div> 21 </td> 19 <td colspan="2"><h2>Database Setup</h2></td> 22 20 </tr> 23 21 <tr> … … 25 23 <td class="form_input"><input type="text" name="db_host" id="db_host" value="<?php echo $form['db_host']; ?>" /></td> 26 24 </tr> 27 28 25 <tr> 29 26 <td class="form_label"><label for="db_user">MySQL Username:</label></td> … … 31 28 </tr> 32 29 <tr> 33 <td class="form_label"><label for="db_pass word">MySQL Password:</label></td>30 <td class="form_label"><label for="db_pass">MySQL Password:</label></td> 34 31 <td class="form_input"><input type="password" name="db_pass" id="db_pass" value="<?php echo $form['db_pass']; ?>" /></td> 35 32 </tr> 36 37 33 <tr> 38 34 <td class="form_label"><label for="db_name">MySQL Database:</label></td> … … 40 36 </tr> 41 37 <tr> 42 <td colspan="2"> 43 <div id="navcontainer"> 44 <h1>Administrative Setup</h1> 45 </div> 46 </td> 38 <td colspan="2"><h2>Administrative Setup</h2></td> 47 39 </tr> 48 40 <tr> 49 <td class="form_label"><label for="gallery ">Gallery Name:</label></td>50 <td class="form_input"><input type="text" name="gallery_name" id="gallery " value="<?php echo $form['gallery_name']; ?>" /></td>41 <td class="form_label"><label for="gallery_name">Gallery Name:</label></td> 42 <td class="form_input"><input type="text" name="gallery_name" id="gallery_name" value="<?php echo $form['gallery_name']; ?>" /></td> 51 43 </tr> 52 44 <tr> 53 <td class="form_label"><label for=" username">Your e-mail:</label></td>54 <td class="form_input"><input type="text" name="admin_email" id=" email" value="<?php echo $form['admin_email']; ?>" /></td>45 <td class="form_label"><label for="admin_email">Your e-mail:</label></td> 46 <td class="form_input"><input type="text" name="admin_email" id="admin_email" value="<?php echo $form['admin_email']; ?>" /></td> 55 47 </tr> 56 48 <?php … … 60 52 <tr> 61 53 <td colspan="2"> 62 <div id="navcontainer"> 63 <h1>Safe_mode FTP workaround</h1> 64 <br />Safe mode has been detected on your server. FTP access is needed to allow Plogger to work correctly with safe_mode enabled. 65 </div> 54 <h2>Safe_mode FTP workaround</h2> 55 <p>Safe mode has been detected on your server. FTP access is needed to allow Plogger to work correctly with safe_mode enabled.</p> 66 56 </td> 67 57 </tr>
