Support » Fixing WordPress » error log

  • I discovered an error log in my plugin folder. Can someone tell me what these errors mean and how I can fix them? Thanks in advance.

    [12-Apr-2005 07:42:37] PHP Fatal error: Call to undefined function: remove_filter() in /wp-content/plugins/textile1.php on line 378
    [16-Apr-2005 10:32:25] PHP Fatal error: Call to undefined function: add_filter() in /wp-content/plugins/google-hilite.php on line 130
    [17-Apr-2005 06:19:57] PHP Fatal error: Call to undefined function: add_action() in /wp-content/plugins/kittens-spaminator.php on line 517
    [18-Apr-2005 00:05:40] PHP Fatal error: Call to undefined function: wptexturize() in /plugins/hello.php on line 44

Viewing 2 replies - 1 through 2 (of 2 total)
  • i would like to know too

    Filters and Actions are WP’s way of providing plugins a way of doing some work for you. When you want to “filter” content you use the “add_filter()” command and put in your function.

    When you want to take an “action” based on something else, like posting, editing and so on, you use the “add_action()” command.

    The remove_filter/action() do the opposite. These are basic WP functions that should essentially never be undefined.

    From the looks of it, I would say that your WP installation is a little messed up.

    What version of WP are you using? What have you installed/uninstalled recently?

    Regards

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘error log’ is closed to new replies.