<div dir="ltr">Thanks Don, your email showed me where to find out my error! But its a weird error, it wasnt recognizing my timezone. In local_settings I had changed:<div><br></div><div>TIME_ZONE = "US"</div><div><br></div><div> and it was failing. Changed it to "EST" and now all is good. Thank you very much for pointing me in the right direction!</div><div><br></div><div>Amit<br><div><br></div><div><br></div><div><br></div></div></div><div class="gmail_extra"><br><div class="gmail_quote">On Tue, Dec 2, 2014 at 6:43 PM, Don Waterloo <span dir="ltr"><<a href="mailto:don.waterloo@gmail.com" target="_blank">don.waterloo@gmail.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div dir="ltr"><br><div class="gmail_extra"><br><div class="gmail_quote"><span class="">On 2 December 2014 at 11:50, Amit Anand <span dir="ltr"><<a href="mailto:aanand@viimed.com" target="_blank">aanand@viimed.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left-width:1px;border-left-color:rgb(204,204,204);border-left-style:solid;padding-left:1ex"><div dir="ltr">Hi all,<div><br></div><div>Thank you all for your help earlier getting through my issues - it looks like I have more or less a functioning environment! I do have one error which Im getting and have no idea why as I do not see anything in /var/log/messages on why this is occurring. Basically when I click on "View Details" on an Object I get this popup error from the Dashboard:</div><div><br></div><div>"Danger: An error has occurred. Please try again later." (screenshot below)</div><div><br></div><div>But if I click on the View Details of the container all comes up fine. I can then take the URL and add the name of the file im trying to access and works just fine. Anyone have any ideas?</div><div><br></div></div></blockquote><div><br></div></span><div>I had this problem. the 'danger' is a bootstrap thing, an error has occured (e.g. a 500 error) on an ajax call.</div><div><br></div><div>for me, i turned on logging in horizon, and found that i was  </div><div><br></div><div><div>ERROR 2014-12-02 23:14:10,608 base 36395 140110630778624 Error while checking action permissions.</div><div>Traceback (most recent call last):</div><div>  File "/usr/lib/python2.7/dist-packages/horizon/tables/base.py", line 1234, in _filter_action</div><div>    return action._allowed(request, datum) and row_matched</div><div>  File "/usr/lib/python2.7/dist-packages/horizon/tables/actions.py", line 136, in _allowed</div><div>    self.allowed(request, datum))</div><div>  File "./openstack_dashboard/dashboards/project/networks/tables.py", line 94, in allowed</div><div>    if usages['networks']['available'] <= 0:</div><div>KeyError: 'available'</div></div><div><br></div><div>e.g. there was no key 'available' in the usages. usages['networks'] has only part of the quota. I modified the code to be</div><div>"        if 'networks' in usages and 'available' in usages['networks'] and usages['networks']['available'] <= 0:"</div><div>instead of</div><div>"        if usages['networks']['available'] <= 0:"</div><div><br></div><div>but u can find your specific problem by enabling the horizon logging.</div><div><br></div><div>I enabled logging as below in local_settings.py (/etc/openstack-dashboard/local_settings.py on Ubuntu).</div><div><br></div><div><div>LOGGING = {</div><div>   ...</div><div>        'file': {</div><div>            'level': 'ERROR',</div><div>            'class': 'logging.FileHandler',</div><div>            'formatter': 'verbose',</div><div>            'filename': '/var/log/horizon.log'</div><div>        },</div><div>    },</div></div><div><br></div></div></div></div>
</blockquote></div><br></div>