The MU forums have moved to WordPress.org

List All Plugin Leaving off trailing slash in URL (5 posts)

  1. mamaestes
    Member
    Posted 15 years ago #

    I'm using WPMU for our school district on a subdomain - blogs.burlesonisd.net (may not be visible to public yet) and I'm using Andrew Billits' List All plus Widget plugin.

    The plugin pulls the data just fine, the widget works great with one problem.

    The blogs are listed without a trailing slash in the blog URL and our system requires that trailing slash to navigate to the page.

    I'm not sure where to go to code in the slash (plugin file or a WPMU file). Could someone direct me to the code I need to edit? I've looked, but my changes either shut down the site (blank white pages) or make no change. Help!

    I've found similar threads here, but no answer.
    Thanks.

  2. andrea_r
    Moderator
    Posted 15 years ago #

    "my changes either shut down the site (blank white pages) "

    Just means you have an error in your code, most likely not escaping the slash. :)

  3. mamaestes
    Member
    Posted 15 years ago #

    :) I am sure there's an error somewhere, but I've gone cross-eyed looking for it. Can someone suggest where to start? Otherwise, I may just lose the plugin....not worth the stress right now :-D

  4. dsader
    Member
    Posted 15 years ago #

    I'm not running the plugin, but looking at the code, and the description of your problem...

    Find
    <a href='http://" . $tmp_domain . $tmp_path . "'>
    change to
    <a href='http://" . $tmp_domain . $tmp_path . "/'>
    Also,
    <a href='" . $tmp_domain . "'>
    change to
    </a><a href='" . $tmp_domain . "/'></a>

    One of those may give you double the slashes, though.(VHOST or NOT)

  5. mamaestes
    Member
    Posted 15 years ago #

    Woot! That did it! Thank you so much for your help!

About this Topic

  • Started 15 years ago by mamaestes
  • Latest reply from mamaestes