Ask Question Forum:
Model Library:2025-02-08:A.I. model is online auto reply
C
O
M
P
U
T
E
R
2
8
Show
#
ASK
RECENT
←
- Underline
- Bold
- Italic
- Indent
- Step
- Bullet
- Quote
- Cut
- Copy
- Paste
- Table
- Spelling
- Find & Replace
- Undo
- Redo
- Link
- Attach
- Clear
- Code
Below area will not be traslated by Google,you can input code or other languages
Hint:If find spelling error, You need to correct it,1 by 1 or ignore it (code area won't be checked).
X-position of the mouse cursor
Y-position of the mouse cursor
Y-position of the mouse cursor
Testcursor
caretPos
Attachment:===
Asked by audiotech520
at 2024-07-10 10:51:48
Point:500 Replies:3 POST_ID:828950USER_ID:10
Topic:
PHP Scripting Language;;
<b>WARNING:</b> Cannot modify header information - headers already sent by (output started at /home/user/public_html/plugins.inc.php:481) in line 1671 of file /home/user/public_html/common.inc.php
Can I add anything to my PHP.INI file to correct this?
Can I add anything to my PHP.INI file to correct this?
Expert: Dave Baldwin replied at 2024-07-10 12:29:13
What ever is in line 1671 probably needs to be in the first 10 lines or so before any browser output. If "common.inc.php" is an include file, then what ever it is may need to be in the first part of the main file.
Expert: Ray Paseur replied at 2024-07-10 11:09:58
Output buffering is one way that may fix the message, but there may be an underlying problem in the organization of the code. The message you're seeing usually occurs because there is a logic error that caused a setcookie() or session_start() command to be executed after the output was started. Sometimes the output can be started by accident. For an explanation of this, please see HTTP Headers Must Come First, Period in this article:
http://www.experts-exchange.com/Web_Development/Web_Languages-Standards/A_11271-Understanding-Client-Server-Protocols-and-Web-Applications.html
http://www.experts-exchange.com/Web_Development/Web_Languages-Standards/A_11271-Understanding-Client-Server-Protocols-and-Web-Applications.html
Accepted Solution
Expert: duncanb7 replied at 2024-07-10 10:59:02
500 points EXCELLENT
output_buffering = On
you can put this in php.ini for a try
Duncan
you can put this in php.ini for a try
Duncan