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.

Installing SilverStripe /

Getting SilverStripe up and running on your computer and on your web server.

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

Get a loading error when launching CMS for first time


Go to End


1259 Views

Avatar
idorapark

Community Member, 1 Post

11 September 2011 at 9:53am

Trying SS for first time. Keep getting this error when I try to open the CMS:

[Warning] simplexml_load_file() [function.simplexml-load-file]: /home/equalitycoaching/public_html/main/sapphire/thirdparty/Zend/Locale/Data/en.xml:191: parser error : Input is not proper UTF-8, indicate encoding ! Bytes: 0xA0 0xBA 0x69 0x6E
GET /main/admin/

Line 146 in /home/eca/public_html/main/sapphire/thirdparty/Zend/Locale/Data.php

Source

137 // load locale file if not already in cache
138 // needed for alias tag when referring to other locale
139 if (empty(self::$_ldml[(string) $locale])) {
140 $filename = dirname(__FILE__) . '/Data/' . $locale . '.xml';
141 if (!file_exists($filename)) {
142 require_once 'Zend/Locale/Exception.php';
143 throw new Zend_Locale_Exception("Missing locale file '$filename' for '$locale' locale.");
144 }
145
146 self::$_ldml[(string) $locale] = simplexml_load_file($filename);