Linux spg1.cloudpowerdns.com 5.14.0-611.34.1.el9_7.x86_64 #1 SMP PREEMPT_DYNAMIC Wed Feb 18 05:51:10 EST 2026 x86_64
LiteSpeed
Server IP : 176.9.63.151 & Your IP : 216.73.217.60
Domains :
Cant Read [ /etc/named.conf ]
User : fastear1
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
fastear1 /
vinance copy /
core /
app /
Constants /
Delete
Unzip
Name
Size
Permission
Date
Action
FileInfo.php
3.12
KB
-rw-rw-r--
2024-06-01 18:24
Status.php
1.71
KB
-rw-rw-r--
2024-05-28 13:12
Save
Rename
<?php namespace App\Constants; class FileInfo { /* |-------------------------------------------------------------------------- | File Information |-------------------------------------------------------------------------- | | This class basically contain the path of files and size of images. | All information are stored as an array. Developer will be able to access | this info as method and property using FileManager class. | */ public function fileInfo() { $data['withdrawVerify'] = [ 'path' => 'assets/images/verify/withdraw' ]; $data['depositVerify'] = [ 'path' => 'assets/images/verify/deposit' ]; $data['verify'] = [ 'path' => 'assets/verify' ]; $data['default'] = [ 'path' => 'assets/images/default.png', ]; $data['withdrawMethod'] = [ 'path' => 'assets/images/withdraw/method', 'size' => '800x800', ]; $data['ticket'] = [ 'path' => 'assets/support', ]; $data['logo_icon'] = [ 'path' => 'assets/images/logo_icon', ]; $data['favicon'] = [ 'size' => '128x128', ]; $data['extensions'] = [ 'path' => 'assets/images/extensions', 'size' => '36x36', ]; $data['seo'] = [ 'path' => 'assets/images/seo', 'size' => '1180x600', ]; $data['userProfile'] = [ 'path' => 'assets/images/user/profile', 'size' => '350x300', ]; $data['adminProfile'] = [ 'path' => 'assets/admin/images/profile', 'size' => '400x400', ]; $data['push'] = [ 'path' => 'assets/images/push_notification', ]; $data['appPurchase'] = [ 'path' => 'assets/in_app_purchase_config', ]; $data['maintenance'] = [ 'path' => 'assets/images/maintenance', 'size' => '700x400', ]; $data['language'] = [ 'path' => 'assets/images/language', 'size' => '50x50' ]; $data['gateway'] = [ 'path' => 'assets/images/gateway', 'size' => '' ]; $data['withdrawMethod'] = [ 'path' => 'assets/images/withdraw_method', 'size' => '' ]; $data['country'] = [ 'path' => 'assets/images/country', 'size' => '20x20' ]; $data['currency_data_provider'] = [ 'path' => 'assets/images/currency_data_provider', 'size' => '36x36', ]; $data['pwa_favicon'] = [ 'size' => '192x192', ]; $data['pwa_thumb'] = [ 'size' => '512x512' ]; $data['currency'] = [ 'path' => 'assets/images/currency', 'size' => '100x100', ]; $data['pushConfig'] = [ 'path' => 'assets/admin', ]; return $data; } }