• Hey, this seems to be a pretty cool plugin. I’ve followed the instructions and everything seems to be running smoothly (i.e. adding events). However, I can’t figure out how to get to the calendar itself. When I goto URL/calendar, I get a Page Not Found error. I’ve also tried: (1) URL/wp01/calendar, (2) URL/wp01/wp-content/wp-calendar.php, (3) URL/wp01/wp-content/plugins/calendar.php. What am I doing wrong?

    NOTE: I’m using the default Permalinks structure (for a variety of reasons), but that should still be OK, correct?

    https://www.ads-software.com/extend/plugins/calendar/

Viewing 4 replies - 1 through 4 (of 4 total)
  • Thread Starter mokkie

    (@mokkie)

    Actually, ultimately, I want to simply embed the calendar into my blog (i.e. https://www.kieranoshea.com/calendar/2008/mar) instead of linking to it. Where would I find instructions for that? Thanks for any help.

    Thread Starter mokkie

    (@mokkie)

    Sorry for the flurry of posts . . . In the spirit of troubleshooting, I changed the permalink structure to something pretty, and updated my htaccess file accordingly (see below). Still no access to the calendar via URL/calendar path.

    HTACCESS CODE:
    # BEGIN WordPress
    <IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteBase /
    RewriteRule ^calendar/([^/.]+)/([^/.]+)/?$ wp-calendar.php?year=$1&month=$2 [QSA,L] RewriteRule ^calendar/?$ wp-calendar.php [QSA,L]
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule . /index.php [L]
    </IfModule>

    # END WordPress

    dumanchu

    (@dumanchu)

    I am having the same issue as the blog/calendar URL doesn’t do anything.

    andywheels

    (@andywheels)

    If you add the following to a page template it will display the calendar:

    <?php echo calendar(); ?>

    However, clicking on the prev/next month will fail with a 404 unless you have set the htaccess file correctly.

    It is a shame that this plug-in insists on the user using pre-defined pretty URLs. It would be a lot more friendly if the plug-in could be dropped into a page template.

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Calendar URL/Embedding Calendar’ is closed to new replies.