(c) 2015-2022 Anton Kokarev et al.
This project was created to collect data from Router Scan log reports, search for access points, obtain its geolocation coordinates, and display it on world map.
- Disable display of errors, warnings, and notices in
php.ini
- Make sure your web server is set up to apply .htaccess policies per directory
- Make sure you have installed
bcmath
,curl
,mysqli
, andsimplexml
php extensions
- Copy all required files to your
/www
directory - Create database (execute
3wifi.sql
to create tables) - Copy config.php-distr to config.php
- Edit config.php (DB_SERV, DB_NAME, DB_USER, DB_PASS etc)
- (optional) Turn on memory tables (in the
config.php
defineTRY_USE_MEMORY_TABLES
astrue
) - (optional) Use
import.free.php
once to import old format database - Start all background daemons:
# Upload routine loads data into databasephp -f 3wifid.php uploads# Finalize routine prepares tasks for finalizationphp -f 3wifid.php finalize# Geolocate routine locates new added BSSIDs on mapphp -f 3wifid.php geolocate# Stats routine caches statistics (use only when stats caching enabled)php -f 3wifid.php stats# Memory table manager (use only with memory tables enabled)php -f 3wifid.php memory
# Recheck not found BSSIDs in the databasephp -f 3wifid.php recheck
Before running the daemons, make sure thatphp-cli
interpreter is accessible from your directory.