Changes between Initial Version and Version 3 of Ticket #45528
- Timestamp:
- 12/07/2018 08:02:39 PM (6 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #45528
- Property Keywords needs-patch needs-unit-tests added
-
Property
Milestone
changed from
Awaiting Review
to5.0.1
-
Property
Severity
changed from
major
tonormal
-
Property
Summary
changed from
Editor JSON translations fail to load if WP_CONTENT_DIR been redefined
toload_script_textdomain() doesn't load translations when WP installed in a subdirectory with custom content dir
-
Ticket #45528 – Description
initial v3 7 7 create index.php, redefine siteurl 8 8 3. define new constants 9 10 {{{ 9 11 define( 'WP_CONTENT_DIR', '/siteroot/wp/wp-content' ); 10 12 define( 'WP_CONTENT_URL', 'http://localhost:8080/wp-content' ); 11 13 define( 'WP_PLUGIN_DIR', '/siteroot/wp/wp-content/plugins' ); 12 14 define( 'WP_PLUGIN_URL', 'http://localhost:8080/wp-content/plugins' ); 15 }}} 16 13 17 4. ensure everything is working. (It is!) 14 18 Try to load editor, (new post/page) - localization is broken.