Compare commits

..

7 Enmetoj

Author SHA1 Message Date
Shreyas Minocha 3d9b591a71 Fix config file bugs 2024-02-15 04:08:57 +00:00
Jaidyn Ann 75b782f5bd Re-add variable typo
… so that I can merge shreyasminocha’s PR, so they
get their commit in after so long. They apparently
noticed the type long before me, after all.
2024-02-14 22:08:55 -06:00
Jaidyn Ann 7c975181e7
Merge pull request #2 from shreyasminocha/grammar
Fix grammar error
2024-02-15 04:04:50 +00:00
Jaidyn Ann 1d3b7bceba Add file-upload error if lack of upload-dir/perms 2024-02-14 21:56:36 -06:00
Jaidyn Ann 37c4ce18f2 Fix variable typo 2024-02-14 21:50:41 -06:00
Jaidyn Ann 39b1dcf48d Update README 2024-01-29 00:55:44 -06:00
Shreyas Minocha b29aa34615
Fix grammar error 2020-06-07 19:11:12 +05:30
5 changed files with 12 additions and 5 deletions

View File

@ -28,6 +28,6 @@ of Lighttpd, read "docs/lighttpd.txt".
BORING STUFF
----------------------------------------
License is AGPLv3-- check COPYING.txt.
Author is Jenga Phoenix <jadedctrl@teknik.io>
Permanent instance over at https://coinsh.red
Sauce is at https://git.eunichx.us/insert-coin.git
Author is Jenga Phoenix <jadedctrl@posteo.at>
The flagship instance was https://coinsh.red, until it moved to distribute-coin.
Sauce is at https://hak.xwx.moe/jadedctrl//insert-coin

View File

@ -39,7 +39,7 @@ switch (true) {
break;
default:
redirect(make_url("result/beam.php"));
redirect(make_url("result/beam.php?error=3"));
break;
}

View File

@ -4,5 +4,5 @@
<p><b><?php echo($GLOBALS["coin_url"]); ?></b></p>
<p>It's meta-stuff (or lack thereof) is
<p>Its meta stuff (or lack thereof) is
<a href="<?php echo($GLOBALS["coin_url"] . ".txt"); ?>">here</a></p>

View File

@ -0,0 +1,2 @@
<p>Couldnt save your coin; this is likely a configuration error.</p>
<p>Does insert-coin have access to the coin directory?</p>

View File

@ -26,6 +26,11 @@ switch (true) {
"coin/death-2.html",
$file_beam_die_alt, $file_beam_die_img);
break;
case ($error == 3):
create_page($item . " on fire",
"coin/death-3.html",
$file_beam_die_alt, $file_beam_die_img);
break;
default:
create_page($item . " on fire",
"coin/death.html",