https://github.com/danmichaelo/searchstats
Simple usage statistics for [Realfagsbiblioteket app](//github.com/saqimtiaz/BibSearch)
https://github.com/danmichaelo/searchstats
Last synced: 2 months ago
JSON representation
Simple usage statistics for [Realfagsbiblioteket app](//github.com/saqimtiaz/BibSearch)
- Host: GitHub
- URL: https://github.com/danmichaelo/searchstats
- Owner: danmichaelo
- Created: 2013-07-29T12:25:33.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2014-02-02T19:42:57.000Z (about 11 years ago)
- Last Synced: 2025-02-15T08:47:23.588Z (2 months ago)
- Language: PHP
- Size: 148 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Simple usage statistics for [Realfagsbiblioteket app](//github.com/saqimtiaz/BibSearch).
Currently deployed [here](//bibapp.biblionaut.net/).Setup:
curl -sS https://getcomposer.org/installer | php
php composer.phar updateCopy `config.dist.yml` to `config.yml` and configure for your server.
Database schema:
CREATE TABLE `visits` (
`id` int(9) unsigned NOT NULL AUTO_INCREMENT,
`timestamp` datetime NOT NULL,
`user_agent` tinytext NOT NULL,
`accept_lang` tinytext NOT NULL,
`app_version` varchar(8) NOT NULL,
`request_time` int(6) NOT NULL,
`cql` tinytext NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;