When i try to 'flush=all' This error comes
"Not Found
The requested URL /ren_ss/flush=all was not found on this server."
Please help .
This site requires you to update your browser. Your browsing experience maybe affected by not having the most up to date version.
Please use forum.silverstripe.org for any new questions
(announcement).
The forum archive will stick around, but will be read only.
You can also use our Slack channel
or StackOverflow to ask for help.
Check out our community overview for more options to contribute.
When i try to 'flush=all' This error comes
"Not Found
The requested URL /ren_ss/flush=all was not found on this server."
Please help .
First check, if you use the right Url: http://www.mywebsite.de/?flush=all
Secoond: Check your .htaccess if you have the right path at RewriteBase:
<IfModule mod_rewrite.c>
SetEnv HTTP_MOD_REWRITE On
RewriteEngine On
RewriteBase '/myfolder/mysubfolder'
RewriteCond %{REQUEST_URI} ^(.*)$
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_URI} !\.php$
RewriteRule .* framework/main.php?url=%1&%{QUERY_STRING} [L]
</IfModule>