Forum Replies Created

Viewing 1 replies (of 1 total)
  • Thread Starter face

    (@face)

    I agree that plugin authors *should* check to make sure that they are only called within the WP environment. That should be part of the guide to creating plugins (and themes?)

    One simple example is this one

    PHP Fatal error: Call to undefined function add_action() in /path-to-wordpress/wp-content/plugins/hello.php on line 60

    Seems that the simple, demo plugin would be a good place to “show by example”

    The biggest “problem” is having to create the .htaccess file with the full path to the source PHP program to be executed.

    For the time being I have placed my special .htaccess file in ./wp-content/ and added the line
    Options -Indexes

    just in case the wordpress blog is located in a directory that would allow Apache to show a list of files in the absence of an index file like index.php or index.html. This particular case is handled by the having “index.php” files in ./wp-content/, ./wp-content/plugins/, ./wp-content/themes/ directories, but that doesn’t solve the problem of the actual themes or plugins.

    Another example is

    https://myblog/wp-content/themes/default/

    which generates this error

    PHP Fatal error: Call to undefined function get_header() in /path-to-wordpress/wp-content/themes/default/index.php on line 7

Viewing 1 replies (of 1 total)