Skip to content
This repository has been archived by the owner on Jan 13, 2024. It is now read-only.

Commit

Permalink
Bug fix execute error not found
Browse files Browse the repository at this point in the history
  • Loading branch information
fherryfherry committed Aug 7, 2016
1 parent caf2414 commit a700e84
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions public/install/index.php
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@
$conf = load_env();
?>

<form method='post' id='form-db' action='execute.php?type=save_db'>
<form method='post' id='form-db' action='./execute.php?type=save_db'>
<table class='table table-striped table-bordered'>
<tbody>
<tr><td><strong>Hostname</strong></td><td><input required type='text' class='form-control' value='<?php echo @$conf['DB_HOST']?>' name='DB_HOST'/></td></tr>
Expand Down Expand Up @@ -217,7 +217,7 @@ function check_table() {
$(".status_table").each(function() {
var table = $(this).attr('data-table');
var h = $(this);
$.post("execute.php?type=check_table",{table:table},function(resp) {
$.post("./execute.php?type=check_table",{table:table},function(resp) {
if(resp==1) {
h.html("<span class='label label-success'>ALREADY</span>");
}else{
Expand Down

0 comments on commit a700e84

Please sign in to comment.