| |
| |
| |
|
Page: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
Comments:
<0> limepilot when you load this page what happens? <1> The page isn't redirecting properly <2> keep going... <3> TML, do php-bot have any inline <?php?> command? <4> Ox41464b: Absolutely not <4> Do I appear completely insane? <0> limepilot coudl you expand on not redirecting properly <3> TML, should be safe enough ~_~ why insane ? <1> Firefox has detected that the server is redirecting the request for this address in a way that will never complete. <5> I can I find out what memory_limit is set at via a .php file? <6> j #ruby-lang <5> does not seem to get returned with ini_get_all() <0> limepilot can you reach your website without the www. <6> meh, mistyped by slash. apologies. <2> limepilot: you should test it, without the header() call, by printing stuff to see what happens <1> no
<2> what the values to all these variables are <0> limepilot then you need to fix yoru dns record <7> i got a theme with a whole lot of <td>s and <tr>s and in firefox they look with frames for each of them while in IE it looks smooth (no frames sorroudning the boxes). is there a way to disable those frames in firefox? <0> limepilot the problem is that you have no root pointer if you can;t reach your website without the www <0> limepilot unless of course your usign apache and have no matching virtual host <2> dorel_: #web <7> ahh thanks <5> hmm do scripts not have to have memory_limit set? <5> I am working on someones cpanel server seems they don't have it set... <2> php must be compiled special to use it <8> limepilot: grab the livehttpheaders extension if you're using Firefox, that'll explain what's happening and should help fix it. <2> read manual regarding this directive <9> Quick question. I'm currently using ob_start("ob_gzhandler"); at the start of my document to gzip it. I also want to run my own output buffer command. Do I just write the function and put it next to it. If so, do I put the ob_start("myfunction") before or after ob_start("ob_gzhandler")? Or should I nest ob_start("ob_gzhandler"); in the handler, and if so, at the top or bottom? <5> philip_: was that directed at me? <2> yeah <5> so if I can't see it with ini_get_all() then there is no limit right? <5> or is there a inbuild default? <5> built* <10> hey <2> it should be the default, and it should show in there i would think <11> I'm sending an email using the mail function <9> Could anyone glance over my question? <11> but on testing I've noticed character set problem <11> so I've added these lines <10> Stormx2, what question? <5> philip_: I need to know what the memory limit is on this server before I tell client he can go ahead, if it can't be changed and is 8mb default or whatever he is in trouble. <9> It was this: <9> Quick question. I'm currently using ob_start("ob_gzhandler"); at the start of my document to gzip it. I also want to run my own output buffer command. Do I just write the function and put it next to it. If so, do I put the ob_start("myfunction") before or after ob_start("ob_gzhandler")? Or should I nest ob_start("ob_gzhandler"); in the handler, and if so, at the top or bottom? <2> http://us3.php.net/manual/en/ini.core.php#ini.memory-limit <11> mail( $sTo, $sTitle, $sEmailContent, "FROM: ".EMAIL."\n Content-Type: text/plain; charset=ISO-8859-1" ); <12> does anyone could tell me how to make a textbox with submit button and insert content in textbox to mysql database ? <11> it's not working, and I'm getting the content-type in same place as mail sender address <2> row: phpinfo() tells all <0> lkthomas to learn how to make form boxes find a html tutorial on forms <13> hi all <0> lkthomas to learn how to submit soemthign to mysql check php.net for mysq_query() function <14> please tell me how to upgrade php 4.3.11 with 4.4.2 source code <12> ok, thanks <2> J***i: php.net/install <5> philip_: it was not listed there either.... <0> nvictor mail($sTo, $sTitle, $sEmailContent, "FROM: ".EMAIL."\r\n Content-Type: text/plain; charset=ISO-8859-1" ); what does that give you <5> philip_: so I take it I can go ahead and say his server has no limit <11> I'll test Ungy <0> ahh limepilot left <2> row: you can say whatever you wish :) sounds odd <5> philip_: LOL <0> tetrarch guess he figured out it wasn;t a php problem <8> ungy: either that or he's installing the livehttpheader extension :) <0> tetrarch heh <8> ungy: when he comes back, /msg him a copy of the http spec, that should help <9> Meh <9> Any help with my output buffering question? >.< <11> Ungy: still not working, can the problem come from the mail server?? <6> Stormx2: you'll have to pull the contents of the buffer and perform your operation on that. it does not need to be after output buffering has been turned off, but it does need to occur after you've buffered all the output you want to operate on. <15> when changing a array member inside a foreach() the array member get's changed right? not a copy local to foreach? <0> nvictor what is teh error exactly? <6> The_Ball: if you perform a change on the variable in foreach, a copy gets made. but not until that point. <16> if I have header('Content-Type: text/plain; charset: UTF-8'); as first line of a script, what would cause the server to still send text/html as content-type? <9> caffinated: And it doesn't have to be nested? <16> no prepends or other includes before it <15> caffinated, so i need to use a for() loop to change the actual array memeber?
<6> Stormx2: no, because when you pull a copy of the buffer you're ***igning it to a variable. so your post operations can occur outside of the buffering operation <15> caffinated, or can i use a & operater in the foreach construct? <6> The_Ball: no <11> the characters are not understood <9> caffinated: So then I'd do: ob_start("myfunction"); ob_start("ob_gzhandler"); ob_end_flush(); <9> caffinated: Correct? <0> nvictor strange I have no idea why that is happening <6> The_Ball: what i'm saying is that when you do foreach ($array as $foo=>$bar) changes to $foo or $bar will cause php to make copies. if you modify the original array itself, a copy of that array is kept in order to maintain the index order for the loop. <4> Stormx2: ob_gzhandler is horribly buggy <9> It works for me, but if you have a better idea I'm open to that <6> Stormx2: why are you using it? <4> Stormx2: zlib.output_compression <4> Stormx2: See php.net/zlib <9> Not sure how I'd use that <9> OK <6> Stormx2: if it's just to gzip the contents of an html document for transfer and subsequent decoding at the browser, there are better ways. <11> Ungy: see Numro de Tlphone <9> caffinated: Thats basicly what I want to do... This zlib stuff looks really complecated... <6> Stormx2: then you want mod_gzip <9> apache? <6> Stormx2: output compression should not be done at the php level if you can help it <6> yes, it's for apache <9> Ah ok, I'll check that out <11> and the strangest of all : From: "support@surprises.tg Content-Type": text/plain;charset=ISO-8859-1@mail.cafe.tg; <0> nvictor I have no idea how to fix that that is freakign wierd though Ihav eot say <11> ok <9> that just seems MORE comlicated :( <9> complicated* <6> Stormx2: then you should in fact find a new hobby. <9> Meh <9> I'll figure it out <9> How can I tell if mod_gzip is installed? <6> that would be a question for #apache <9> This is on a remote server, I don't have SSH, just FTP <9> Hmm ok <17> can I ask an html ? <4> Talk about anthropomorphization. <6> swimrr: no. please use #web or #html. <15> caffinated, i see <17> ah...see, here is my problem...noone around in #html <17> :-) <18> swimrr #web <19> php-bot: tell swimrr about g8 <6> swimrr: that does not mean you can ask here. <6> swimrr: regardless, i did give you two channels to check. <17> ok then <9> swimrr: Ill take a look <20> Notice: session_start() [function.session-start]: ps_files_cleanup_dir: opendir(/var/lib/php5) failed: Permission denied (13) in ... <-- I keep getting this error on occasion from a page that refreshes every 15 seconds. Is there a setting that I need tweak in my php.ini or something? Rather strange. <21> is your dir 777 <8> riftdesign: looks like the session directory is set to a path that the php process doesn't have write access to. either chmod ug+w /var/lib/php5 or change the session path in php.ini <21> rift: the problem is whitespace in your headers <20> moosey: tetrarch: there doesn't seem to be a problem most of the time...just once every 30 refreshes or so <8> Stormx2: often going to an invalid page will display the apache details at the bottom - Apache 2.0.55 mod_gzip mod_php etc. <21> err not rift <8> riftdesign: it may only be triggering when the session details are changed, not read? <20> moosey: are you talking in relation to the headers? <21> that wasnt for you sorry <9> tetrarch: like, a file listing? <20> moosey: whew...thanks...i didn't think i had anything going on there ;) <22> hi all <8> Stormx2: that'd do it, or a 404. if not, I *think* phpinfo() will tell you. <20> tetrarch: by design, the page is just reporting data, nothing changing in the session at all (unless there was an error on the backend, it would add a session variable for feedback) <22> i can i fetch files using a HTTP POST request? <22> er...how* <21> rift: if its random its your code <8> riftdesign: waitaminute, I have seen that before - I think it's caused by the garbage collection trying to access the directory and clashing with session_start(). <6> amee2k: you mean a user file upload? or sending a post request to a server to get a file? <21> so actually do check for wierd text printing <8> riftdesign: which PHP version are you using? <20> tetrarch: is the best answer to have a less frequent refresh? <20> tetrarch: Apache/1.3.34 (Debian) PHP/5.1.2-0bpo1 <22> caffinated: send a POST request and get the result if possible like readfile() directly put out <6> amee2k: http://php.net/curl <21> perhaps start dumping the contents routinely, add some id to each session, when you see that error check the session id and see what its printing, from there you can find the problem
Return to
#php or Go to some related
logs:
remove jre-1_5_0 dli hdd driver #mysql ubuntu chech version courier-authmysql deb #php print() on unopened filehandle debootstrap cdebootstrap difference
#osdev usbhid: probe of failed with error -5
|
|