Clicking the "edit" button links to a "page not found" error.
Permalink
As the subject said, clicking the "edit" button links to a "page not found" error. Sometimes editing will use a different link and I'll be able to access edit functions; however, when I click "update", a box comes up with another "page not found" error.
This is my first time working with C5, so please use file paths if you're talking about a certain file.
Thank you!
This is my first time working with C5, so please use file paths if you're talking about a certain file.
Thank you!
Yeah, I tried that. Here's my .htaccess file:
<IfModule pagespeed_module> ModPagespeed off </IfModule> # -- concrete5 urls start -- <IfModule mod_rewrite.c> RewriteEngine On RewriteBase /doughertysrestaurant.com/ RewriteRule ^(default.htm)/?$ index.php RewriteRule ^(default.html)/?$ index.php RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule ^.*$ index.php/$1 [L] </IfModule> # -- concrete5 urls start -- <IfModule mod_rewrite.c>
Viewing 15 lines of 22 lines. View entire code block.
Try to delete one of the following rewrite codes from your .htaccess file
or
And see if it works
# -- concrete5 urls start -- <IfModule mod_rewrite.c> RewriteEngine On RewriteBase / RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule ^(.*)$ index.php/$1 [L] </IfModule> # -- concrete5 urls end --
or
<IfModule mod_rewrite.c> RewriteEngine On RewriteBase /doughertysrestaurant.com/ RewriteRule ^(default.htm)/?$ index.php RewriteRule ^(default.html)/?$ index.php RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule ^.*$ index.php/$1 [L] </IfModule>
And see if it works
Sorry, it didn't work.
When I click "edit page" at the top of my site, it takes me to a link likehttp://mysite.com/index.php?cID=1&ctask=check-out&ccm_token... and says "Page Not Found".
When I click "edit page" at the top of my site, it takes me to a link likehttp://mysite.com/index.php?cID=1&ctask=check-out&ccm_token... and says "Page Not Found".
Hope this will help you. If not then there might be some problem with .htaccess
Rony