Advertisement
Installing Joomla 4 and set Display Errors
Moderator: General Support Moderators
Forum rules
Forum Rules
Absolute Beginner's Guide to Joomla! <-- please read before posting, this means YOU.
Forum Post Assistant - If you are serious about wanting help, you will use this tool to help you post.
Windows Defender SmartScreen Issues <-- please read this if using Windows 10
Forum Rules
Absolute Beginner's Guide to Joomla! <-- please read before posting, this means YOU.
Forum Post Assistant - If you are serious about wanting help, you will use this tool to help you post.
Windows Defender SmartScreen Issues <-- please read this if using Windows 10
-
- Joomla! Apprentice
- Posts: 49
- Joined: Mon Nov 24, 2008 8:49 am
Installing Joomla 4 and set Display Errors
I'm trying to install Joomla 4, but I can't set off Display Errors setting (look attachment joomla.jpg).
In PHP.INI is that field 'Off' (look attachment php.jpg).
How to turn off that?
In PHP.INI is that field 'Off' (look attachment php.jpg).
How to turn off that?
You do not have the required permissions to view the files attached to this post.
Advertisement
-
- Joomla! Champion
- Posts: 6460
- Joined: Tue Aug 23, 2005 1:56 pm
- Location: South coast, UK
- Contact:
Re: Installing Joomla 4 and set Display Errors
Ignore it, joomla will run fine like that.
https://gadsolutions.biz Electrical services
https://electrical-testing-safety.co.uk Testing services
https://electrical-testing-safety.co.uk Testing services
- AMurray
- Joomla! Master
- Posts: 10356
- Joined: Sat Feb 13, 2010 7:35 am
- Location: Australia
Re: Installing Joomla 4 and set Display Errors
but won't it will display PHP errors - not ideal..... the other related setting is "error_reporting" in php.ini should have a setting of "default" or something like that.
What server are you on - a local server (like XAMPP or WAMPServer) or your web hosting? You should be able to check on your live host, the php settings in cPanel. If this is a localhost, did you restart the web server services?
What server are you on - a local server (like XAMPP or WAMPServer) or your web hosting? You should be able to check on your live host, the php settings in cPanel. If this is a localhost, did you restart the web server services?
Regards - A Murray
General Support Moderator
General Support Moderator
-
- Joomla! Apprentice
- Posts: 49
- Joined: Mon Nov 24, 2008 8:49 am
Re: Installing Joomla 4 and set Display Errors
Yes, I did like that, but I want to know what is happening
I'm on local server XAMPP. Yes, I restart web server services.AMurray wrote: ↑Thu Oct 24, 2024 9:54 am but won't it will display PHP errors - not ideal..... the other related setting is "error_reporting" in php.ini should have a setting of "default" or something like that.
Look at attachments, how to set up this "error_reporting"?
What server are you on - a local server (like XAMPP or WAMPServer) or your web hosting? You should be able to check on your live host, the php settings in cPanel. If this is a localhost, did you restart the web server services?
You do not have the required permissions to view the files attached to this post.
- toivo
- Joomla! Master
- Posts: 17927
- Joined: Thu Feb 15, 2007 5:48 am
- Location: Sydney, Australia
Re: Installing Joomla 4 and set Display Errors
@jumler1, are you editing the right php.ini file, for example c:\wamp64\bin\apache\apache2.4.58.1\bin\php.ini?
Click the Wampserver icon in the System Tray, select PHP from the Wampserver menu, then select php.ini [apache module] from the PHP menu and edit that php.ini file using Notepad++ or your default text editor.
Click the Wampserver icon in the System Tray, select PHP from the Wampserver menu, then select php.ini [apache module] from the PHP menu and edit that php.ini file using Notepad++ or your default text editor.
Toivo Talikka, Global Moderator
-
- Joomla! Apprentice
- Posts: 49
- Joined: Mon Nov 24, 2008 8:49 am
Re: Installing Joomla 4 and set Display Errors
Yes, I am editing right php.ini (see attachment).toivo wrote: ↑Fri Oct 25, 2024 3:41 am @jumler1, are you editing the right php.ini file, for example c:\wamp64\bin\apache\apache2.4.58.1\bin\php.ini?
Click the Wampserver icon in the System Tray, select PHP from the Wampserver menu, then select php.ini [apache module] from the PHP menu and edit that php.ini file using Notepad++ or your default text editor.
You do not have the required permissions to view the files attached to this post.
- toivo
- Joomla! Master
- Posts: 17927
- Joined: Thu Feb 15, 2007 5:48 am
- Location: Sydney, Australia
Re: Installing Joomla 4 and set Display Errors
Oops, my mistake. You are using XAMPP, not Wampserver.
Check if the main Joomla folder has its own php.ini file or maybe even a file called .user.ini.
Check also the main Joomla folder if it has an .htaccess file. It may contain a statement like:
Check if the main Joomla folder has its own php.ini file or maybe even a file called .user.ini.
Check also the main Joomla folder if it has an .htaccess file. It may contain a statement like:
Code: Select all
php_flag display_errors On
Toivo Talikka, Global Moderator
-
- Joomla! Apprentice
- Posts: 49
- Joined: Mon Nov 24, 2008 8:49 am
Re: Installing Joomla 4 and set Display Errors
Unfortunately, there is none of that.toivo wrote: ↑Fri Oct 25, 2024 4:16 am Oops, my mistake. You are using XAMPP, not Wampserver.
Check if the main Joomla folder has its own php.ini file or maybe even a file called .user.ini.
Check also the main Joomla folder if it has an .htaccess file. It may contain a statement like:Code: Select all
php_flag display_errors On
-
- Joomla! Fledgling
- Posts: 1
- Joined: Thu Dec 05, 2024 7:01 am
Re: Installing Joomla 4 and set Display Errors
When installing Joomla 4, ensure your server meets the minimum requirements, including PHP version and database support. Once installed, you can enable error display for debugging by accessing the configuration.php file in the Joomla root directory. Set public $error_reporting = 'maximum'; and public $display_errors = '1';. This will help in troubleshooting any issues during development. Remember to disable error display on live sites for security reasons!
Advertisement