Bonjour.
Je ne peux pas mettre a jour Joomla car le dois désactiver ''Output Buffering ''.
Lorsque je vais sur filezilla , je ne trouve pas le fichier PHP.INI , afin de le modifier.
Comment puis je désactiver ''Output Buffering'' ?
Merci d'avance pour votre aide.
Jean Jacques
Bonjour @Jean_JacquesM3
Sur un hébergement mutualisé OVH il n'est pas possible de modifier le fichier php.ini.
Merci pour votre réponse.
Existe t il une autre solution afin de désactiver OUTPUT BUFFERING ?
Je ne sais pas. Je n'en ai jamais eu besoin.
Existe t il une autre solution afin de désactiver OUTPUT BUFFERING ?
J'ai cherché à votre place sur internet et j'ai trouvé ceci:
To set the output_buffering directive, follow these steps:
... edit the .htaccess file:
To enable output buffering and limit the buffer to a specific size, add the following line. Replace x with the maximum number of bytes you want to use for the output buffer:
php_value output_buffering x
To disable output buffering, modify the line as follows:
php_value output_buffering Off
Save the changes to the .htaccess file and exit the text editor.
To verify that the new setting is active, create a PHP test file that contains the following code in the same directory where the .htaccess file is located:
Load the test file in your web browser, and then search for the name of the directive.
The Local Value column should display the new setting that you specified in the .htaccess file.