Make WordPress Core

Changes between Initial Version and Version 2 of Ticket #50641


Ignore:
Timestamp:
07/13/2020 05:40:10 PM (5 years ago)
Author:
SergeyBiryukov
Comment:

Hi there, welcome to WordPress Trac! Thanks for the ticket.

For reference, I could not reproduce the issue with the steps provided, only one file was created on my install.

Similar issues are generally caused by browser prefetching, see #12603, #14382, #19018, #20192, #21658, #28797, #32290, #45108. Some browsers automatically load any <link> elements with rel="next" or rel="prefetch".

So it doesn't look like there's a bug here.

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #50641

    • Property Status changed from new to closed
    • Property Milestone changed from Awaiting Review to
    • Property Resolution changed from to invalid
    • Property Severity changed from critical to normal
  • Ticket #50641 – Description

    initial v2  
    1313
    14141 - Add this function to the theme functions.php:
     15{{{
    1516function test() {
    1617  fopen("/var/www/html/yourpath/test." . random_int(0, 100000), "w");
     
    1819}
    1920add_action('wp_ajax_test', 'test');
    20 
     21}}}
    21222 - Access the URL: /wp-admin/admin-ajax.php?action=test
    2223