[Plugin: Pierre’s Wordspew] wp-config fix
-
There is a problem with a relative link to the wp-config file. To fix this modify line 8 in wordspew.php and line 19 in wordspew_admin.php
BAD Code:
$html = implode('', file("../../../wp-config.php"));GOOD Code:
$html = implode('', file(get_bloginfo('wpurl')."/wp-config.php"));
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
The topic ‘[Plugin: Pierre’s Wordspew] wp-config fix’ is closed to new replies.