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.

Blog Module /

Discuss the Blog Module.

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

Can't Create Blog Pages In Google Chrome 5?


Go to End


16 Posts   4890 Views

Avatar
Scott Farmer

Community Member, 49 Posts

23 July 2011 at 9:44am

Hi June,

You need to turn on all error reporting to see errors. Add these two lines to your mysite/_config.php file:

Director::set_environment_type("dev");
error_reporting(E_ALL);

And add this line to the .htaccess file in the root of your install:
php_value display_errors On

Good news is the front end works fine, so if you are logged in you can post new and edit existing blogs.

And works fine on my production server.

I'm using a mac, so I just renamed new install to mamp_new and renamed old install back in place. I saved a copy of old install when I upgraded.

Hope that helps.

Regards
Scott

Avatar
juneallison

Community Member, 110 Posts

24 July 2011 at 5:38am

Scott - This is very helpful, thanks! I'll let you know when I get it sorted out.

thanks again!

Avatar
Scott Farmer

Community Member, 49 Posts

27 July 2011 at 10:37am

No troubles at all, hopefully all sorted for you now.

Regards
Scott

Avatar
juneallison

Community Member, 110 Posts

4 August 2011 at 7:39am

Scott - I haven't had a chance to check the errors or modify my MAMP installation but I did upload the site to a demo server. And it works fine there. I noticed that MAMP enables PHP 5.3.5 by default. Did you try switching to 5.2 before downgrading MAMP? My demo site is running 5.2 so I'm wondering if it might be a conflict with the latest version of PHP...

Avatar
Scott Farmer

Community Member, 49 Posts

4 August 2011 at 9:41am

Hi June,

Never thought of that! Can confirm changing php back to 5.2.17 fixes the problem. So must be something to do with new php version. Problem solved, kinda :-)

Regards
Scott

Avatar
juneallison

Community Member, 110 Posts

4 August 2011 at 9:45am

Excellent! Kind of :) ... so then is it safe to say this is a bug that should be reported?

Avatar
Scott Farmer

Community Member, 49 Posts

4 August 2011 at 9:53am

Not had time to dig deep into this, but I'd say it is something to do with the thirdparty sapphire zend framework. See this link. http://framework.zend.com/download/latest

Yes should be reported.

Regards
Scott

Avatar
catcher

Community Member, 5 Posts

4 August 2011 at 11:57am

Lifesavers. PHP 5.2 in same MAMP version did the trick for me too.

Go to Top