[PHP] 'buffer sizes' ?

2013-08-10 Thread Lester Caine
I'm not quite sure what is causing an effect I am seeing. I've two machines set up with Apache2.4 and PHP5.4.15 and I'm trying to debug owncloud as it has problems with Apache2.4. This autoloader and routing 'fun' seems totally over the top, and is failing without giving any errors, but the

[PHP] buffer settings in php.ini?

2006-07-22 Thread jekillen
Hello; I am having a strange breakdown in some dhtml that uses php to dynamically generated images and support data. The program is supposed to generate 9, 16, or 25 images. It does 9 without problems but breaks with 16, and 25. I've written the code to accommodate different numbers of images,

Re: [PHP] buffer problem having a mind of its own

2005-10-04 Thread Jochem Maas
could you imagine that somebody who has never seen your code, has no idea how it is put together or even what platform it requires (php4/php5?) might not have clue what your on about? matt VanDeWalle wrote: hello again I was writing and rewriting my user function for my chat server trying to

[PHP] buffer problem having a mind of its own

2005-10-02 Thread matt VanDeWalle
hello again I was writing and rewriting my user function for my chat server trying to crush this bug but its beyond me whats going on. basically I have it so if a new user comes on, we know that if they type new at the prompt so it goes to the newuser function, asks for a username, accepts

[PHP] buffer

2004-11-28 Thread Brad Ciszewski
is there a code you can put at the top of the your php files so that the imgs etc. load as the are put on to your computer, and it doesnt wait for the whole site to be downloaded until it is loaded to the user? *turning off the buffer basicly* Brad Ciszewski www.BradTechnologies.com 99.9% Uptime

Re: [PHP] buffer

2004-11-28 Thread Greg Donald
On Sun, 28 Nov 2004 12:48:57 -0600, Brad Ciszewski [EMAIL PROTECTED] wrote: is there a code you can put at the top of the your php files so that the imgs etc. load as the are put on to your computer, and it doesnt wait for the whole site to be downloaded until it is loaded to the user? *turning

Re: [PHP] Re: Outputting HTML with PHP - Buffer Problem?

2004-09-13 Thread Curt Zirzow
* Thus wrote M. Sokolewicz: Nick Wilson wrote: Hi all, Say i have a php script like this: ?php print(html_head()); // do loads of time taking stuff print(html_footer()); ? How come I dont see the html header (it's just a function that returns a string with the html up till

[PHP] Outputting HTML with PHP - Buffer Problem?

2004-09-12 Thread Nick Wilson
Hi all, Say i have a php script like this: ?php print(html_head()); // do loads of time taking stuff print(html_footer()); ? How come I dont see the html header (it's just a function that returns a string with the html up till body) before the entire script has run? This goes against my

Re: [PHP] Outputting HTML with PHP - Buffer Problem?

2004-09-12 Thread John Holmes
Nick Wilson wrote: Say i have a php script like this: ?php print(html_head()); // do loads of time taking stuff print(html_footer()); ? How come I dont see the html header (it's just a function that returns a string with the html up till body) before the entire script has run? This goes

Re: [PHP] Outputting HTML with PHP - Buffer Problem?

2004-09-12 Thread Jason Davidson
There is nothing wrong with what your doing, i use this sort of thing for all the big sites i make, i use a page class and use methods to create the header and footer, so your concept is good. I would investigate your html_head() function, to make sure its actually returning something. Sinse

Re: [PHP] Outputting HTML with PHP - Buffer Problem?

2004-09-12 Thread dirk
Well, there is a difference between function html_head() { $html = html; return $html; } and function header() { ? html head title ? } The first function you need to call using ? echo header(); ? to see the output THe second function

[PHP] Re: Outputting HTML with PHP - Buffer Problem?

2004-09-12 Thread M. Sokolewicz
Nick Wilson wrote: Hi all, Say i have a php script like this: ?php print(html_head()); // do loads of time taking stuff print(html_footer()); ? How come I dont see the html header (it's just a function that returns a string with the html up till body) before the entire script has run? This

Re: [PHP] Outputting HTML with PHP - Buffer Problem?

2004-09-12 Thread raditha dissanayake
dirk wrote: The first function you need to call using ? echo header(); ? to see the output THe second function is not a real function because it has no return statement. In german you call this Prozedur. Don't know if it's the same as procedure in english. But you will call this piece ? header();

Re: [PHP] Outputting HTML with PHP - Buffer Problem?

2004-09-12 Thread Nick Wilson
* and then Jason Davidson declared i prefer to escape from php inside my header fucntion, and just not print it.. eg. function header() { ? html head title ? } Yes, i remember now, thanks ;-) I've been using Smarty (smarty.php.net) for so long now that i've forgotten

Re: [PHP] Outputting HTML with PHP - Buffer Problem?

2004-09-12 Thread Nick Wilson
* and then John Holmes declared How come I dont see the html header (it's just a function that returns a string with the html up till body) before the entire script has run? This goes against my understanding, why might this be and what might i use to get some output before the script

Re: [PHP] Re: Outputting HTML with PHP - Buffer Problem?

2004-09-12 Thread Nick Wilson
* and then M. Sokolewicz declared How come I dont see the html header (it's just a function that returns a string with the html up till body) before the entire script has run? This goes against my understanding, why might this be and what might i use to get some output before the script

Re: [PHP] Outputting HTML with PHP - Buffer Problem?

2004-09-12 Thread Jason Davidson
yup, you took the words from my mouth... [EMAIL PROTECTED] wrote: dirk wrote: The first function you need to call using ? echo header(); ? to see the output THe second function is not a real function because it has no return statement. In german you call this Prozedur. Don't know if