devshort

private self-hosted shortlink service
git clone https://git.clttr.info/devshort.git
Log (Feed) | Files | Refs (Tags) | README | LICENSE

commit b5e081dc25cc59e4fcb12c9645cb78bc448a129e
parent c57058c77a97967600393ed572316836c07ae330
Author: Florian <flokX@users.noreply.github.com>
Date:   Wed, 15 Jan 2020 18:41:48 +0100

Merge pull request #13 from guzzisti/fix_access_counter

fix count_access for redirects
Diffstat:
Mredirect.php | 8+++++---
1 file changed, 5 insertions(+), 3 deletions(-)

diff --git a/redirect.php b/redirect.php @@ -16,21 +16,23 @@ $stats_path = implode(DIRECTORY_SEPARATOR, array(__DIR__, "data", "stats.json")) $stats_content = json_decode(file_get_contents($stats_path), true); // Count the access to the given $name -function count_access($base_path, $name) { +function count_access($name) { + global $stats_path, $stats_content; + $stats_content[$name][mktime(0, 0, 0)] += 1; file_put_contents($stats_path, json_encode($stats_content)); } if (array_key_exists($short, $config_content["shortlinks"])) { header("Location: " . $config_content["shortlinks"][$short], $http_response_code=303); - count_access($base_path, $short); + count_access($short); exit; } else if ($short === "") { header("Location: index.php", $http_response_code=301); exit; } else { header("HTTP/1.1 404 Not Found"); - count_access($base_path, "404-request"); + count_access("404-request"); // Generate custom buttons for the footer $links_string = "";