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

ADMIN loading screen remains forever


Go to End


12 Posts   6914 Views

Avatar
mhume

Community Member, 1 Post

30 November 2010 at 12:30pm

Wow thanks for solving this. Hopefully this won't cause any other problems. Can someone explain to me why a new install would have this issue? Is this a silverstripe bug or a problem specific to server configuration?

Avatar
SilverRay

Community Member, 167 Posts

30 November 2010 at 1:10pm

Avatar
DL

Community Member, 13 Posts

14 December 2010 at 3:23am

Edited: 14/12/2010 3:46am

I was having exactly the same problem with SilverStripe v2.4.3 as soon as I uploaded the site to my host (bluehost).
Following the link in the previous post (by silverRay above) and making the suggested change to /assets/.htaccess fixed it for me.

Open /assets/.htaccess

Change the line:

# Turn the PHP engine off
php_flag engine off

to:
<IfModule mod_php5.c> 
	# Turn the PHP engine off
	php_flag engine off 
</IfModule>

Avatar
Reggie

Community Member, 1 Post

27 January 2011 at 10:59am

Thank you D-L, and all previous posters. This solution is simple, and it works!

I had this problem using the one-click installation on GoDaddy v2.4.3. Glad to not have needed to search too hard for a solution.

Go to Top