The output-buffering tag has no wiki summary.
0
votes
1answer
45 views
C language: write to file without buffering [duplicate]
I have opened a file for writing some data to a file, but it keeps buffering and won't write anything to the file until the program ends. How can I skip the buffering process and write directly to the ...
0
votes
0answers
28 views
Output buffers, how to?
I am starting it at the top of the page..
ob_start('handler');
This runs through a list of functions which basically replaces things and then returns the buffer to the function handler.
I am ...
3
votes
1answer
29 views
Is it intentionally that php thinks there was some output after ob_end_flush() call?
This code:
ob_start();
ob_end_flush();
header('foo');
Throws warning
Warning: Cannot modify header information - headers already sent
while this:
echo '';
header('foo');
doesn't.
I don't ...
1
vote
2answers
121 views
Continue php script after connection close
I am trying to continue a PHP Script after the page/connection is closed.
Users will POLL the script in every 1 hour, I want to return some json output and want to continue the script in the ...
1
vote
1answer
16 views
Emulate PTY and output line-flushed stream [duplicate]
I'm looking for a way to trick a Linux program into thinking that it is connected to TTY so that output is line-buffered instead of block-buffered.
When I call the program directly inside the ...
0
votes
2answers
87 views
ob_start and include issue
Our website has been up for a couple of years and something has changed that's really strange. I've tried talking to the hosting but nothing gets resolved.
The issue is that the everything before ...
0
votes
2answers
93 views
PHP/HTML output: echo vs return, output buffering, and syntax highlighting challenges
I prefer to write html outside of php tags, so eclipse can display the html with proper syntax highlighting. The concatenation method is harder to write and doesn't highlight (see the two examples ...
1
vote
2answers
66 views
PHP, Apache. Output response to browser before script has finished
I have a script that pulls users from the DB, prepares an XMPP message, loops through each user and sends the XMPP message, then logs that the message was sent. Easily running through 1000 users plus. ...
1
vote
2answers
151 views
Playing back audio with a delay
currently i'm working on a project regarding "delayed auditory feedback" (DAF). Basically i want to record sounds from a microphone, delay it by a specific amount of time and then play it back. Using ...
0
votes
1answer
58 views
Prevent output buffering with PHP and Apache
I have a PHP script which sends a large number of records, and I want to flush each record as soon as it is available: the client is able to process each record as it arrives, it does not need to wait ...
0
votes
2answers
55 views
Multidimensional $_SESSION variables not being set before header redirect
I have a basic form submission script that sets multidimensional $_SESSION variables (2 levels) from a loop - then redirects using header location.
I developed this on my local machine (xampp/windows ...
0
votes
1answer
61 views
Why do I need to use many flushing functions to flush the output buffer (using wamp, PHP)
In wamp server, I cannot flush the output buffer unless I use these functions:
ob_end_flush();
ob_flush();
flush();
ob_start();
Why do I need to use all of these functions?
Why does simple ...
1
vote
1answer
229 views
php ini_set() changes don't take with safe mode off
I wanted to turn output buffering off. Currently it shows no value for local and master. I run ini_set('output_buffering',4092); and no changes in phpinfo(). Safe mode is off.
What's the next thing ...
0
votes
2answers
24 views
Output buffering, hierarchical?
Output buffering in PHP is fun. It simplifies many things. I use ob_start() at the top of the script and ob_get_clean() (or any other function) at the bottom.
Between those two calls is it possible ...
-1
votes
2answers
88 views
What is the benefit of passing a callback to ob_start compared to just processing the result of ob_get_clean()?
I am wondering if there is any real benefit to using this...
function getSomeContent() {
ob_start(function($content) {
// ... modify content ...
return $content;
}
// ... ...
0
votes
0answers
75 views
ob_flush() and flush() stops working
I enabled output buffering in my code. It was working fine till yesterday. But now it prints on page at the end of script not line by line. My code is like this but as per my script it takes long time ...
3
votes
2answers
83 views
Output buffering vs. storing content into variable in PHP
I don't know exactly how output buffering works but as far as know it stores content into some internal variable.
Regarding this, what is the difference of not using output buffering and storing ...
0
votes
1answer
41 views
Doing away with Output Buffering
My login script is something like this, usually included
on top of the login form:
<?php
if(isset($_POST['login']))
{
require_once("dbconfig.php");
$email=$_POST["username"];
...
1
vote
2answers
80 views
How do I cache and clear the output buffer in Perl?
I have the following PHP code which opens the output buffer, includes a file, stores it in a variable, and clears the buffer:
ob_start();
include('test.html');
$input=ob_get_clean();
How would ...
1
vote
1answer
116 views
Line-buffering of stdout fails on MINGW/MSYS Python 2.7.3
The problem is illustrated by this simple script:
import time, os, sys
sys.stdout = os.fdopen( sys.stdout.fileno(), 'w', 1 ) # line-buffer stdout
print 'before sleep'
time.sleep( 10 )
print 'after ...
-1
votes
3answers
91 views
Headers already sent?… Where? [duplicate]
Possible Duplicate:
Headers already sent by PHP
I keep getting this error in my log files:
[15-Jan-2013 00:50:04] PHP Warning: Cannot modify header information - headers already sent by ...
0
votes
1answer
86 views
PHP Output Buffer “Millenium” Bug?
I faced a strange issue today.
For several months I used buffer flushing in PHP to send small string sizes to the client without problems.
Today I returned to the project and it turned out that my ...
1
vote
0answers
93 views
SSE (Event Source) flush() PHP
At home, I'm trying to create a SSE Endpoint to use over website, true.
Then,I have the code fragment that's keeps request open, obviously (while( true )) ...
So then, I echo something and then use ...
0
votes
0answers
333 views
“headers already sent” Error returned during PHPUnit tests
I'm testing a suite of REST web services with PHPUnit. We're using output buffering in order to gzip-encode the responses. When I run a test for the service with PHPUnit, I'm getting the error:
...
0
votes
1answer
431 views
Php ob_get_contents fail
I am using ob_get_contents() to create a html file from php file. On development machine sometimes it works but on the test machine it did not work.
<html>
<body>
<div>
...
5
votes
1answer
137 views
ob_flush takes long time to be executed
In my website(running with drupal) the ob_flush function takes a long time(between 10 - 100 secs) to be executed. How do I find out why? What can cause this so long time?
1
vote
2answers
88 views
Test pass just when there's a single test method
If I comment out one of the tests bellow the test passes. However, running both together, the last one will fail (even if I change tests order):
Production code:
<?php
class View
{
private ...
2
votes
2answers
170 views
PHP output buffering (ob_start, ob_flush)
I used php output buffering earlier in order to create csv file from database, because i didn't want to create an existing file, just wanted to make content downloadable.
CSV is text-based file, so ...
3
votes
3answers
82 views
Python won't unbuffer print statements
I have the following program:
def main():
print "Running"
primes = sieve(100000)
print "Sieve is done"
def sieve(n):
print "starting sieve"
primes = []
times = 0
numbers ...
3
votes
5answers
78 views
How to prepend something to the beginning of the PHP output buffer?
How do you append something to the beginning of the output buffer?
For example, say you have the following code:
ob_start();
echo '<p>Start of page.</p>';
echo '<p>Middle of ...
0
votes
1answer
50 views
How to keep Ads from being called during a redirect?
On one of my class-based sites, everything is controlled via the index.php page, and every page is its own class that gets called via that index page.
In one of those classes lies both the logged-in ...
0
votes
2answers
172 views
ob_start output_callback can not access global variables
I'm currently using output buffering for some sort of header & footer automatization.
But I need to access global variables inside the output_callback function.
If I don't use class oriented code ...
0
votes
0answers
72 views
.Net equivalent to PHP's ob_get_contents()
How can I get the contents of the output buffer using ASP.NET / VB?
<%@ Page Language="VB" AutoEventWireup="false" %>
<%
Response.BufferOutput = true
%>
Hello
<%
...
3
votes
1answer
87 views
Looping on Output Buffers
I am seeing some behavior from ob_start() and ob_end_*() that seems very counterintuitive.
In the spirit of neatness, my algorithm is:
Open buffer
Do some things
Save the buffer to a string
Close ...
3
votes
1answer
485 views
Perl bidirectional pipe IPC, how to avoid output buffering
I am trying to communicate with an interactive process. I want my perl script to be a "moddle man" between the user and the process. The process puts text to stdout, prompts the user for a command, ...
0
votes
1answer
49 views
how can i find out if the php output already started? [duplicate]
Possible Duplicate:
PHP: how to know if output already started?
I would like to find out if there is already generated output in the buffer before I start the session.
In PHP, an output ...
0
votes
3answers
83 views
Webpage consistently didn't work the first time it was loaded. Why was output_buffering causing problems?
I want to share a problem I had, the fix I found and then ask a question about the reason behind the fix.
The problem
After upgrading to wampserver 2.2, one of my webpages consistently didn't work ...
3
votes
1answer
45 views
Is it a good practice to convert all non ssl references to ssl in a php page by str_replacing the- content in output buffer?
I needed to replace all the non ssl references in the html output of php. Is it a good practice to do it by doing a str_replace of the contents in the output buffer and flushing it out? Actually there ...
0
votes
1answer
232 views
How to use comet (disable output buffering in nginx, it works in apache normally but not nginx)?
I have a comet-driven chat script in my site
My Servers configuration is NGINX with PHP-FPM , I also have apache installed on different port.
When I try to run the chat script on Apache and I do ...
1
vote
6answers
219 views
PHP: Output buffer callback not altering output
I have an output buffer with callback function. When cleaning the buffer the callback function is executed, however, the string returned isn't being altered.
I'm using following code:
<?php
...
4
votes
1answer
88 views
Writing a large number of files from a long running process?
I have a project which scans a large file (2.5GB) picking out strings which will then be written to some subset of several hundred files.
It would be fastest just to use normal buffered writes but
...
1
vote
2answers
158 views
PHP __autoload not working within output buffer processing function
I have following dilemma:
ob_start('processBuffer');
function processBuffer($buffer){
$betterBuffer = SomeClass::doSomething($buffer);
return $betterBuffer;
}
function ...
2
votes
1answer
177 views
Output printed to terminal even with ob_start() on when script is executed from command line
I wrote a little command line script to process a document [a markdown file with lilypond musical notation inserts, just for completeness' sake].
#!/usr/bin/env php
<?php
$body = "";
...
// ...
0
votes
0answers
86 views
PHP Output Buffering with included files
I have one file will include other files depending on some conditions, One of these files needs to use output buffering so that the response can be returned to the browser and then some slow actions ...
-2
votes
1answer
100 views
making output buffer work
I have the following crazy snippet as a test ground for ob_start functionality.
ob_start();
for ($i = 1; $i <= 100000000; $i++) {
echo '<li>',$i, ' ',date("H:i:s");
...
1
vote
1answer
72 views
print statements only appearing before or after a subprocess call
This question is related to Python: why print statements and subprocess.call() output are out of sync? but the solutions are not working for my particular situation. I am trying to accomplish an ...
3
votes
1answer
150 views
'output buffering' in PHP for increasing page load time
For example lets take ob is not turned on . Everytime php engine faces echo it will return that thing to the browser right? So what I am thinking about ob is that collecting all data and not sending ...
6
votes
1answer
228 views
How to configure ob_tidyhandler dynamically?
The PHP tidy extension has a function ob_tidyhandlerDocs that works with PHP output bufferingDocs as a callback, e.g.:
ob_start('ob_tidyhandler');
I know that Tidy has a lot of configuration ...
2
votes
1answer
314 views
How to find why phpunit testsuite is too slow with xdebug?
At phpMyAdmin we suffer strange testsuite slowdown for some time. We've been able to trace the problems down to situation when xdebug is enabled (for code coverage) and there is an error inside ...
0
votes
2answers
147 views
Removing newlines from ob_get_clean() output
ok i do have this following codes
<?php
ob_start();
?>
codepad is an
online compiler/interpreter,
and a simple collaboration tool.
Paste
your code below,
and codepad wi
ll run
it and give ...






