Hi
This is a strange one, and I'm not sure whats going on here. I've tried googling the answer to no avail.
Basically, I'm writing a Wordpress plugin, and here's my setup:
install.php has a class called 'two_install'
The main plugin file code snippet:
// Installation
require(plugin_basename('installer.php'));
// Initiate installation class
$twp_install = new twp_install;
This results in this on activation:
Fatal error: Class 'twp_install' not found in path-on-server\wp-content\plugins\twitter_parser\twitter_parser.php on line xx
Anyone got any ideas? Just a note, there is definitely a class called 'twp_install' in installer.php!
Thanks in advance