@# Quotes DB     useful, funny, interesting





Google
 
Web www.quotesdb.info
Undernet  |  EFnet  |  Quakenet  |  Freenode  |  Dalnet  |  Ircnet  |  Galaxynet
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



Comments:

<0> that definatly sounds like apache post size, some distro's had a 500k default
<1> i set them to 100M
<1> max file and post size
<0> look up the setting in the doc and set it to something high
<0> in apache or just php?
<1> php
<1> did not find them in apache
<0> yeah, look up apach's setting
<1> can u give me a hint
<0> it's probably a compiled in default
<1> did not find anything bt "post" or "size"
<0> apache.org, seach for post?
<0> "compiled in" means it's not going to be in your conf
<0> but you can override it
<1> hmm
<1> right like "Server Limit and stuff"



<2> Archonel: LimitRequestBody
<2> Archonel: google: apache post size configuration limit
<2> Archonel: http://www.radinks.com/upload/config.php
<2> Archonel: "Some RPM installations sets limit request body to 512Kb. You will need to change this to a larger value or remove the entry altogether."
<2> Archonel: google is your friend :-)
<1> 10x a lot
<1> ure the good
<1> :)
<2> the good what?
<1> apache
<1> :)
<2> haha thanks
<3> ini_set('Display_errors', 'on'); <-- is this correct?
<4> how do I delete the last char in a string ?
<0> substr
<5> i need fast help
<5> how i can see php version ?
<5> code
<5> please
<6> make a phpinfo page
<0> php_version?
<5> yup
<6> <?php phpinfo(); ?>
<5> oh yeah ...
<0> no, it's a function
<5> i`m forgot
<5> :)
<5> tnx
<5> :)
<5> buy
<0> php.net/version
<5> bye
<5> :)
<7> !+enter
<8> Don't use the enter key as puncuation. Think in complete thoughts, then type.
<0> haha, think in complete thoughts..
<6> ||cw - what do you
<0> i tend to think in server complete thoughts at once, though sometimes to do get them crossed up...
<9> Hi, phpinfo doesn't show 'Configure Command' is this related to php version or what?
<9> Hi, phpinfo doesn't show 'Configure Command' is this related to php version or my distribution or what?
<10> Hi
<11> pi?
<10> I have a question about @ error control operator, I've heard it's "slow"?
<12> !+@
<12> meh.. some op do that
<12> :P
<10> Or maybe another question: is there a speed difference between @function_call() and function_call() if there is no error?
<12> currently i think there is
<12> i remember reading it as one of the things to fix in php6
<3> $row['kwds'] =. ", http://www.manchester.com";; <-- is the syntax correct here?
<10> Any urls?
<12> but it's only significantly different in some functions
<12> google for php6 meeting notes
<10> Xsploit: move dot one position the the left ;)
<3> ahhh :p
<10> niraj: will google
<11> usually it's not recommended to use @, rather try catch or if else for an error then surpressing it
<11> especially during development
<7> !+@
<8> [@] The PHP error control operator that suppresses errors (@foo()), see: http://php.net/operators.errorcontrol - Don't use it. Think I'm wrong? Ask me about "GO".
<10> If you were talking about http://www.php.net/~derick/meeting-notes.html#id42 then it doesn't say much...



<7> !12/75
<8> 0.16
<10> php-bot: GO?
<7> !+go
<8> [GO] Gross Overgeneralization. Everything that we tell you in ##PHP is what we consider "best practices". Of course, only YOU know your own requirements, so you may feel you need to do something we told you not to. Just don't say we didn't warn you.
<10> Of course I know better ;)
<11> you think?
<10> Jymmm: he did respond privatelly
<11> :P
<10> privately
<10> The minutes do not say if the @ is slower if there is no error :/ I'll have to test it ..
<13> well, its an extra opcode, so its a little slower, sure
<13> one of the big problems is this: @include('foo.php'); wil hide parse errors in the include
<13> or any other errors, IIRC
<10> I know.
<14> hello
<14> is there any reason to not instal php5 over php4?
<11> not really
<14> /s/instal/install/
<14> my school admin says php5 is unstable
<15> Bl00r: Tell him he's stupid?
<11> he's probably just worries some badly coded php4 scripts won't run anymore
<11> *worried
<11> and too lazy to fix them
<15> Heh
<14> nah, I know him, he's worried about security issues
<15> Lack of backwards compatibility != stability... tell him that too.
<15> And PHP5 *is* backwards compatible anyways.
<11> yup, just a few functions return false instead of 0, that sort of changes
<14> I need the improved OOP support
<10> Well, php5 makes (used to make?) incompatibile changes between minor releses...
<16> hey
<16> how do i do index.php?part=* shows different stuff?
<14> thank you guys
<16> ive looked in tutorials
<16> but none gave me the right info
<11> youll need a switch or if -else
<17> How can I execute something only when the session expires?
<17> I want to clean up session stuff, so I was wodnering if there are any listeners or similar that wait until a session expires, and then do cleanup?
<16> how do i do index.php?part=* shows different stuff?
<18> Is there a function to display an array in a nice way ?
<12> Angel-SL: you can read part by using $_GET['part'], then use an if or a switch statement to compare it's value
<18> with indent, maybe colors and so on ...
<19> pol1: var_export or print_r
<19> dunno bout colours
<16> niraj
<16> like
<16> if ($_GET['part'] == 1) ?
<12> !tell Angel-SL about enter
<12> yes
<12> but keep in mind $_GET is always string
<12> so it's better to check $_GET['part'] === '1'
<16> ===
<16> ?
<12> == compares only values, === compares values and datatypes
<12> "1something" == 1 is true
<12> "1something" === 1 is false
<16> ok so i should do ===
<16> right?
<12> yup
<16> Thanks
<12> you really should read the manual
<12> it'll take you a long way
<20> hi
<20> i need help
<21> no existing things, like array['x'] (where there is no such index) return true when tested with empty() ? always?
<20> i have written a serve rin vb and i will connnect the server with php, thats work, but i cant display the sendet data from server
<20> why?
<20> i use the sample from php.net
<22> Hi there
<20> http://de3.php.net/manual/de/ref.sockets.php
<20> zhe cleint sample
<22> Thanks upfront, for helping me :)... What could be wrong if upon using sessions (session_start) that the page does not show anything on it, while when you just remove the session_start it does show the page?
<16> When doing an echo, should i use echo ('') or echo ("")


Name:

Comments:

Please enter the result of the sum 63 + 46 (to avoid spam):






Return to #php
or
Go to some related logs:

#php
command line torrent
#linux
#qemu
#fedora
#osdev
.gtkrc-2.0 dpi
dmraidinitrd
#qemu
expecting T_PAAMAYIM_NEKUDOTAYIM solution



Home  |  disclaimer  |  contact  |  submit quotes