Added more help messages for the user in the step 2. Ticket #1438
This commit is contained in:
parent
91104f329b
commit
3741230170
|
@ -557,13 +557,20 @@ function install_step2() {
|
||||||
check_extension("mysql", "PHP MySQL extension");
|
check_extension("mysql", "PHP MySQL extension");
|
||||||
check_extension("pgsql", "PHP PostgreSQL extension");
|
check_extension("pgsql", "PHP PostgreSQL extension");
|
||||||
check_extension("oci8", "PHP Oracle extension");
|
check_extension("oci8", "PHP Oracle extension");
|
||||||
echo "</table>";
|
echo "</table>";
|
||||||
|
|
||||||
if ($res > 0) {
|
if ($res > 0) {
|
||||||
echo "
|
echo "
|
||||||
<div class='err'>You have some incomplete
|
<div class='err'>You have some incomplete
|
||||||
dependencies. Please correct them or this installer
|
dependencies. Please correct them or this installer
|
||||||
will not be able to finish your installation.
|
will not be able to finish your installation.
|
||||||
</div>
|
</div>
|
||||||
|
<div class='err'>
|
||||||
|
Remember, if you install any PHP module to comply
|
||||||
|
with these dependences, you <b>need to restart</b>
|
||||||
|
your HTTP/Apache server after it to use the new
|
||||||
|
modules.
|
||||||
|
</div>
|
||||||
<div style='text-align: right;'>
|
<div style='text-align: right;'>
|
||||||
Ignore it. <a href='install.php?step=3' style='font-weight: bolder;'>Force install Step #3</a>
|
Ignore it. <a href='install.php?step=3' style='font-weight: bolder;'>Force install Step #3</a>
|
||||||
</div>";
|
</div>";
|
||||||
|
@ -572,9 +579,8 @@ function install_step2() {
|
||||||
else {
|
else {
|
||||||
echo "</div>";
|
echo "</div>";
|
||||||
echo "<a id='step3' href='install.php?step=3'><br>
|
echo "<a id='step3' href='install.php?step=3'><br>
|
||||||
<img align='right' src='images/arrow_next.png' border='0' alt=''></a> <div style='clear: both;'><!-- --></div>
|
<img align='right' src='images/arrow_next.png' border='0' alt=''></a>
|
||||||
";
|
<div style='clear: both;'><!-- --></div>";
|
||||||
|
|
||||||
}
|
}
|
||||||
echo "
|
echo "
|
||||||
</div>
|
</div>
|
||||||
|
|
Loading…
Reference in New Issue