Forum Replies Created
-
In reply to: key master posts not showing up
I rolled back the upgrade, applied the fix. And I’m fine. For now. Thanks!
In reply to: key master posts not showing uphmm. thanks. is this fixed in later versions? I just upgraded to version 0.8.3.1 after having this error. now, the whole list is blank except for one entry. but my tags are all there and if I click a tag it shows the entries. I guess I’ll be making a new post for this problem.
In reply to: key master posts not showing upthis post should be in the troubleshooting forum but I don’t know how to move it.
not sure if I understand that. I forgot to put the backticks around my links code which I’m sure didn’t help. the code you provided is already contained in the header.php file in templates. The link as is is to mysite/forum
but I’d like to make one that goes to mysite. Or even better, the end link would be like this:
<a href="http://mysite/">My Site </a> -- <a href="http://mysite/forum"> Discussion Forum</a>
In reply to: Theme not workingNot in the path-to-url.php file, anyway.
In reply to: Theme not workingshoot. Theme is working but if do anything (enter a post, add a forum, etc) I get this error:
Warning: Cannot modify header information – headers already sent by (output started at C:Program Filesxampphtdocsvtmorgforummy-pluginspath-to-url.php:14) in C:Program Filesxampphtdocsvtmorgforumbb-includespluggable.php on line 166
In reply to: Theme not workingI was able to find this in past discussion. I’m posting the fix here in case anyone else needs it:
https://bbpress.org/forums/topic/700/page/2?replies=64#post-4936
from Trent, but code fixed up a little by Nanome:
“Create a file called whatever you want, but I recommend path-to-url.php
and put the following in it and upload it to /my-plugins/ directory:”
-Trent
Nanome’s fix:
<?php
function fix_bb_path_to_url( $url ) {
$url = str_replace(array(‘//’, ‘\\’, ‘\’), array(‘/’, ‘\’, ‘/’), $url);
return preg_replace( ‘|([^/])|’, ‘/$1′, $url );
}
add_filter( ‘bb_path_to_url’, ‘fix_bb_path_to_url’, 1, -1 );
?>
In reply to: Theme not workingbump
In reply to: Theme not workingfel64,
you’re right. It contains some wacky slashes:
<link rel="stylesheet" href="http://somethingsomethingforum/bb-templates/kakumei/style.css" type="text/css" />
any idea how to fix this?
In reply to: Theme not workingTo be more specific… I set the kakumei theme in the admin area and the theme seems to work in the admin area. but back in the main area there is no theme. Just plain text.