ob_start is a PHP function which turns output buffering on. While output buffering is active no output is sent from the script (other than headers), instead the output is stored in an internal buffer.

learn more… | top users | synonyms

0
votes
1answer
33 views

Email doesn't contain first few lines got by output buffer php

I have a php script containing a function which when run gives output. I am using that output as output buffer by using ob_start and ob_get_clean functions and emailing that output which contains some ...
0
votes
2answers
33 views

ob_start() works fine in local but giving error on hosting

I am using PHP addressbook for an web application with some additional features. Everything works fine when I tested it in my local machine using Xampp but when I hosted it in a online webserver it ...
0
votes
0answers
32 views

Ruby on Rails ob_start to remove HTML line break?

When using PHP in a simple HTML page like: <html> <head> </head> <body> </body> </html> I could use ob_start() and ob_end_flush() and then ...
0
votes
0answers
14 views

Emailing php output

I have built a jquery mobile form that submits to a php file. I want the following php output to also have the option of emailing it to the user. <?php $DCity=$_GET["DCity"]; ...
2
votes
1answer
25 views

ob_start echo's strings out still

I'd like it if ob_start() didn't let echo's output to their normal destination and just log their contents instead. But it doesn't seem to be doing that. Any ideas? Here's my code: <?php ...
0
votes
3answers
45 views

Parallel processing in PHP?

My website has source pages that use ob_start() and $content = ob_get_clean(). Inside them I'm using a function multiple times that uses curl and bing to translate words/phrases into a specified ...
1
vote
2answers
45 views

is what i'm trying to do with ob_start() possible?

I'm new to php and trying to create a simple script.. but I don't know if what i'm trying to do is possible with ob_start() please let me know, thanks. here is my code: <?php ob_start(); ...
2
votes
1answer
30 views

Code for attaching an image created from data to an e-mail and sending works in the test.php file but not in my main object function. What is wrong?

My php file gets passed image/png data and needs to attach it to an e-mail and send said e-mail. Here is working code from a test file: <?php include("include.php"); $subject = "Laptop Collection ...
0
votes
0answers
43 views

Few problems at the same time, PHP

I'm working on one website but i'm confused. <?php ob_start("ob_gzhandler"); session_start(); define('FORUM_ROOT', 'forum/'); require FORUM_ROOT.'include/common.php'; // Where will we go after ...
0
votes
1answer
44 views

Strange behavior ob_start. Kohana

Firstly I'm sorry for my bad english. So on localhost all well and good, but on web server displays incomprehensible numbers with symbols, for example 326e. It seems to have found a problem spot .. ...
0
votes
0answers
17 views

Woo Commerce Buffering actions and using them in function

I have been playing around with WooCommerce and now I am stuck in a strange issue. WooCommerce follows a rigid pattern of actions for its shopping page, so for each product before_loop_item actions ...
2
votes
1answer
155 views

ob_start Caching CSS

I'm using this php code to cache css files into a middle own CMS. <?php ob_start("ob_gzhandler"); ob_start("compress"); header("Content-type: text/css; charset: UTF-8"); header("Cache-Control: ...
0
votes
1answer
52 views

How to get scripts output and process in another script in PHP using ob_start?

OK look: What I want to do is the following (this is an example): $output = require( "script_execution.php" ); echo str_replace( "hello", "bye", $output ); The solution I have: ...
0
votes
2answers
113 views

php curl memory usage

I have this function that gets the html from a list of pages and once I run it for two hours or so the script interrupts and shows that memory limit has been exceeded, Now i've tried to unset/set to ...
0
votes
3answers
56 views

ob_end_clean modifies variables as well

Here is a sample code: ob_start(); include("test.ini"); $string = ob_get_contents(); echo "<br/>"; echo "string: ".$string; and the output: testing = ini string: testing = ini When I add ...
0
votes
2answers
64 views

min-height CSS property doesn't work while buffering output with PHP ob_start()

I'm actually working on a PHP project using MVC structure, including DOCTYPE & HEAD tag via a single file during an output buffering using ob°start(). The problem comes when i wanna declare a ...
-1
votes
1answer
272 views

PHP Session doesn't get read in next page after login validation, Why?

I have a web site and when my users login it takes them to verify.php (where it connects to the DataBase and matches email and password to the user input ...
0
votes
0answers
69 views

PhpBB and ZendFramework integration

I have ZF application and a PhpBB forum in the inner folder. Forum pages should contain some dinamic data from zf. So I stayed a zf layout and views/scripts/forum/index.phtml: <?php echo ...
3
votes
3answers
204 views

Email function using templates. Includes via ob_start and global vars

I have a simple Email() class. It's used to send out emails from my website. <? Email::send($to, $subj, $msg, $options); ?> I also have a bunch of email templates written in plain HTML ...
0
votes
1answer
54 views

How can I deactivate ob_start('gz_handler') during the same session?

In my php project I'm using ob_start('gz_handler'); at the start of every page. But when it comes to downloading zip files I'm getting problems with some browsers. So I need to deactivate it just ...
-1
votes
2answers
66 views

What method should I use for later set a variable and then echo the page title

I'm trying to avoid to query my database twice: for set <title> attribute and also for echo the page title. I want to query it just one time: Example: <html> <head> <?php ...
2
votes
2answers
167 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 ...
0
votes
1answer
117 views

PHPMailer Not Sending Emails - Am I missing something simple?

I am using PHPMailer to send HTML emails. I first set the HTML body of the email using HTML and PHP variables after first calling ob_start. Here's my code: <?php ob_start(); ?> ..... a bunch ...
0
votes
1answer
103 views

Refresh page after the background script is done

I am using ob_ to do some background processing $buffer = ob_get_contents(); header("Connection: close"); ignore_user_abort(true); ob_start(); echo $buffer; $size=ob_get_length(); ...
0
votes
3answers
107 views

How to break ob_start() and continue after some tags

I want to build a cache system for a e-commerce platform. I've choosed to use ob_start('callback') and ob_end_flush() at the end of the page. I will verify if there is any .cache file created for ...
0
votes
2answers
797 views

how to create a progress bar using php output buffering and jquery?

how to create a progress bar using php output buffering and jquery? i been searching this for weeks, i am desperate to learn this, this is a very big help for me, is someone the here share some ...
0
votes
1answer
262 views

Using foreach loop, how can we echo data with ob_start()

We have designed a Progress bar, using Jquery Ui. we need a program that can deliver data in numeric value. That code is not working PHP CODE <?php ob_start(); $array = ...
0
votes
2answers
81 views

PhP Headers and output buffering

So... if you have a script that states something like so... while($result = mysql_fetch_array($resource)) { if($result['TITLE'] == $this->title) { header("LOCATION: ...
-1
votes
1answer
121 views

php - ob_start / fputs suddenly doesn't work anymore, is there anything that can stop it? [closed]

My code: function log_this($to_log, $prepend = null){ ob_start(); $fn = '../info.log'; $fp = fopen($fn, 'a'); fputs($fp, "\r\rnew log -------- \r\r"); ...
0
votes
3answers
486 views

How to redirect with header location in php when using ob_start?

<?php ob_start(); echo "<body><p>Hello " if ($condition) { header( "Location: http://www.google.com/" ); exit; } echo " World!</p></body>"; ob_end_flush(); ?> ...
1
vote
1answer
242 views

Ajax broken by Wordpress warnings: solve trough ob_start()?

I am writing a plugin for WordPress. My goal is make it work for everyone. Some pages use ajax responses. Some users have activated the WP_DEBUG constant that shows errors and warnings from themes and ...
0
votes
1answer
73 views

Call ob_start inside loop [closed]

I use this code to get news from xml files and process them. As I use external template for news I send each news data to template file, and concat code. Problem is that I get output from just first ...
0
votes
1answer
153 views

People are downloading corrupted PDF's from my website

I'm currently working on a website I did not personally developped. It's is wordpress based, but a lot of developement had been made to it by external people. We have a problem with some pdf's. When ...
0
votes
2answers
549 views

ob_start /ob_get_clean to Email html php content/results

I'm sure there are other better methods that I'm unaware of- just trying to take the simplest approach. Will post additional code as needed: Selection php results from previous page: ...
2
votes
2answers
391 views

PHP - nested output buffering

I have function that has : ob_start(); //Include of some files $content = ob_get_contents(); ob_end_clean(); Now in those includes is another function that uses the same code, and they seem to ...
0
votes
1answer
150 views

Can PHP error_log function generate a fatal error inside buffer?

Well... This is my case: I'm developing a framework and I'm current developing the error handling feature. I want handle error handling errors too! Well... explaining better: If I have an error, fatal ...
0
votes
2answers
90 views

PHP ob_start skeleton only working first time

I have browsed around the suggested titles and found some answers but nothing that really worked, and so I turn to you... I have a function that uses ob_start() to call a file from which the contents ...
5
votes
3answers
622 views

PHP ob_start vs opcode APC, explain differences and real world usage?

Premise: I'm not trying to reinvent the wheel, I'm just trying to understand. PHP caching can be implemented with something of really simple like this: //GetFromMyCache returns the page if it finds ...
1
vote
3answers
498 views

Is it possible to use php tags inside ob_start buffer?

I am trying to make complex template library. The thing is that I am holding my own syntax and php inside the same file as mixed. First my syntax is parsed and reformatted. Output is usual html + ...
3
votes
2answers
317 views

What do ob_start and ob_gzhandler functions really do

I know that ob_start turns on output buffering, but I don't fully understand what it means. To me it means that it just stops outputting the script data. Is this true? How does the browser output ...
0
votes
1answer
2k views

codeigniter export to excel works well on localhost, errors on server

This is the code of my export_to_excel helper: function export_to_excel($query, $filename='exceloutput') { $headers = ''; // just creating the var for field headers to append to below $data = ...
0
votes
1answer
223 views

How can i redirect console output in real-time on PHP?

How can i redirect console output in real-time on PHP? When i use ob_start() function, it stores outputs in buffer, and calling ob_end_flush() the stored outputs are out. But.. i want to redirect ...
0
votes
3answers
397 views

Set cookie after output without ob_start

I'm guessing not, but is there a way to set a cookie in PHP without having to put ob_start() at the start of the output? My problem is, that I am developing a class, which among others, needs to set ...
0
votes
2answers
397 views

ob_start() is printing outputs without ending of ob_get_flush()

Is there anything i am doing wrong in the following code. Ob_start should buffer the output right and it should not print it before you flush. But it is doing that <?php echo "Hello World!"; ...
0
votes
1answer
832 views

PHP ob_start called twice, won't flush correctly now

I have written a MVC-framework and I am using ob_start('error_handler') to be able to catch fatal errors aswell. This works great! In boot.php // Start the error-logging ob_start( 'error_logging' ); ...
0
votes
1answer
553 views

ob_start problem with PHP code

Ok, I can't come to grips with this ob_start and ob_end_clean code... Basically, I am trying to output PHP code within a page section. Here is my source code: $content = ...
1
vote
4answers
253 views

How to send the header to the client before execute the php scripts

How to send the header to the client before execute the php scripts ? My script take many time to finish and the client don't receive anything through this period. <? header("HTTP/1.1 200 OK"); ...
5
votes
1answer
362 views

ob_start not executing callback

I'm having issues with ob_start. Not sure what the deal is, but I've bubbled it down to the simplest possible test case... still to no avail. I would expect this code to output 'bar' to the stdout, ...
0
votes
1answer
236 views

ob_start() slows the script

I am using ob_start('ob_gzhandler') for compressing my script.But the script takes too much time for execution. I added ob_end_flush() method in the callback function of register_shutdown_function() ...
2
votes
3answers
964 views

Remove HTML using PHP (ob_start + dom parser)

I need to learn how to remove html tags using PHP. This is what I have in mind (I think DOM phrasing is what I need but I cant figure out how it works. A working example would be a big help for me. I ...

1 2