| |
| |
| |
|
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> do you use it regullary? <1> yes <2> anyone know an answer to my question? :) <0> i know it's a nice IDE for php <3> SubEthaEdit kicks its *** <3> ahem <0> but i usually prefere simple appz :) <3> not that I'm plugging it or anything <4> i'm trying to interface with the eBay API, but don't know enough about xml requests/responses to work with it <4> anyone recommend a tutorial for this? <5> I would like to get the value of a member of an object, given the member name (as a string), is it possible? <0> Monkey_b, did you read the api documentation on ebay site? <0> sure it's full of examples <6> anyone know what this means? Fatal error: Non-abstract method Server::getDatabaseInformation() must contain body in /home/voltron/public_html/sfind2/include/Server.cl***.php on line 51 <4> yes knoopx, i was able to modify some examples to kinda work :] <4> i suppose i should keep fiddling with that then
<7> Hmm, protected $var can be accessed outside a cl***, but not modified outside of it, right? <4> anyone here work with the ebay api before? <8> he people i have two problem. 1-) i use fsockopen and post data to remote. it can learn my ip with remote_addr.i want to change my remote_addr. it can be?how? <9> Abdulkadir2: um, go learn how tcp/ip and http work. <9> the remote IP is gotten BY the server based on the IP it thinks you connected from <10> Abdulkadir2: if you're that worried about your IP being recorded, you're probably doing something you shouldn't anyway. <8> ||cw when i connect with fsockopen or etc. my ip info cant go with phpvariable? it go with packets... himmm ok <9> Abdulkadir2: what is the reson for wanting this change? <8> ques 2-) i want to use php commands with var. for exaple. i have got a php.php. i want to when call php.php?cmd=echo "test"; it write test. what must to write in php.php <8> || <3> Abdulkadir2:: eval($_GET['cmd']; <10> Abdulkadir2: if you write a script to do that, you should expect to get hacked in the worse possible way. <9> Abdulkadir2: write a handler, make it like cmd=echo¶m1=test then <?php switch($_POST['cmd']) {case 'echo': echo $param1;... <3> Anbdulkadir2: But I must warn you that using that is an absurdly bad idea <8> thks <10> it's good to see my senses were not off. <8> ||cw: it is good bye case echo case for case while............ <8> bye->but <3> ||cw: I told him exactly what he asked for. I gave him a warning but I did help him with what he asked <9> Abdulkadir2: by using a case you can control what gets run and how. by using eval, you aloow any users to gain control of your site <9> prophile: eval is almost never the right answer <10> prophile: i'm starting to think that perhaps you've given a loaded gun to someone with a less than average IQ. <8> ||cw: i use php commands in mysql. <10> if he really wants to execute remote code so badly, he should be using a proper web service. <3> on the offchance that its use was appropriate (however unlikely that is) I helped him. I warned him that it was a bad idea, though. <9> another bad idea <8> :D <8> but i must <10> prophile: oh, i wasn't saying there was anything wrong with it. anything that follows will surely be natural selection. <3> caffinated: indeed :) <8> because i cant use writable files. when it can writable some people hack it <8> (im sorry my wery bad english) <9> Abdulkadir2: if you think you "must" then are thinking clearly. I've /never/ had to use eval, for anything, and I've made some pretty complex stuff <3> I've only ever found one use for eval(), it should probably need to be specifically enabled at compile time <10> i wouldn't go that far <9> i would <10> but it should be handled with care. <3> indeed <3> it should, but making it open for everyone to use is, as you said, giving the newbies a loaded gun <10> and it most certainly should _not_ be exposed through a web interface. <3> indeed <9> with things like variable vars and call_user_func there is no need for eval, at all <8> ok thnks people <10> ||cw: never say never <3> ||cw: I've only ever had to use it when I was doing some complicated messing around with function names and bcompiler. <9> n e v e r :P <3> heh <11> how parameters do I need to check to troubleshoot why my php mail function is not working? <12> where I can found some tutorial for multi thread in php <3> ghostrunner: try all of them <9> ghostrunner: check you mail server logs <10> ||cw: there are always special cases. granted they do not come up often, but just because you've never had to do it does not mean there is never a reason to. <9> Seba_soy: no such thing, best you can do is fork and pcntl <13> http://www.invano.com/tutorials/php/ <11> ||cw: Im on a shared server on a linux box, where would they be? I suspect the executable is called sendmail? <13> those tutorial are top-quality wtfs <13> discuss. <9> ghostrunner: in the log dir, ask your sevrer admin
<11> ||cw: ok, thks! <12> sure, fork and pcntl, some tutorial for that? <4> anyone here work with the ebay api before? <9> php.net/fork php.net/pcntl <10> !tell Monkey_b about g10 <14> !tell simonbun about g10 <14> ;) <14> oh lol <15> hmmm <15> !tell sheldonc about g10 <6> how does __call() work? does it only catch external method calls? $a->something() vs. $this->something()? <16> I'm trying to run a perl script which reads from STDIN from a PHP script. Normally I run it like this: "script.pl param1 param2 < some_file.txt" I want to get the data from a <textarea> element instead of from some_file.txt, but I can't get it to go. <16> I've tried exec() and backticks, but I think the problem is I'm not sending the <textarea> data correctly. <17> where can I create accounts for phpmyadmin ? please <18> Is 'if ( $foo !== 0 ) {...}' a valid test? <19> a DB connection script (external snippet) can only connect to one DB at a time, right? <20> grep: The -P option is not supported <- erm. <21> purefusion: no <22> setuid, yes <21> purefusion: what db first off <18> mwarden: Coming from C, that looks syntactically incorrect. Shouldn't it be != 0 or == 0, not !== 0? <23> dBASE IV <6> how does __call() work? does it only catch external method calls? $a->something() vs. $this->something()? <20> Jymmm: Help me slay grep. Grab your pitchfork. <19> winmutt: mysql <22> setuid, it tests if they are not equal or not of the same type <22> setuid, php is loosely typed <24> I've been having some problems with switches. I'm trying to do switch($status[0]), but I guess I can't use arrays in a switch? \(_o)/ <21> purefusion: you can use as many db's on the same server with the same connection as you want <20> setuid: read php.net/langref <19> was just thinking about using the same connection script for a cart and other utilities <21> purefusion: if you want to connect to more than one server then you need more than one connection <23> Lateralus: did you loose part of yout p0rn collection and now are looking for it? <23> lose <21> Jymmm: hush yo mouth <22> != is different from !==. != ignores type <20> Jymmm: I don't lose porn, dude. <19> so I have to specify that in the query then <23> Lateralus Casue if so, winmutt is your man <21> damn right <21> i got pron out the yinyang <21> 3000servers of it <21> at 10gb/s <18> mwarden: thanks <22> setuid, np <23> Lateralus but, I have the QUALITY p0rn, he has that you've seen everyday for the last 200 years stuff. <25> winmutt: no one cares <25> winmutt: so stop the ego trip <25> or leave <21> Jymmm is such the troll, he gives me turrets <23> winmutt easy there <20> Jymmm: Is someone trip trapping over your bridge? :p <21> Jymmm: am I wrong? <23> winmutt yes. <6> i'm calling a method from within my cl***/object, and __call() is never being called. hEeEEEeELp <26> I need quick help: looking for free accounting software. where can I find a forum that I can put my specifications and get advice about which app will fit my needs? thanks <25> lotus_anima: its called for non-existant methods... <6> AcidReign: only for non existent? <25> lotus_anima: afaik, its been a while <6> AcidReign: i'm getting: Call to undefined function actionGetDNS() <10> winmutt: he gives you turrets? point defense is good! <21> Natanson: free accounting software? good luck, perhaps sourceforge <6> it's a function that's not defined, but it's not being picked up by __call() <21> caffinated: diareah of the keyboard <26> sf givs list. I need forum to consult with <21> Natanson: try them out, quit expecting others to do work for you <21> consider it job security <25> Natanson: there is no place that is going to choose something for you <10> winmutt: thanks man, you've shown me that there really is someone out there in the world with spelling worse than mine ;) <21> caffinated: pleasure to oblige <27> hello <28> hi <29> mysql_query if this results in an error (false) how do I read that error?
Return to
#php or Go to some related
logs:
snd_i8x0 install emerge KDEBASE problem with cyrus-sasl xdriinfo libGL is too old. nvidia #ubuntu +kftpgrabber +SLES +install mplayer xcompmrg ubuntu 43xx dies edubantu mysqladmin processlist + awk #suse
|
|