output buffering

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • wrender
    Member
    Forum ExplorerTechnical Associate
    • Mar 2021
    • 68

    #1

    output buffering

    Hi

    how can we disable output buffering on a per user basis?
    We have noticed that output buffering is off be default on php 5.3, but its set to on with 5.4+
    Some of our joomla users complain about it being on.

    Thanks
  • bogdan.sh
    Administrator
    • Nov 2016
    • 1221

    #2
    If we are talking about PHP-Selector then you may try adding this directive to selector configuration and allow users to disable it. Try adding following to /etc/cl.selector/php.conf file:

    Code:
    Directive = output_buffering
    
    Default = On
    
    Type = bool
    
    Comment = Enable or disable PHP output buffering
    Then log into affected account and disable it from PHP-Selector > Options .

    Comment

    Working...