| |
| |
| |
|
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 32 33
Comments:
<0> a mac user! <0> hehe.. brb checking the site. <1> Ew, mac? <2> I didn't see any " -l"'s in SMF surce. <0> "L" <~~ mac user :D <3> anyone can help? <2> I am still wondering, ._. <3> Warning: fsockopen(): php_hostconnect: connect failed in /home/httpd/vhosts/fujimotto.com/subdomains/rival/httpdocs/enic/launch.php on line 9 -- but when i connect to the specified IP i can connect to it <4> Any Mandrake users? <1> Thank god no <4> And good morning kuja ;-) <1> :P <5> DtTvB: if you have the SMF source, then why don't you just read it? <3> niraj can you help me? <0> guys back...
<0> kuja any idea with this? http://pastebin.com/543119 <2> I am tryingf to read it ysterday. <1> brainb0x: What... the ****? <1> :P <0> ? <1> What the hell are you doing? :P <0> hehe <3> Warning: fsockopen(): php_hostconnect: connect failed in /home/httpd/vhosts/fujimotto.com/subdomains/rival/httpdocs/enic/launch.php on line 9 -- but when i connect to the specified IP i can connect to it <0> im ***igning value to an array... just curious if thtat is possible.. <1> Yes... that literally is possible, but I still fail to see what you're trying to achieve? <2> @ini_set('track_errors', '1'); <0> instead to loop to 14 records, i just want to ***ign the result into the array <4> My installed packages list php5-something-4.0.6 (or 4.0.8). I took this to mean that I had php5 installed. But phpinfo says it's 4.3.8, which I would take to be php4. But wouldn't php4 have been installed with a package, and be listed in the installed package list? <0> any tips guys? <1> brainb0x: Here's your code, modified: http://pastebin.com/543124 <5> DtTvB: that's not it.. from the manual "If enabled, the last error message will always be present in the variable $php_errormsg." <6> what is "safe_mode_uid" ? <2> OK <2> I found it.. <7> How to get rid of "<font face=" Times New Roman"></font>" in such complicated situation => <font face=" Times New Roman">abc<font size=3>def</font>ghi</font> ? <2> It is from the eval() function. <0> kuja it's a multiple field from a querry <8> xiaogil, font tags are deprecated, but it'd be abc<font size=3>def</font>ghi <1> brainb0x: Um, so? <0> if i retrieve the multiple records and ***ign it to the array its multidimentional right? <1> No. Your MySQL selection has got nothing to do with how the resulting dataset will look like. <5> DtTvB: ahh.. yeah eval() returns false on parse error.. <0> my query something like this: SELECT name,age,address from people; <0> can $rows[] = $row; retrieve all those field? <9> is it possible to specify permissions when trying to connect to a share on a remote computer (to move an uploaded file)? <1> brainb0x: Yes <2> Uhh, you mean this? <10> Hi.. I can't connect to any IMAP server using imap_open.. PHP 4.3.2. IMAP <10> c-client version 2001 <10> ssl and kerberos enabled <2> @ini_set('track_errors', '1'); if (!eval($BADCODE)) { errz(...); } <0> fsck! i got it kuja! it's on my query it result to 0 thats why i'm wondering why the array return NULL, MANY thanks kuja! <8> i'm looking for some help for an 'events' section of a website. the pastebin is at http://perry.pastebin.com/543129 . the reason i posted the whole pastebin and not just the section i really need help with is in case you want to give some pointers on the overall design, or whether i have to change something earlier for the events section to do what i want... <5> DtTvB: you don't need to enable track_errors.. just check if eval($BADCODE) === false <10> anyone familiar with IMAP functions? <8> right now, i can navigate through next and previous months, but when you reach the twelfth month, it should increment the year, but of course i don't have anything like that in the script yet, so it just loops around to january of the same year <2> It has debug_backtrace... <11> hy! <2> Hello! <12> what is the best way to list everything in an array / <8> http://perry.pastebin.com/543129 < i've highlighted lines 96 - 109 <11> $php_self <11> returns the same page? <8> schnoodles: print_r($array), i think. (i'm a noob) <2> gangster`s: I think so, <0> is it possible to override the array key? <13> brainb0x, sure <2> but I would use $_SERVER['php_self'] or '?'. <0> colder any tip? <13> you should rely on php_self, use script_filename instead <11> i'm not remember if is $php_self or PHP_SELF <13> and its in capitals <14> $_SERVER['PHP_SELF'] <14> Don't use anything else. <11> ok <14> Oh, and turn off register_globals.
<13> shouldn't <8> colder, why would you not use $_SERVER['PHP_SELF'] ? just so i know. <13> NBrepresent, because it can be injected <8> ok <13> http://site.com/path/to/file.php/malicious code goes there <8> do you mean just in the address bar, or someone would have to edit the headers they're sending, or what? <15> is this right channel for this kidn of problem? i have own socket module (has some own stuff), i have build for windows, but now i have trying to it to linux, i have maaged to make .o files with gcc, but how do i pack it to so? <13> NBrepresent, just in the address bar <15> sorry for my werry bad english <16> i can't use \ in " " <17> you damn well can! <16> $file = $dir."\".$file <16> this one gives error <8> so, after a script has loaded (which uses $_SERVER['PHP_SELF']) , someone changes what it is to whatever they want, is that the idea? <17> *sigh* <17> $file = $dir."\\".$file <17> it's called escaping <2> In php4, function names are not case sensitive, right? <17> php 4, 5, no case sensitivity on functions <17> that is correct <18> I need a suggestion for a temporary variable storage solution, ie: A user composes an email, he types in a message body and subject, and clicks a button to add a recipient. A list of reciepients is displayed, the user checks the people he wants, and clicks okay to be return to the Compose view which still contains the subject and message he typed in. <18> Does anyone know what this is called? <11> <16>: or u can try to use ascii code of that simbol <18> I need this for a mobile platform. <16> jiggster thanx <18> Can anyone make a suggestion, mysql temporary tables? Etc? <17> pod, sessions will probably do it <11> $file = $dir.chr(\ scii code).$file <17> uhm <2> What's about user-defined functions? <17> escaping is far quicker <11> ok <17> "\\" = fast <17> DtTvB: doesnt matter, functions are all case-insensitive <17> no matter where they are defined and used <17> but <17> it's best to stick with a "convention" <17> if you write thisIsMyFunction, use it as thisIsMyFunction <18> jiggster - Hmmm... I'll think about it. Makes sense that the user will only compose one email at a time. <14> jiggster: what's wrong with just '\'? <8> could someone look at http://perry.pastebin.com/543129 and tell me where the improvements that i could make are? i know it's not an elegant script, but i'm just starting <17> string escaping... <16> terriblecabbage = basicly it won't work <17> the slash will escape the last quote, so you need to escape the back-slash <14> Please go on. <14> ... Ah. Err. *Tests* <17> read up on "escaping strings" <17> manual, etc <2> That's why some PHP function that resturn function name returns it in all lowercase, right? <4> Well... I can see that y'all are busy... TTFN <17> couldnt say i didnt design php <14> colder: You still here? <8> right now you can navigate forward and backward through months, but when it gets to the end of a year, it loops to the beginning of the same year rather than going into the next year. . could someone make some suggestions where to start to make it do that? <13> terribleCabbage, I am <2> Ack, <14> http://kabukiyasha.net/tst.php <-- prints out PHP_SELF. <11> i have one litle problem <11> window.location(\"$_SERVER['PHP_SELF']\".\"?n="$n"\"); <11> i get <14> http://kabukiyasha.net/tst.php/ZOMGULOSE <11> Parse error: parse error, unexpected T_ENCAPSED_AND_WHITESPACE, expecting T_STRING or T_VARIABLE or T_NUM_STRING in d:\docroot\softpedia.php on line 48 <2> It's Javascript.. <14> What DtTvB said. <2> are you using echo? <2> (gangster's:) <14> colder: The 'exploit' doesn't work like how you said above. <13> terribleCabbage, thats because your apache server isnt configured to handle such urls <14> Yes, because it's not badly set up? <5> gangsters: you can't use an array like that in a string.. either put {} around it or use concatenation <11> yes <8> terribleCabbage: but most webmasters don't set their own up <14> Only if you specifically tell mod_rewrite to do that will it have the effect as per before <2> "window.location(\"{$_SERVER['PHP_SELF']}?n={$n}");
Return to
#php or Go to some related
logs:
2.6 kernel can't get printk to show up get fglrx-kmod command line bittorrent ubuntu perl split array dancingmonkey #debian #ai amule for ubuntu phpcake belongs to #web
|
|