Page 1 of 1

[SOLVED] Calendar Details gets NOT FOUND

Posted: Mon Aug 09, 2010 1:09 pm
by Stryker777
I am using Mod Rewrite and everything else works but when I click to view details of a calendar event, I get not found.  Here is an example of what my URL looks like:
http://www.foo.bar/calendar/0/4-Title-Of-Item/

CMS Version 1.7.1
Calendar 0.8.2
HTACCESS:

Code: Select all

Options +FollowSymLinks
RewriteEngine on
DirectoryIndex index.php index.html
RewriteCond %{REQUEST_URI} !/$
RewriteCond %{REQUEST_URI} !\.
RewriteCond %{REQUEST_METHOD} !POST$
RewriteRule ^(.*) %{REQUEST_URI}/ [R=301,L]
RewriteCond %{QUERY_STRING} http\: [OR]
RewriteCond %{QUERY_STRING} \[ [OR]
RewriteCond %{QUERY_STRING} \] [OR]
RewriteCond %{QUERY_STRING} (\<|%3C).*script.*(\>|%3E) [NC,OR]
RewriteCond %{QUERY_STRING} GLOBALS(=|\[|\%[0-9A-Z]{0,2}) [OR]
RewriteCond %{QUERY_STRING} _REQUEST(=|\[|\%[0-9A-Z]{0,2})
RewriteRule ^.*$ – [F,L]
RewriteCond %{REQUEST_FILENAME} !-f [NC]
RewriteCond %{REQUEST_FILENAME} !-d [NC]
RewriteRule ^(.+)$ index.php?page=$1 [QSA]
Any advice?

Re: Calendar Details gets NOT FOUND

Posted: Fri Aug 13, 2010 5:30 am
by Stryker777
Anyone have any ideas?  I still have not figured it out.  Maybe I am just slow lol.

Re: Calendar Details gets NOT FOUND

Posted: Fri Aug 13, 2010 1:35 pm
by Stryker777
Solved:

"In admin panel go to Content → Calendar and click on the tab "Settings". Select in the drop-down field "Default page that contains Calendar" the page where your events are displayed."

This fixed it.