-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Done for today-- will work on migration tomorrow.
Very good. Planning on moving my reverse proxy tomorrow.
- Loading branch information
1 parent
c8e1da5
commit 15c9be5
Showing
7 changed files
with
68 additions
and
42 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
--- | ||
layout: default | ||
permalink: /404.html | ||
--- | ||
# 404 not found | ||
It seems like the page that you are attempting to access is either nonexistant, or the URL is mistyped. Please verify that the URL in the search bar is correct. If you found this page via a link, and you think that this is an error, please drop me an email at [damien@alphagame.dev](mailto:damien@alphagame.dev). It is also possible that I removed that page. | ||
|
||
Sorry for the inconvenience, | ||
|
||
Damien |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
--- | ||
layout: default | ||
title: Okay. I messed up (EVEN MORE!) | ||
--- | ||
Hey all- | ||
|
||
I messed up, AGAIN. I ACTUALLY think that this is the last time that this is going to happen. Recently, the site was on a weird /wp-admin/install.php page, where the WordPress software was installed, and the MySQL database was all going well, but the installer was trying to get the software (that is already installed) installed AGAIN. | ||
|
||
<!--more--> | ||
|
||
I don’t have the exact logs, but I have (accidentally) remembered some. | ||
|
||
``` | ||
Error during WordPress installation: | ||
CREATE TABLE wordpress -- already exists. | ||
(repeat this a lot) | ||
``` | ||
But yeah– I have set up a proper automatic backup system to Google Drive. Hopefully I won’t screw it up AGAIN. | ||
|
||
Thanks- | ||
|
||
Damien B. | ||
|
||
**Note: This post is no longer relavant to this site, as I am no longer using WordPress.** |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
--- | ||
layout: default | ||
permalink: /blog | ||
--- | ||
# Blog posts | ||
Here, you can find my blog posts that I write in my spare time. | ||
[link](example.com) | ||
<ul> | ||
{% for post in site.posts %} | ||
<li><a class="blk" href="{{ post.url }}">{{ post.title }}</a></li> | ||
<ul> | ||
<li class="excerpt">{{ post.excerpt }}</li> | ||
</ul> | ||
{% endfor %} | ||
</ul> |