|
All you have to do to see the config page is logout and log back in.
HOWEVER, it still doesn’t work:
This webpage has a redirect loop.
The webpage at http://store.com/report/?id=-1160861822&s;=default has resulted in too many redirects. Clearing your cookies for this site may fix the problem. If not, it is possibly a server configuration issue and not a problem with your computer.
EDIT: I isolated your problem down to getFeedData() in Entries.php , Line 90:
If you comment out ...
/* return $xml; */
... the error goes away, but it just says “The Twitter is empty”
EDIT 2: Ok, upon further investigation, it looks like a potential problem is that it is making a massive amount of calls to the Twitter API and getting throttled. If you “echo $data” at Line 101, you get this error on the front-end:
Rate limit exceeded. Clients may not make more than 100 requests per hour. /statuses/user_timeline/johnroa.rss
|