Merge pull request #2944 from rahulcs0082/development
installer reverted to old one
This commit is contained in:
commit
8576c4023b
|
|
@ -1,8 +1,9 @@
|
||||||
<?php
|
<?php
|
||||||
$actual_link = (isset($_SERVER['HTTPS']) && $_SERVER['HTTPS'] === 'on' ? "https" : "http") . "://$_SERVER[HTTP_HOST]$_SERVER[REQUEST_URI]";
|
$actual_link = (isset($_SERVER['HTTPS']) && $_SERVER['HTTPS'] === 'on' ? "https" : "http") . "://$_SERVER[HTTP_HOST]$_SERVER[REQUEST_URI]";
|
||||||
|
|
||||||
$cssUrl = $actual_link .'/'. 'css/style.css';
|
$cssUrl = $actual_link .'/'. 'CSS/style.css';
|
||||||
$logo = $actual_link .'/'. 'Images/logo.svg';
|
$logo = $actual_link .'/'. 'Images/logo.svg';
|
||||||
|
$jsURL = $actual_link .'/'. 'js/script.js';
|
||||||
?>
|
?>
|
||||||
<!DOCTYPE html>
|
<!DOCTYPE html>
|
||||||
<html>
|
<html>
|
||||||
|
|
@ -115,11 +116,11 @@
|
||||||
include __DIR__ . '/Classes/Requirement.php';
|
include __DIR__ . '/Classes/Requirement.php';
|
||||||
|
|
||||||
// including php files
|
// including php files
|
||||||
include __DIR__ . '/views/environment.blade.php';
|
include __DIR__ . '/Views/environment.blade.php';
|
||||||
include __DIR__ . '/views/migration.blade.php';
|
include __DIR__ . '/Views/migration.blade.php';
|
||||||
include __DIR__ . '/views/admin.blade.php';
|
include __DIR__ . '/Views/admin.blade.php';
|
||||||
include __DIR__ . '/views/email.blade.php';
|
include __DIR__ . '/Views/email.blade.php';
|
||||||
include __DIR__ . '/views/finish.blade.php';
|
include __DIR__ . '/Views/finish.blade.php';
|
||||||
|
|
||||||
// object creation
|
// object creation
|
||||||
$requirement = new Requirement();
|
$requirement = new Requirement();
|
||||||
|
|
@ -143,6 +144,7 @@
|
||||||
<a href="https://bagisto.com/" target="_blank">Bagisto</a> a community project by <a href="https://webkul.com/" target="_blank">Webkul</a>
|
<a href="https://bagisto.com/" target="_blank">Bagisto</a> a community project by <a href="https://webkul.com/" target="_blank">Webkul</a>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<script src="js/script.js"></script>
|
<script src="<?php echo $jsURL; ?>" ></script>
|
||||||
|
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue