YetiForceCompany / YetiForceCRM

Our team created for you one of the most innovative CRM systems that supports mainly business processes and allows for customization according to your needs. Be ahead of your competition and implement YetiForce!
https://yetiforce.com
Other
1.72k stars 742 forks source link

[bug] In Yetiforce 5.1.0 version there is bug with output_buffering On 1 is defaults taking 1 if we set On in php.ini also please clarify this to fix due to this my installation is getting unsuccessful. #10656

Closed jaison-26 closed 5 years ago

jaison-26 commented 5 years ago

🐞 bug report

⁉️ Describe the bug

πŸ”₯ How to trigger the error

Steps to reproduce the behavior:

  1. Go to '...'
  2. Click on '....'
  3. Scroll down to '....'
  4. See error

πŸ‘Ž Actual Behavior

πŸ‘ Expected Behavior

πŸ“· Screenshot of configuration

πŸ“ PHP/Apache/Nginx/Browser/CRM Logs

🌍 Your Environment

Environment Version / Name
YetiForce
Web server (name and version)
PHP
Browser (name and version)
Operating System (name and version)
Database (name and version)

❓ Additional context

Add any other context about the problem here.

mariuszkrzaczkowski commented 5 years ago

Attach a screenshot that shows phpinfo, and check our ini file to see the correct settings https://github.com/YetiForceCompany/YetiForceCRM/blob/81b2b2f74d8ac8413921826f01317c87a72a6a5a/.user.ini#L8

waran70 commented 5 years ago

Does user.ini overriding php.ini settings (CLI, APACHE)?

mariuszkrzaczkowski commented 5 years ago

it depends on the server configuration

mariuszkrzaczkowski commented 5 years ago

check if you have correctly set up in php.ini Correctly output_buffering = "On" Incorrectly: output_buffering = On OR output_buffering = 1

HOSTED-POWER commented 4 years ago

Incorrectly: output_buffering = On

Any idea why this is incorrectly translated to 1? I would expect this to be really on and not converted to 1 by the parser :/

mariuszkrzaczkowski commented 4 years ago

https://www.php.net/manual/en/outcontrol.configuration.php

output_buffering boolean/integer You can enable output buffering for all files by setting this directive to 'On'. If you wish to limit the size of the buffer to a certain size - you can use a maximum number of bytes instead of 'On', as a value for this directive (e.g., output_buffering=4096). This directive is always Off in PHP-CLI.

HOSTED-POWER commented 4 years ago

Thanks a lot for your fast reply, unfortunately I read that numerous times and still don't understand what's wrong with just writing On instead of "On" :/

Off/On work for other settings as far as I know, normally "" aren't needed afaik