unexpected data – "Headers already sent" – fast bugfix
-
Problems in:
download-manager.php
wpdm-server-file-browser.phpSolved:
Example: download-manager.php Line 325
if( $_GET['task'] !== 'wpdm_tree' ): [...]
fix:
if( isset( $_GET['task'] ) ): if( $_GET['task'] !== 'wpdm_tree' ): endif;
Description: script tries to get post data for – if loop -. But if postdata isn’t set, the error occurs. It is a problem of unclean coding.
By the way: Thanks for that plugin ??
have fun!
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘unexpected data – "Headers already sent" – fast bugfix’ is closed to new replies.