Changeset 376 for trunk/install/install1.php
- Timestamp:
- Sep 24, 2022, 1:11:18 PM (2 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/install/install1.php
r2 r376 14 14 $DBpassword = mosGetParam( $_POST, 'DBpassword', 'password' ); 15 15 $DBname = mosGetParam( $_POST, 'DBname', 'eleonline' ); 16 $ELEuserName = mosGetParam( $_POST, 'ELEuserName', 'eleutente' ); 17 $ELEpassword = mosGetParam( $_POST, 'ELEpassword', 'elepassword' ); 16 18 $DBPrefix = mosGetParam( $_POST, 'DBPrefix', 'soraldo' ); 17 19 … … 41 43 alert('Inserisci un nome per il tuo nuovo Database'); 42 44 f.DBname.focus(); 45 formValid=false; 46 } else if ( f.ELEuserName.value == '' ) { 47 alert('Inserisci il nome del nuovo utente che gestirà il Database'); 48 f.DBuserName.focus(); 43 49 formValid=false; 44 50 } else if ( f.DBPrefix.value == '' ) { … … 124 130 </td> 125 131 <td> 126 <em>Nome dell'account con permessi per creare il database </em>132 <em>Nome dell'account con permessi per creare il database e GRANT</em> 127 133 </td> 128 134 </tr> … … 134 140 </td> 135 141 <td> 136 <em>Password perl'account mysql:</em>142 <em>Password dell'account mysql:</em> 137 143 </td> 138 144 </tr> … … 144 150 </td> 145 151 <td> 146 <em>Nome del database di Eleonline.</em> 147 </td> 148 </tr> 152 <em>Nome del database di Eleonline da creare.</em> 153 </td> 154 </tr> 155 <tr> 156 <td colspan="2"> 157 MySQL Nuovo utente 158 <br/> 159 <input class="inputbox" type="text" name="ELEuserName" value="<?php echo "$ELEuserName"; ?>" /> 160 </td> 161 <td> 162 <em>Nome dell'account che gestirà il database di eleonline</em> 163 </td> 164 </tr> 165 <tr> 166 <td colspan="2"> 167 MySQL Password 168 <br/> 169 <input class="inputbox" type="text" name="ELEpassword" value="<?php echo "$ELEpassword"; ?>" /> 170 </td> 171 <td> 172 <em>Password per il nuovo account mysql:</em> 173 </td> 174 </tr> 149 175 <!-- 150 176 <tr>
Note:
See TracChangeset
for help on using the changeset viewer.