run:R W Run
DIR
2026-03-11 16:18:51
R W Run
DIR
2026-03-11 16:18:51
R W Run
DIR
2026-03-11 16:18:51
R W Run
DIR
2026-03-11 16:18:51
R W Run
DIR
2026-03-11 16:18:51
R W Run
25.82 KB
2026-03-11 16:18:51
R W Run
15.61 KB
2026-03-11 16:18:51
R W Run
357 KB
2026-03-11 16:18:51
R W Run
655.7 KB
2026-03-11 16:18:51
R W Run
1.02 KB
2026-03-11 16:18:51
R W Run
error_log
📄wp-tinymce.php
1<?php
2/**
3 * Not used in core since 5.1.
4 * This is a back-compat for plugins that may be using this method of loading directly.
5 */
6
7/**
8 * Disable error reporting
9 *
10 * Set this to error_reporting( -1 ) for debugging.
11 */
12error_reporting( 0 );
13
14$basepath = __DIR__;
15
16function get_file( $path ) {
17
18 if ( function_exists( 'realpath' ) ) {
19 $path = realpath( $path );
20 }
21
22 if ( ! $path || ! @is_file( $path ) ) {
23 return false;
24 }
25
26 return @file_get_contents( $path );
27}
28
29$expires_offset = 31536000; // 1 year.
30
31header( 'Content-Type: application/javascript; charset=UTF-8' );
32header( 'Vary: Accept-Encoding' ); // Handle proxies.
33header( 'Expires: ' . gmdate( 'D, d M Y H:i:s', time() + $expires_offset ) . ' GMT' );
34header( "Cache-Control: public, max-age=$expires_offset" );
35
36$file = get_file( $basepath . '/wp-tinymce.js' );
37if ( isset( $_GET['c'] ) && $file ) {
38 echo $file;
39} else {
40 // Even further back compat.
41 echo get_file( $basepath . '/tinymce.min.js' );
42 echo get_file( $basepath . '/plugins/compat3x/plugin.min.js' );
43}
44exit;
45