dynamodan
Forum Replies Created
-
Forum: Plugins
In reply to: [WordPressIgniter] How to access my_site/controller_function directlyArthur, I think there’s an issue with the SiteWDC_WP segment in the url. CodeIgniter, I believe, is expecting to find a controller named SiteWDC_WP.php as that is the first “segment”.
I recommend getting the latest (v1.3 as of this writing) plugin version, and using the [wordpressigniter] shortcode as a means of triggering CodeIgniter’s content. This is a new feature, and I intend it to replace and deprecate the “Page Override” setting.
Forum: Plugins
In reply to: [WordPressIgniter] Adding multiple pages that rely on CIThe default path, which is /welcome in Codeigniter, can be appended with functions in the welcome controller. So if you have your WordPressIgniter Page Override set to handle the page at http://example.com/codeigniter/, then the hello() function in controllers/welcome.php would be accessed by http://example.com/codeigniter/hello/ .
Then other paths, such as http://example.com/classes/ or http://example.com/classes/biology/ would be handled by the biology() function in controllers/classes.php, *IF* you have “CodeIgniter grabs all SEO urls” checked.
The WordPressIgniter plugin is not meant to be used with index.php anywhere in the url. I always keep that turned off in both WordPress and CodeIgniter. Who wants to see index.php in the url anyways.