seems to be a wordpress issue..
The following code wont work as a new plugin for adding an admin page..
PHP Code:
<?php
/*
Plugin Name: Test Plugin
Plugin URI: http://testing.com
Description: Testing some things
Version: .1
Author: Test Author
Author URI: http://www.nodomain.com/
*/
add_action('admin_menu', 'my_plugin_menu');
function my_plugin_menu() {
add_options_page('My Plugin Options', 'My Plugin', 'manage_options', 'my-unique-identifier', 'my_plugin_options');
}
?>