Skip to content

Commit 5778d57

Browse files
authored
Fix for https tables not installing
Update setup for https tables not installing
1 parent 73231ae commit 5778d57

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

setup/index.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -245,7 +245,7 @@ function installTheDatabase() {
245245
246246
alert('Have patience and don\'t close the page!');
247247
$.ajax({
248-
url: '".$base_href."install.db.php',
248+
url: '".SITE_URL."setup/install.db.php',
249249
beforeSend: function( xhr ) {
250250
$('a#setuptables').html('Started...this may take a minute');
251251
$('#secod').html('<img src=\"cog-gear.gif\"/>');
@@ -463,7 +463,7 @@ function checktheuser() {
463463
if(username.length > 3) {
464464
//alert(username);
465465
$.ajax({
466-
url: '".$base_href."ucheck.php',
466+
url: '".SITE_URL."setup/ucheck.php',
467467
type: 'post',
468468
data: {username: username}
469469
})
@@ -483,7 +483,7 @@ function checkthemail() {
483483
484484
if(email.length > 3) {
485485
$.ajax({
486-
url: '".$base_href."mailcheck.php',
486+
url: '".SITE_URL."setup/mailcheck.php',
487487
type: 'post',
488488
data: {email: email}
489489
})
@@ -528,4 +528,4 @@ function checkthemail() {
528528
</div>
529529
</div> <br style="clear:both">
530530
<strong class="grey-text" style="font-weight: 300;">&copy; Copyright 2010 - '.date('Y').' Marius Patrascu, PHPVibe.com</strong>';
531-
?>
531+
?>

0 commit comments

Comments
 (0)