Solved Strange: FC 4.5.1 empty in frontend

mennoswaak

New Member
Very strange: on my windows 11 computers and on android newest Full calender Viz doesn't show any of the records.
This is in firefox, Opera and chrome
But on my old Windows 10 computer Firefox does display the records, but Edge doesn't

Someone else with this problem? Is FC 4.5.1 working for you?

menno
 
Which Fabrik version? You need the newest 4.5.
Any JS errors in your browser console?

It's working with Window10 and Edge here.
 
two sites: both J5.2..2 F4,5 FC 4.5.1 PhP 8.2.26
One site does not have any problem
The other site does not display records in FC on my 2 Windows 11 computers except for some rare occasions. I played with different templates but no succes. Same on my smartphone.
But it does display on my Windos 10 computer.
Is going back to FC 4.3.9 an option?
 
Is going back to FC 4.3.9 an option?
You can't install FC 4.3.9 over FC 4.5 because the parameter structure has changed.
You would have to restore the 4.3.9 params.

But you say it works on one of your sites and it works for others so it seems to be related to your site.

An JS errors in your browser console?

Do you have a link?
 
This is the link:

Windows 10 no JS errors
Windows 11 quite some errors
I can't read them through shortage of knowledge
 
Now it is getting weird.
When I click the link in the previous message everythings works fine.
The difference comes from the www in the link or missing in the link.

So I have to find a way to in the joomla settings to force to add www
No idea yet so i have to dig deeper
Thanks for your help so far
 
Perhaps you could share what the rewrite was for others if they run into the same issue. Thanks,
 
from Joomla.org site:
adding-www-to-a-url
How do I get www as a prefix in all my Joomla! sites?

Add the following to your .htaccess file:

RewriteEngine On
RewriteCond %{HTTP_HOST} !^(www\.example\.com)?$
RewriteRule (.*) http://www.example.com/$1 [R=301,L]

A more complete solution fixing several other canonicalisation issues at the same time:

RewriteEngine On
#
RewriteCond %{THE_REQUEST} ^[A-Z]{3,9}\ /([^/]+/)*index\.html?\ HTTP/
RewriteRule ^(([^/]+/)*)index\.html?$ http://www.example.com/$1 [R=301,L]
#
RewriteCond %{THE_REQUEST} !^POST
RewriteCond %{THE_REQUEST} ^[A-Z]{3,9}\ /([^/]+/)*index\.php\ HTTP/
RewriteCond %{SERVER_PORT}>s ^(443>(s)|[0-9]+>s)$
RewriteRule ^(([^/]+/)*)index\.php$ http%2://www.example.com/$1 [R=301,L]
#
RewriteCond %{HTTP_HOST} !^(www\.example\.com)?$
RewriteRule (.*) http://www.example.com/$1 [R=301,L]
--
I only used the upper part. It solved my problems with FC but also in Acymailing the email editor not showing the icons.
 
Back
Top