Linux cesa-www-main 6.1.0-49-cloud-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.174-1 (2026-05-26) x86_64
Apache/2.4.68 (Debian)
Server IP : 10.218.0.2 & Your IP : 216.73.216.28
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
var /
www /
cesa.co.za /
wp-content /
themes /
oceanwp /
Delete
Unzip
Name
Size
Permission
Date
Action
assets
[ DIR ]
drwxr-sr-x
2023-12-04 21:12
inc
[ DIR ]
drwxr-sr-x
2025-01-30 10:09
languages
[ DIR ]
drwxr-sr-x
2023-12-04 21:12
partials
[ DIR ]
drwxr-sr-x
2023-12-04 21:12
sass
[ DIR ]
drwxr-sr-x
2023-12-04 21:12
templates
[ DIR ]
drwxr-sr-x
2023-12-04 21:12
tribe-events
[ DIR ]
drwxr-sr-x
2023-12-04 21:12
woocommerce
[ DIR ]
drwxr-sr-x
2023-12-04 21:12
404.php
4.56
KB
-rw-r--r--
2025-01-30 10:04
500.php
211
B
-rw-r--r--
2025-01-30 10:04
CONTRIBUTING.md
4.6
KB
-rw-r--r--
2025-01-30 10:04
README.md
1.84
KB
-rw-r--r--
2025-01-30 10:04
babel.config.js
42
B
-rw-r--r--
2025-01-30 10:04
changelog.md
8.52
KB
-rw-r--r--
2025-01-30 10:04
comments.php
5.1
KB
-rw-r--r--
2025-01-30 10:04
footer-pwa.php
166
B
-rw-r--r--
2025-01-30 10:04
footer.php
1.59
KB
-rw-r--r--
2025-01-30 10:04
functions.php
35.45
KB
-rw-r--r--
2025-01-30 10:04
functions.php.backup
30.38
KB
-rw-r--r--
2025-01-30 10:04
header-pwa.php
437
B
-rw-r--r--
2025-01-30 10:04
header.php
1.01
KB
-rw-r--r--
2025-01-30 10:04
image.php
1.38
KB
-rw-r--r--
2025-01-30 10:04
index.php
3.06
KB
-rw-r--r--
2025-01-30 10:04
offline.php
210
B
-rw-r--r--
2025-01-30 10:04
page.php
1.26
KB
-rw-r--r--
2025-01-30 10:04
php_errors.log
281
B
-rw-r--r--
2026-08-20 16:33
readme.txt
6.24
KB
-rw-r--r--
2025-01-30 10:04
rtl.css
16.97
KB
-rw-r--r--
2025-01-30 10:04
screenshot.jpg
89.28
KB
-rw-r--r--
2025-01-30 10:04
screenshot.png
82.88
KB
-rw-r--r--
2025-01-30 10:04
search.php
1.46
KB
-rw-r--r--
2025-01-30 10:04
searchform.php
1.05
KB
-rw-r--r--
2025-01-30 10:04
sidebar-left.php
737
B
-rw-r--r--
2025-01-30 10:04
sidebar.php
872
B
-rw-r--r--
2025-01-30 10:04
singular.php
1.65
KB
-rw-r--r--
2025-01-30 10:04
style.css
2.09
KB
-rw-r--r--
2025-01-30 10:04
webpack.config.js
2.15
KB
-rw-r--r--
2025-01-30 10:04
wpml-config.xml
2.48
KB
-rw-r--r--
2025-01-30 10:04
Save
Rename
const path = require('path'); const MiniCssExtractPlugin = require('mini-css-extract-plugin'); // const CopyPlugin = require("copy-webpack-plugin"); const ImageminPlugin = require('imagemin-webpack-plugin').default; const TerserPlugin = require('terser-webpack-plugin'); module.exports = { mode: 'production', // optimization: { // minimize: true, // minimizer: [new TerserPlugin({ /* additional options here */ })], // }, entry: { 'inc/customizer/assets/js/customize-search': path.resolve( process.cwd(), 'inc/customizer/assets/src/js/customize-search.js' ), }, output: { filename: '[name].js', path: path.resolve(process.cwd()), publicPath: './', }, module: { rules: [ { test: /\.js$/, exclude: /node_modules/, use: { loader: 'babel-loader', }, }, { test: /\.(jp?g|png|svg)$/, loader: 'url-loader', }, { test: /\.(woff(2)?|ttf|eot|svg)(\?v=\d+\.\d+\.\d+)?$/, use: [ { loader: 'file-loader', options: { name: '[name].[ext]', outputPath: './assets/dist/fonts/', publicPath: './fonts/', } } ] }, { test: /\.s[ac]ss$/i, use: [{ loader: MiniCssExtractPlugin.loader }, { loader: 'css-loader' }, { loader: 'sass-loader', options: { additionalData: "@import 'node_modules/bootstrap/scss/functions';@import 'node_modules/bootstrap/scss/variables';@import 'node_modules/bootstrap/scss/mixins';" } }, ], }, { test: /\.css$/, use: ['style-loader', 'css-loader'], }, ], }, resolve: { extensions: ['.js', '.jsx'], }, externals: { jquery: 'jQuery', lodash: 'lodash', // Necessary for wp.media script. '@wordpress/i18n': 'wp.i18n', }, plugins: [ new MiniCssExtractPlugin({ // Options similar to the same options in webpackOptions.output // both options are optional filename: '[name].css', chunkFilename: '[id].css', }), // new CopyPlugin({ // patterns: [ { // from: "./assets/src/img", // to: "./assets/dist/img", // } ], // }), new ImageminPlugin({ test: /\.(jpe?g|png|gif|svg)$/i, pngquant: { quality: '9' }, }) ], };