What to do? (Joomla 4 pages)

Zsolti
2 Posts
Zsolti posted this 10 July 2022

I installed the new template, the template manager says this after I log in: Call to a member function load() on bool
The website says: Sorry, there was a problem we could not recover from.
The server returned a "500 - Whoops, looks like something went wrong."

What to do? (Joomla 4 pages)

I installed the new template, the template manager says this after I log in: Call to a member function load() on bool The website says: Sorry, there was a problem we could not recover from. The server returned a "500 - Whoops, looks like something went wrong." What to do? (Joomla 4 pages)
Vote to pay developers attention to this features or issue.
1 Comments
Order By: Standard | Newest
peterklasen
1 Posts
peterklasen posted this 20 November 2022

First, you need to check the PHP version compatibility for your Joomla addition. It is a most common issue while installing Joomla. If you are installing Joomla with Nginx then check /etc/nginx/site-available/joomla.conf under this check PHP config code. please add this line according to your PHP compatibility

  location ~ \.php$ {
include snippets/fastcgi-php.conf;
fastcgi_pass unix:/run/php/php7.4-fpm.sock;

}
instead of php7.4, you can add your php version just like php8.0, php7.2,php7.3

First, you need to check the PHP version compatibility for your Joomla addition. It is a most common issue while installing Joomla. If you are installing Joomla with Nginx then check /etc/nginx/site-available/joomla.conf under this check PHP config code. please add this line according to your PHP compatibility location ~ \.php$ { include snippets/fastcgi-php.conf; fastcgi_pass unix:/run/php/php7.4-fpm.sock; } instead of php7.4, you can add your php version just like php8.0, php7.2,php7.3
You must log in or register to leave comments