X7ROOT File Manager
Current Path:
/var/softaculous/slims
var
/
softaculous
/
slims
/
ðŸ“
..
📄
changelog.txt
(1.65 KB)
📄
clone.php
(5.11 KB)
📄
database.php
(890 B)
📄
edit.php
(4.26 KB)
📄
edit.xml
(433 B)
📄
env.php
(777 B)
📄
extend.php
(8.77 KB)
📄
fileindex.php
(322 B)
ðŸ“
images
📄
import.php
(3.73 KB)
📄
info.xml
(3.77 KB)
📄
install.js
(921 B)
📄
install.php
(4.71 KB)
📄
install.xml
(1.38 KB)
📄
md5
(1.09 KB)
📄
notes.txt
(480 B)
ðŸ“
php53
ðŸ“
php56
ðŸ“
php71
ðŸ“
php81
ðŸ“
php82
📄
update_pass.php
(257 B)
Editing: env.php
<?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; } }
Upload File
Create Folder