Blank Calendar if not Today

aperezcrespo wrote on Tuesday, February 17, 2015:

Just upgraded from 4.1.0(10) to 4.1.2(7)
All future or past calendar views are blank.
Everything else is ok
Ran all sql_upgrade.php from 410 to 412
Checked Cache and Compiled for rights and cleared them out.

Ubuntu 13.10
MySQL version 5.5.37
Apache version 2.4.6
PHP 5.5.3

Thanks

fsgl wrote on Tuesday, February 17, 2015:

Error logs?

aperezcrespo wrote on Wednesday, February 18, 2015:

No Calendar functions except for add appointments, change calandar view Day,Week, Month) otherwise it is just blank.
Administration->Calendar none work.
Did a fresh install of Saucy (13.10) and installed with the deb.
Same results.
Made sure the proper tz in php.ini was correct (Even did the test as per the wiki)

Cant find anything in the apache error log file related to this.
The only items in the log file is anything prior to anything I do to the calendar.
Tried with Firefox and Chrome, Both locally and remotely.

aperezcrespo wrote on Wednesday, February 18, 2015:

Its SSL Related
I disactivated SSL and it started working just fine.
Not niceā€¦
Any thoughts?

fsgl wrote on Wednesday, February 18, 2015:

So, not a permission problem as described here.

Time for research on SSL.

fsgl wrote on Wednesday, February 18, 2015:

Although the following may not be the exact solution, perhaps it will spark a light bulb to turn on.

Is it possible that parent permissions are overly restrictive as described here?

Are the permissions for the certificate too restrictive? See this.

ajperezcrespo wrote on Wednesday, April 29, 2015:

Not a permissions issue. It turns out to be a mixed content problem. I am getting HTTP when clicking on the small calendar next to the day agenda. Browser complains (Small item on address bar) and simply does not show selected day (Also Tested on Ubuntu 14.04).
Any Thoughts?

fsgl wrote on Wednesday, April 29, 2015:

Does a review of this setup page reveal any departures?

ajperezcrespo wrote on Thursday, April 30, 2015:

If I right-Click on a date on the calendar and select This Frame-> View Frame Source. See attached file follow the Double*

ajperezcrespo wrote on Thursday, April 30, 2015:

I just reviewed this. At this point it is no longer a blank calander. At this point everything works except the calandar widget next to the calendar and Administration->Calendar. I simply cannot select a differnent day or do calendar functions.
PostCalendar Module seems to be culprit.

fsgl wrote on Thursday, April 30, 2015:

Second setup script:

 <VirtualHost *:80>
 # To enforce https
 DocumentRoot "/var/www/html/example/"

 <Directory "/var/www/html/openemr/">
 #The following rewrite just forces everything to https!!!
 RewriteEngine On
 RewriteCond %{HTTPS} off
 RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI}
 </Directory>

 </VirtualHost> 

Ubuntu 14.04 moved location of document root from var/www to var/www/html.

Any bearing on the Calendar problem?