Changes between Initial Version and Version 2 of Ticket #50641
- Timestamp:
- 07/13/2020 05:40:10 PM (5 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #50641
-
Property
Status
changed from
newtoclosed -
Property
Milestone
changed from
Awaiting Reviewto -
Property
Resolution
changed from
toinvalid -
Property
Severity
changed from
criticaltonormal
-
Property
Status
changed from
-
Ticket #50641 – Description
initial v2 13 13 14 14 1 - Add this function to the theme functions.php: 15 {{{ 15 16 function test() { 16 17 fopen("/var/www/html/yourpath/test." . random_int(0, 100000), "w"); … … 18 19 } 19 20 add_action('wp_ajax_test', 'test'); 20 21 }}} 21 22 2 - Access the URL: /wp-admin/admin-ajax.php?action=test 22 23