Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Set environment variable for port #40

Merged
merged 2 commits into from
Dec 14, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .htaccess
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
SetEnv PORT 8888
1 change: 1 addition & 0 deletions includes/config.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
<?php
$port = getenv("PORT");
$connString = "mysql:host=localhost:8889; dbname=blogdb";
$user="root";
$pass="root";
Expand Down
21 changes: 20 additions & 1 deletion init.sql
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,24 @@ CREATE TABLE IF NOT EXISTS `blogdb`.`comments` (
ENGINE = InnoDB
DEFAULT CHARACTER SET = utf8mb4;


-- -----------------------------------------------------
-- Table `blogdb`.`contact_form`
-- -----------------------------------------------------
CREATE TABLE IF NOT EXISTS `blogdb`.`contact_form` (
`id_submission` INT NOT NULL AUTO_INCREMENT,
`userid` INT NOT NULL,
`context` TEXT NOT NULL,
PRIMARY KEY (`id_submission`),
UNIQUE INDEX id_submission_UNIQUE (`id_submission` ASC),
CONSTRAINT `userid_FOREIGN_KEY_contact_form`
FOREIGN KEY (`userid`)
REFERENCES `blogdb`.`users` (`idusers`)
ON DELETE CASCADE)
ENGINE = InnoDB
DEFAULT CHARACTER SET = utf8mb4;


INSERT INTO users (`username`, `email`, `password`) VALUES("Peggy", "[email protected]", "12345");
INSERT INTO users (`username`, `email`, `password`) VALUES("Rag", "[email protected]", "23456");
INSERT INTO users (`username`, `email`, `password`) VALUES("Brian", "[email protected]", "34567");
Expand All @@ -104,4 +122,5 @@ INSERT INTO comments (`content`, `userid`, `postid`) VALUES ("Agreed", "4", "3")
INSERT INTO comments (`content`, `userid`, `postid`) VALUES ("Agreed", "1", "4");
INSERT INTO comments (`content`, `userid`, `postid`) VALUES ("Agreed", "2", "4");
INSERT INTO comments (`content`, `userid`, `postid`) VALUES ("Agreed", "3", "4");
INSERT INTO comments (`content`, `userid`, `postid`) VALUES ("Agreed", "4", "4");
INSERT INTO comments (`content`, `userid`, `postid`) VALUES ("Agreed", "4", "4");
INSERT INTO contact_form (`userid`, `context`) VALUES ("1", "TEST RUN");
2 changes: 1 addition & 1 deletion js/login.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ window.addEventListener("load", () => {
})

//Checking if user exists with same email
const response = await fetch("http://localhost:8888/php/checkdb.php", { method: "POST", body });
const response = await fetch("http://localhost:" + port + "/blog/php/checkdb.php", { method: "POST", body });
const data = await response.json()

//If user exists does not exist show hint and return early.
Expand Down
2 changes: 1 addition & 1 deletion js/signup.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ window.addEventListener("load", () => {
})

//Checking if user exists with same email
const response = await fetch("http://localhost:8888/php/checkdb.php", { method: "POST", body });
const response = await fetch("http://localhost:" + port + "/blog/php/checkdb.php", { method: "POST", body });
const data = await response.json()

//If user exists with email show hint and return
Expand Down
15 changes: 6 additions & 9 deletions php/login.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,10 @@
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Login</title>
<?php include('../includes/config.php'); ?>
<script>
var port = <?php echo json_encode($port); ?>;
</script>
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-T3c6CoIi6uLrA9TneNEoa7RxnatzjcDSCmG1MXxSR1GAsXEV/Dwwykc2MPK8M2HN" crossorigin="anonymous">
<link href="../css/login.css" rel="stylesheet" type="text/css" >
<link href="../css/top-nav.css" rel="stylesheet" type="text/css">
Expand Down Expand Up @@ -40,19 +44,12 @@
</div>
</div>
<div class="col-8 col-md-6 d-flex justify-content-center">
<input type="submit" class="login col-8 col-md-6 btn btn-primary mb-3" onclick="home.php">
<input type="submit" class="login col-8 col-md-6 btn btn-primary mb-3">
</div>
</div>
</form>
<div class="error col-8 col-md-6 d-flex justify-content-center" style="color: red;"></div>
</div>
<!-- Footer -->
<!-- <script>
document.querySelector(".login").addEventListener("click", (e) => {
e.preventDefault();
window.location.href = "home.php";
})
</script> -->
<script src="../js/login.js"></script>
<script src="../js/login.js" defer></script>
</body>
</html>
8 changes: 6 additions & 2 deletions php/signup.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,11 @@
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<title>Signup</title>
<?php include('../includes/config.php'); ?>
<script>
var port = <?php echo json_encode($port); ?>;
</script>
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-T3c6CoIi6uLrA9TneNEoa7RxnatzjcDSCmG1MXxSR1GAsXEV/Dwwykc2MPK8M2HN" crossorigin="anonymous">
<link href="../css/signup.css" rel="stylesheet" type="text/css" >
<link href="../css/top-nav.css" rel="stylesheet" type="text/css">
Expand Down Expand Up @@ -42,7 +46,7 @@
<div class="error col-8 col-md-6 d-flex justify-content-center" style="color: red;"></div>
</div>
<!-- Footer -->
<script src="../js/signup.js"></script>
<script src="../js/signup.js" defer></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-C6RzsynM9kWDrMNeT87bh95OGNyZPhcTNXj1NW7RuBCsyN/o0jlpcV8Qyq46cDfL" crossorigin="anonymous"></script>
</body>
</html>