Skip to main content

This site requires you to update your browser. Your browsing experience maybe affected by not having the most up to date version.

We've moved the forum!

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.

General Questions /

General questions about getting started with SilverStripe that don't fit in any of the categories above.

Moderators: martimiz, Sean, Ed, biapar, Willr, Ingo, swaiba

?Flush=all is Not Working


Go to End


2 Posts   1262 Views

Avatar
anudeepgi

Community Member, 11 Posts

4 February 2014 at 7:11pm

Edited: 04/02/2014 7:11pm

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 .

Avatar
Bereusei

Community Member, 96 Posts

4 February 2014 at 10:40pm

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>