simon551 (@simon551)

Forum Replies Created

Viewing 10 replies - 1 through 10 (of 10 total)
  • I rolled back the upgrade, applied the fix. And I’m fine. For now. Thanks!

    hmm. 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.

    this 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 working

    Not in the path-to-url.php file, anyway.

    In reply to: Theme not working

    shoot. 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 working

    I 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 working

    bump

    In reply to: Theme not working

    fel64,

    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 working

    To 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.

Viewing 10 replies - 1 through 10 (of 10 total)