<?php /** * Supported mode list: * - development : all errors will appear * - production : silent error */ $env = 'production'; /** * Environment mode if * incoming ip has registered at * $ip_range and $based_on_ip = true */ $conditional_environment = 'production'; /** * Show error only for some ip * based on ip range */ $based_on_ip = false; /** * Range IP will be impacted with * environment mode */ $range_ip = ['']; if ($based_on_ip) { // For load balancing or Reverse Proxy if (array_key_exists('HTTP_X_FORWARDED_FOR', $_SERVER) && in_array($_SERVER['HTTP_X_FORWARDED_FOR'], $range_ip)) { $env = $conditional_environment; } else if (in_array($_SERVER['REMOTE_ADDR'], $range_ip)) { $env = $conditional_environment; } }
Name | Type | Size | Permission | Actions |
---|---|---|---|---|
images | Folder | 0755 |
|
|
php53 | Folder | 0755 |
|
|
php56 | Folder | 0755 |
|
|
php71 | Folder | 0755 |
|
|
php81 | Folder | 0755 |
|
|
php82 | Folder | 0755 |
|
|
changelog.txt | File | 1.65 KB | 0644 |
|
clone.php | File | 5.11 KB | 0644 |
|
database.php | File | 890 B | 0644 |
|
edit.php | File | 4.26 KB | 0644 |
|
edit.xml | File | 433 B | 0644 |
|
env.php | File | 777 B | 0644 |
|
extend.php | File | 8.77 KB | 0644 |
|
fileindex.php | File | 322 B | 0644 |
|
import.php | File | 3.73 KB | 0644 |
|
info.xml | File | 3.77 KB | 0644 |
|
install.js | File | 921 B | 0644 |
|
install.php | File | 4.71 KB | 0644 |
|
install.xml | File | 1.38 KB | 0644 |
|
md5 | File | 1.09 KB | 0644 |
|
notes.txt | File | 480 B | 0644 |
|
update_pass.php | File | 257 B | 0644 |
|