Remember you can't log in as admin unless you are using ssl.
This is a sidebar. It will have content eventually.Edit sidebar
- Fix caja Trying to open a folder from Places in Ubuntu Mate 16.04 brings up office
Remember you can't log in as admin unless you are using ssl.
This is a sidebar. It will have content eventually.Edit sidebar
Suggested fix for name, value pairs in serializeArray in https://stackoverflow.com/questions/51856589/how-can-i-serializearray-with-a-structure-based-on-key-value
These are PHP examples.
array_combine(array_column($data, 'name'), array_column($data, 'value'));
Untested
Another suggestions also untested:
foreach($data as $i) { $newData[$i['name']] = $i['value']; }