Configuration
Last updated January 14, 2026
Optional: Enable IP Whitelist
Edit line 23 in smartdump.php:
define('ENABLE_IP_WHITELIST', true);
define('ALLOWED_IPS', ['123.45.67.89', '98.76.54.32']);
Optional: Adjust Upload Limits
Create/edit php.ini or .htaccess:
upload_max_filesize = 500M
post_max_size = 500M
max_execution_time = 300
memory_limit = 512M
For Nginx, edit your config:
client_max_body_size 500M;