user123456
user123456

Reputation: 11

How fix "Error: Failed to start application: Error starting the session."

I install joomla 3.9.11 on iis and my database in sql server. But when I want to open this site show the following error: "Error: Failed to start application: Error starting the session." How can I fix this?

Upvotes: 1

Views: 13126

Answers (2)

Aleksey Vaganov
Aleksey Vaganov

Reputation: 501

Set the $session_handler = 'database' in /configuration.php and check database connection

Upvotes: 0

Jalpa Panchal
Jalpa Panchal

Reputation: 12789

check that you installed below Extention in iis:

PHP

IIS URL Rewrite

MySQL

after installing all the extentions you need to convert .htaccess URL rewrite rule into iis URL rewrite rule.

1)open iis manager.

2)select your Joomla site or application.

3)select URL rewrite from the middle pane.

4)in URL rewrite module windows select import rules from the cation pane.

enter image description here

5)now click on three dots(...) and select your .htaccess file, then click on import and apply these changes.

enter image description here

then restart the iis.

the reason behind this error has something misconfiguration in your configuration.php file, a problem with your PHP version, or with your database itself.

log in to PHPMyAdmin and check your maximum database size limit.

Upvotes: 0

Related Questions