/Hit-O-Meter

Platform for Tracking Profile View/Page Hit/Visitor Information.

Primary LanguagePHP

Screenshot

Hit-O-Meter

Tools for Counting Profile/Page/Visitor View Count.

Better Stack Badge

Quick start

To get started using Hit-O-Meter, visit our website today!

Visitors

Hit-O-Meter

Installation

Method 1: Using Heroku Build pack (Can be used in Herkou and Koyeb)

the default buildpack is "heroku-php-nginx" .You can find the following code in the Procfile

web: vendor/bin/heroku-php-nginx -C nginx_app.conf /public

You can change that to apache by replacing the Procfile with the following content

web: vendor/bin/heroku-php-apache2 public/

we need to make a change in the "app/Http/Middleware/TrustProxies.php"file by adding wildcard(*) to allow unsecured proxy connection

protected $proxies = '*';