Set Featured Image not opening – Stuck at loading

If this is still a problem, then you can find my answer on wordpress.org’s support forum, it might help: wordpress.org/support/topic/resize-failure-on-some-images-with-odd-message This is a part of a code from the jQuery library, to be specific this part is responsible for handling callbacks. It is displayed, because the reponse from wordpres is unparsable JSON data. If you … Read more

Does WordPress support Plupload chunking when uploading asynchronously?

To the best of my knowledge, no, the async-upload process on the WordPress side does not support chunking from plupload. You can find this code in /wp-admin/async-upload.php. To handle the uploaded file, it calls the wp_ajax_upload_attachment() function, in the ajax-actions.php file. This function refers directly to the PHP $_FILES array, meaning that the file would … Read more

Setup database structure with books, authors, languages etc. for publishing house [closed]

You can always create your own custom database tables and access them with or without the WordPress wrapper. However in this case, it sounds like you want Custom Post Types I think you may have a bit of a misunderstanding as to what a “post” or “custom post type” is in WordPress. Though 100% honestly, … Read more

Should I manually resolve WP Core File security issues or await a subsequent WP release?

Most of the time you should not modify core by yourself – it will get overwritten after update and it may cause some conflicts. Of course, if you know what you’re doing and the vulnerability is really serious, then you can update given library and test everything by yourself. As for awareness. Most of the … Read more