sarapis / orservices

ORServices is an open source, smartphone-friendly directory application that enables you to collect, verify, organize and share information about social services in your community with your stakeholders, beneficiaries, partner organizations and more.
https://sarapis.org/human-services/orservices/
22 stars 16 forks source link

Error in clicking Account link #124

Closed royappa closed 6 months ago

royappa commented 6 months ago

Clicking on the "My account -> My account" link going to URL /account/3 gives this error:

ErrorException
unserialize(): Error at offset 0 of 222 bytes
...
Illuminate\Foundation\Bootstrap\HandleExceptions::handleError
app/Http/Controllers/AccountController.php:102
...
        $account->sidebar_widget = $account->sidebar_widget ? unserialize($account->sidebar_widget) : null;
royappa commented 6 months ago

Seems to be an issue with database seed data. The account_pages.sidebar_widget for row id=1 had a non-serialized data loaded by default. I serialized and updated as follows, now the Account page works. I'll close this issue.

mysql> update account_pages set sidebar_widget='s:222:"<iframe src="https://calendar.google.com/calendar/embed?src=fcrjsfqi6p3jpc3urerk77caig%40group.calendar.google.com&ctz=America%2FNew_York" style="border: 0" width="800" height="600" frameborder="0" scrolling="no"></iframe>";' where id=1;
Query OK, 1 row affected (0.00 sec)