Mutt
Professional
- Messages
- 1,056
- Reaction score
- 643
- Points
- 113
Some people might ask:
Why do i need this and is this really important?
The quick is:
Yes it's important, because you might face some issues.
Well which issues are am talking about?
For example some people maybe faced that Cannot modify headers, already sent...blabla. I fixed this issue through the following tutorial!
LOGIN TO YOUR CPANEL
SCROLL DOWN UNTIL YOU SEE SOFTWARE, CLICK HERE MULTIPHP INI EDITOR
YOU CAN CHOOSE BETWEEN YOUR DOMAINS
CLICK ON EDITOR MODE
CHOOSE YOUR DOMAIN.
DON'T CHOOSE HOME DIRECTORY ONLY CHOOSE THE CORRECT DOMAIN WHERE FOR EXAMPLE THE WEBSITE / SCAMPAGE WILL HOSTED
WRITE YOUR PHP INI SETTINGS FOR EXAMPLE I ENABLE OUTPUT BUFFERING TO HANDLE THE CANNOT MODIFY HEADER WARNINGS.
A FULL DOCUMENTATION ABOUT INI SETTINGS CAN BE FOUND HERE:
documentation.cpanel.net
FINALLY CLICK SAVE AND OPEN YOUR DIRECTORY (FILEMANAGER)
CREATE A NEW FILE AND CALL IT WHATEVER YOU WANT. FOR EXAMPLE I CALL IT INDEX.PHP
EDIT YOUR INDEX.PHP AND PASTE FOLLOWING CODE:
OPEN YOUR MAIN DOMAIN FOR EXAMPLE TUTORIALSZONE.DYNMAIC-DNS.NET AND THEN MAKE SURE YOU HEAD OVER TO THE INDEX.PHP FILE.
SEARCH FOR output_buffering, THE VALUE SHOULD BE 1 BECAUSE WE ENABLED IT.
Why do i need this and is this really important?
The quick is:
Yes it's important, because you might face some issues.
Well which issues are am talking about?
For example some people maybe faced that Cannot modify headers, already sent...blabla. I fixed this issue through the following tutorial!







A FULL DOCUMENTATION ABOUT INI SETTINGS CAN BE FOUND HERE:
cPanel & WHM Developer Portal
With its world-class support and rich feature set, cPanel & WHM has been the industry-leading web hosting platform for over 20 years. Trusted worldwide by our technology partners WordPress, CloudLinux, LiteSpeed, and more.

FINALLY CLICK SAVE AND OPEN YOUR DIRECTORY (FILEMANAGER)


Code:
<?php
phpinfo();

SEARCH FOR output_buffering, THE VALUE SHOULD BE 1 BECAUSE WE ENABLED IT.