I have set up emoncms on a shared hosted server (1and1). The initial install seems fine. I was able to register a user and can create dashboards etc. so database working ok.
I have added a reporter to emonhub.conf and can see data is being added/updated in the mysql database table ‘input’, but when I go to the input view page nothing is showing. The Input page has changed from previously saying ‘no inputs’ .... but now only shows the ‘Inputs’ main title but there is no table/no data
Any ideas? Thanks
Answer was required timezone edit in php.ini
date.timezone = "Europe/Berlin"
Re: New emoncms install (shared host) - data in inputs database table ok but not showing in input view page
Required change to time zone in php.ini
date.timezone = "Europe/Berlin"
Re: New emoncms install (shared host) - data in inputs database table ok but not showing in input view page
Starting with PHP 5.3.0, date.timezone needs to be set. Might not be a bad idea for that bit of info to be added to the shared host setup docs.
The list of timezone strings supported by PHP is at: http://php.net/manual/en/timezones.php
Edit - pull request created.