
Originally Posted by
reymondko
i have the same problem but finally installed it on my CPANEL..
Here is what I did:
1. Create a database name , database username and password in the MYSQL Database wizard on your Cpanel.
2. then go to the installation process. (If you have errors on the session part see below)
3. so if you are on the Database part just input:
HOST: localhost
databasename: (the database name you created) siteexample_databasename
Username: (the database username you created) siteexample_databaseusername
Password: (ofcourse the password of the username you created)
4. just click on okay to overwrite and continue...
5. then just fill in what you need and click next untill installation is complete.
FOr the session problem i found this in one of the forums here, and this is how they do it:
Find this section in the file /install/installSystemCheck.php
if(is_dir($session_save_path)){
if(is_writable($session_save_path)){
installLog("Session Save Path is ".$session_save_path);
}else{
$save_pathStatus = "<b><span class='stop'>{$mod_strings['ERR_CHECKSYS_SESSION_SAVE_PATH_NOT_WRITABLE']}</font></b>";
installLog("ERROR:: {$mod_strings['ERR_CHECKSYS_SESSION_SAVE_PATH_NOT_WRITABLE']}");
$error_found = true;
$error_txt .= '
<tr>
<td><strong>'.$mod_strings['LBL_CHECKSYS_SESSION_SAVE_PATH'].'</strong></td>
<td class="error">'.$save_pathStatus.'</td>
</tr>';
}
}
else{
$save_pathStatus = "<b><span class='stop'>{$mod_strings['ERR_CHECKSYS_SESSION_SAVE_PATH_NOT_SET']}</font></b>";
installLog("ERROR:: {$mod_strings['ERR_CHECKSYS_SESSION_SAVE_PATH_NOT_SET']}");
$error_found = true;
$error_txt .= '
<tr>
<td><strong>'.$mod_strings['LBL_CHECKSYS_SESSION_SAVE_PATH'].'</strong></td>
<td class="error">'.$save_pathStatus.'</td>
</tr>';
}
and then just comment everything on that part and it will turn out like this :
/*if(is_dir($session_save_path)){
if(is_writable($session_save_path)){
installLog("Session Save Path is ".$session_save_path);
}else{
$save_pathStatus = "<b><span class='stop'>{$mod_strings['ERR_CHECKSYS_SESSION_SAVE_PATH_NOT_WRITABLE']}</font></b>";
installLog("ERROR:: {$mod_strings['ERR_CHECKSYS_SESSION_SAVE_PATH_NOT_WRITABLE']}");
$error_found = true;
$error_txt .= '
<tr>
<td><strong>'.$mod_strings['LBL_CHECKSYS_SESSION_SAVE_PATH'].'</strong></td>
<td class="error">'.$save_pathStatus.'</td>
</tr>';
} */
/*}
else{
$save_pathStatus = "<b><span class='stop'>{$mod_strings['ERR_CHECKSYS_SESSION_SAVE_PATH_NOT_SET']}</font></b>";
installLog("ERROR:: {$mod_strings['ERR_CHECKSYS_SESSION_SAVE_PATH_NOT_SET']}");
$error_found = true;
$error_txt .= '
<tr>
<td><strong>'.$mod_strings['LBL_CHECKSYS_SESSION_SAVE_PATH'].'</strong></td>
<td class="error">'.$save_pathStatus.'</td>
</tr>';
}*/
Bookmarks