| |
| |
| |
|
Page: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
Comments:
<0> zi look at the zip functions in php probably your best shot <1> FreeBSD, thats ok. That can use shell_exec <2> Not if it's disabled. <3> rioter, wtf have you been smoking and where can i get some? <0> fires? <3> rioter, to extract a zip file you need write access to a filesystem directory, but you don't need to be able to output anything to the zip <0> ah that goes with out saying... <4> When using file_get_contents to fetch a remote file in PHP 4.3.10, does it support gzip? <5> anybody know about premade script ? <2> You don't necessarily need filesystem permissions in place. <2> zip_entry_read() does not write to the filesystem, it returns a string. <3> zi, check the comment on top at http://php.net/zip <0> im so confused <1> rioter: Don't worry. <1> rioter: Linux nerdness. Just ignore if you don't understand us <0> there are about 300 different answers atm, all of which are the same thing just said in different ways
<5> fires: Thanks man! <5> Thanks to all :) <0> alright... <0> so the solution i suggested at the start <0> is not the accepted solution... <5> I am going to check it if it work for me ;) <0> s/not/now <0> urgh <1> rioter: Yeah <0> fires i think its you thats smoking some funky crack <3> ? <1> lmao <1> fight! fight! fight! <3> You said something that made sense, but was mostly irrelevant. Then you proceeded to prove that you have no idea what you were talking about, and just got lucky. Now I'm smoking funky crack? <3> Stormx2, am i wrong? <1> no I was kidding ;-) <3> alright. <0> urgh <5> Testing went smoothe :) .... WOW <1> I don't care who's wrong. Whoever is RIGHT would have called it quits already <6> my php isn't loading with apache <3> i'm not going to take this flameriot any further <5> Thanks to all!! <6> can anyone give a hand getting it to work <3> agreed. <3> Darren3m, what have you done? <6> emerged :) <1> Darren3m: We can try, but you're better off asking in your distro's channel <0> Darren3m take my advice <3> lmfao <0> **** of portage for apache and php <0> its just to much h***le <6> I think i took down a new version of php, was running 4.x <3> Darren3m, did you read the installation docs? <6> yeah, probably ... But how to get this version running <1> rioter: I do: "sudo apt-get install apache2 php4" and its done. Fully functioning web server <7> yep go ubuntu ;) <0> Stormx2 your point? hes using gentoo not debian/ubuntu <1> rioter: Just saying its easier with ubuntu <1> surfdue has the right idea ;) <0> eh, i just build it my self <7> his point is he is showing you how debian rules gentoo with gentoos emerge apache wait 5 hours command ;) <0> its really not that hard, plus package maintaners for php do wierd things <6> yeah... so should i just unmerge and remerge? <8> surfdue: lol gentoos emerge apache wait 5 hours command? <6> i need this to be up and running, i don't care if it takes 12 hours <0> Darren3m unemerge, goto apache.org and php.net do it your self <6> i'll let it run overnight <0> will learn alot more that way i ***ure you <8> Darren3m: gentoo has really answers for that kind of stuff in their forums.. <0> plus you have more control over your install, php had some wierd wierd deps last time i used gentoo <8> Darren3m: really good answers rather <7> phliver, gentoo should be called 'emerge and wait' ;) <8> i used to be a big gentoo fan. but now i use all debian and ubuntu <0> surfdue tell me the last time i could log onto a gentoo system and read in clear text my 'root' p***word <7> huh? <0> after a **** up like that, its going to take me a while to trust ubuntu <8> i remember getting impatient so i set up distcc so all computers would compile for one computer <8> rioter: lol yeah i remember that
<7> rioter, i use debian first of all, and second you tell me where this root p***word is visible, when you should have it being owned by root user? <8> surfdue: you use breezy? <0> surfdue ubuntu doesnt have a root p***word <0> or account <7> you must be kidding me? <7> yes it does. <7> lol <1> surfdue: Afraid it doesn't. <7> after you activate it, it does ;) <6> so no one has any hints as for how to fix this / <7> lol <0> you have to activate it <8> surfdue: do a 'grep -r rootp***word /var' <7> Darren3m, whats up? <0> Darren3m off the top of my head <6> trying to get php to load with apache <6> i'm running gentoo and emerged the newest version <6> doesn't load anymore <0> emerge apache and make sure you USE php with it <1> surfdue: And also, the root p***word is visible. Well was, until that hole was patched. Somewhat of a blunder of the installer team, so I understand <0> emerge php <0> it was your main account p***word in plain text in a world readable file <7> Darren3m, have you tryed emerge -c apache, and emerge php, then apache? <6> emerge -c apache? <0> im pretty sure you have to USE="php" these days to enable the php module <7> nah rioter <7> apache will look for php when installed <6> hrm, i thought i did, lemme double check that <0> eh fair enough <7> Darren3m, if that dosnt work they changed it and i would suggest trying #gentoo on how to use the USE flags ;) <9> hello ^^ <1> hi ^^ <0> hi ** <9> i have a question lol <10> omg <10> i have a answer omg <0> numist yeah but you have the answer to the wrong question <0> i ***ure you 'cheese' is not a valid answer <9> :P <10> rioter: DAMNIT <10> how'd you know? <0> numist well your made of cheese so <10> I am? <9> i've created a php form, that writes to a page try.html, but each time it's run, it overides the previous set of entered information, how would i make it so each one is added and kept <0> how else do you explain the holes in your body, and the strange attraction mice have to you <0> kodai change your filewrite mode <9> how do i do that? <10> kodai: what are you using to write, file_put_contents or fwrite? <11> I have the following variable declaration, and I'm getting an error: <11> $_SESSION['session_hash'] = sha1({$_SESSION['userid']}{$_SESSION['username']}{$_SERVER['REMOTE_ADDR']}{$_SESSION['session_time']}rand()) <11> http://dev.broadneck.org/auth.php <9> $fp = fopen("try.html", "w"); <9> fwrite($fp,$post); <9> fclose($fp); <0> kodai www.php.net/fopen <0> read about the file modes <0> and what w does <10> ok, so open it with "a" instead of "w" <10> and you'll write to the end of the file <9> ooh ok <9> great, thanks for your help <9> i' just started w/ php tonight <9> well, scripting in it anyway <10> :) <9> thanks alot ^^ <0> just reading the mod_php ebuild makes me want to run run run away <0> comments such as <0> # IT IS BROKEN AND A TEMPORARY MEASURE! <0> # YOU'VE BEEN WARNED. <0> really bode well :P <9> ok great! thats fantastic <0> kodai just a hint, read the doc pages through everything is layed out there <9> doc pages?
Return to
#php or Go to some related
logs:
ageis-virus #web #gentoo debian bcmw15 invalid driver! emerge sax xserver #php InnoDB has waited for 50 #debian creative notebook webcam ubuntu dapper Ubuntu Error opening/initializing selected video_out(-vo)
|
|