WP phpBB Bridge come with a custom url for plugin deactivation in the form of http://www.your-blog.ext/wpbbreset/yourPassword
Maybe that conflicts with your custom posts URL.
I suggesting you to try activate the WP phpBB Bridge and then go to your WordPress admin panel under Settings/Permalinks and just press the save button.
Maybe that will solve your problem. If not contact us again.
Maybe that conflicts with your custom posts URL.
How can plugin do it? I haven’t got any urls like this.
I suggesting you to try activate the WP phpBB Bridge and then go to your WordPress admin panel under Settings/Permalinks and just press the save button.
Yeah, I’ve tried to do it, but had no result.
I am sorry, I don’t realy know what’s wrong with it. We already use custom posts with that plugin in http://www.wdf.gr/ in the form of
/%category%/%postname%.html
and there is no problem with that 🙁 ?
Ok, I’ve made a clean install of wordpress 3.2.1 without any plugins.
Then I change permalinks structure to “/%category%/%postname%”
Tnen I’ve put this code to add one custom post type to function.php and add one new post to this custom type. The url is mysite.com/news/testthis. It’s working now.
/* adding custom post type "News" */
add_action( 'init', 'post_type_nlnews' );
function post_type_nlnews() {
register_post_type( 'nlnews',
array(
'labels' => array(
'name' => 'News',
'singular_name' => 'News'
),
'public' => true,
'show_ui' => true,
'menu_position' => 4,
'supports' => array('title','editor','revisions','comments'),
'taxonomies' => array( 'post_tag' ),
'rewrite' => array('slug' => 'news', 'with_front' => false),
'has_archive' => 'news'
)
);
}
Then I’ve installed your plugin. Still everything is ok.
Then I’ve activated it. The url mysite.com/news/testthis doesn’t work now. It returns “Page not found”
It seems that I have solved this problem by adding flush_rewrite_rules(); befor last } in my code!
Anyway, thanks for the great plugin!
You very welcome and we thank you for using it !