| |
| |
| |
|
Page: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
Comments:
<0> that's why i use a vim shortcut of phpi to write <?php ?> <1> ebartok - now you're just getting annoying <2> \o/ <3> ENYGMA: **** YOUR ONLY SED SKILL <4> ebartok.... go code... <3> <?PHP DIE ?> <2> there, bb <0> it's a regexp substitution nothing to do with SED... <4> killall ebartok <5> lol nice introduction I got... the first msg I saw was someone messing with enygma... bad bad bad =P <3> PKILL PHP <4> trust it to be a yank <4> :( <4> actually <0> .cr is croatia <0> isnt it?
<4> not a ank <4> yeah <2> might be <4> you're right <6> that was getting rather bothering.. ;) <0> im not bothered enough to check on iana.org :) <7> or run DDoS'er :p <4> better wrong way around <5> Can anyone tell me how to smothen up my watermark I create using imagecopymerge... the PNG gets sharp edges which I don't want... code is: http://pastebin.com/643917 <4> should of noticed that it should of been / instead of \ <4> silly lad :) <8> hi <4> hi <7> CopyNinja, blur your mark ? <5> Ox41464b: using gd? <8> what is the best GPL software for an advertisement website where everyone can post its own advertisements? <7> i dont know, photoshop perhaps ? <5> aah u mean like that... well it has smooth edges... but when used with gd it gets sharp <9> HI. i wnat put some small content from web iside my site. how i do this? <9> one dinamic content <9> i wnat put this inseide my site: as part of it http://www.estadao.com.br/economia/ticker/taxasPt0 <9> hi <10> okay <10> using PHP, how would i return info that's within {} brackets <10> preg_match? <10> anyone? <11> preg_match would work, yes! <12> how can i truncate a string to X characters? <11> substr <13> hi, can someone tell me the regex function for deleting every chars until the first point in a string? <14> Hi guys, I want to be able to recieve and read/store my email through a php app ... how can I do this ? <2> babo: http://nl2.php.net/imap <15> Hi. I have an ISS server running on Windows 2003 Server. I want to enable php_imap.dll and I put it in d:\PHP <15> now I went to php.ini and set extension_dir to d:\php\ but it complains how it can't find the php_imap.dll file, even though it's there. <14> UltimateB| : hi, thanks - everyone keeps recommending IMAP, but from all the reading I've done on IMAP, it seems to be usable only with an installed client side application. Is this correct. I need to be able to send/receive/search emails as easily as you'd post a message on a phpbb board. Is IMAP still what I'm looking for do you think ? <14> Thanks <15> um <2> babo: Title reads: LXI. IMAP, POP3 and NNTP Functions... this section will be the only way for you to access an email server through a php script <14> UltimateB|: which section would that be ? <2> babo: if you've read the function description you would see: imap_search -- This function returns an array of messages matching the given search criteria <2> babo: http://nl2.php.net/imap <2> :/ <2> I think i even awsered this question yesterday also ;) <16> Hi all, on a install RHEL 3 with sendmail 8.12.11 and php 4.3.2; it seems mail() thas not use to $header info to set the From part in the mail <14> UltimateB| : sorry about the newbie q's ... I know nothing about MTA's etc ... I still haven't gotten past the stage where I'm wondering whether I would need an installed client-side app. If I know that that's unnecessary then I can read the function manual a bit more carefully ... <2> babo: ask yourself, is php client side? <16> is this a mis configuration or is this normal ? <14> UltimateB|: oh - ok ... thanks ... :-) <2> no prob <16> all mail has as form "apache@myserver.com" <15> Hi. I have an ISS server running on Windows 2003 Server. I want to enable php_imap.dll and I put it in d:\PHP <15> now I went to php.ini and set extension_dir to d:\php\ but it complains how it can't find the php_imap.dll file, even though it's there. <7> PhoenixMan, try put copy to system32 <15> I did! <15> This should be easy todo! <15> I put it in my c:\winnt directory, my c:\winnt\system32 and my d:\php directory <15> nothing works! <15> PHP Warning: Unknown(): Unable to load dynamic library './php_imap.dll' - The specified module could not be found. in Unknown on line 0 <17> morning all. <15> .......... <15> ?
<15> Alright, my connection froze for NO reason and I lost the message and what I was doing. <15> What do I set extensions_dir to if my extensions are in D:\PHP\ ? <15> PHP Warning: Unknown(): Unable to load dynamic library 'D:\PHP\php_imap.dll' - The specified module could not be found. in Unknown on line 0 <17> Pheonixman: extension_dir = "d:/php/" and/or make sure that is also in your path. <17> (slash direction is arbitrary) <15> PHP Warning: Unknown(): Unable to load dynamic library 'd:/php/php_imap.dll' - The specified module could not be found. in Unknown on line 0 <17> Do you have the dependant libraries as well? <15> Yes. <15> Geez. <15> The php_imap.dll file is in d:\php\ <17> Hey, i just joined, i don' know what you have done so far. (many of the libraries require _additional_ dll's to work) <9> HI. HOW i put one page inside one div <2> !man unclude <2> awww <15> php_imap.dll <17> http://us3.php.net/manual/en/install.windows.extensions.php <17> Looks like imap does not need support dll's. <18> how can i run 3 mysql commands at the same time by php ? <19> Hey. My index.php has a require() to a file which i know exist, and the path is right and the require doesn't error. I added an echo after the require but it doesnt output anything. I ran the file it's including and it has no errors. It seems like it's exiting somewhere but not telling me why :/ <2> PHP_Devil: why do you need to run 3 at one time? If you put the different queries in a different $resultset then you can use all of them in your script. <2> Dangermouse: i had that yesterday with include, ended up te be a parse error anyways, even without error. <18> would: <18> $query = <18> "SELECT * ....". <18> "SELECT * ...."; <18> <18> work ok ? <2> no <19> UltimateB|: Ye, i'm having real trouble. I only seem to get parse errors and blank pages <18> i need run 3 at once, because after: mysql_query($query) or die ('Query problem'); <18> i need to do: if (mysql_affected_rows() != 0) <18> and i want to check how many rows affected in total from ALL 3 mysql queries <15> raah <15> why won't it work <2> php_devil: Ehrm, add up the counts for all 3? <2> Dangermouse: got error_reporting("E_ALL"); ? <18> PhoenixMan would it work ? <18> anyone can tell me for sure how to write a mutli query ? <18> *multiple <19> UltimateB|: error_reporting, display_errors <19> It's E_ALL btw, it's a constant <2> kk <2> Dangermouse: So, your script stops without an error after (during) an include right? <19> Hmm..my index has includes config.inc.php, and so does the other file im including (../config.inc.php), but if i comment the second out, it gets a bit further <2> ... <19> I know that didn't make much sense, sorry. I'm just rambling <2> Well, good luck finding where it goes wrong then <2> Dangermouse: revalidate your php code ( i checked mine yesterday, then loaded it into zend studio and let is check, there was a parse error. But like i said, no error in my screen ). <18> ??? <2> but appearantly its not YOUR php code :X <19> UltimateB|: Don't tell me, I know :P <2> PHP_Devil: you can always try: $sql = "SELECT * FROM table; SELECT * from table2;"; it might work ;) <20> kan i anable some php function for only 1 or 2 virtual server by htaccas or other on my debian ? <2> PHP_Devil: if that doesnt work dont be lazy and split it up <2> crowfoot: think i saw a way once in php manual. A way to enable specific functions. There might be more information there <18> split it up how ? <20> ok, Thanks ! ;-) <15> =( <2> PHP_Devil: i told you, $sql = "query one"; $result1 = mysql_qeury($sql); $sql2 = "query one"; $result2 = mysql_qeury($sql2); <15> =( <15> .. <2> PHP_Devil: then check count row results on each result set, and you can see if it returns anything <15> ? <15> DAMMiT <15> Why won't my library load?!!? <2> leave it for today, try again tomorrow, best way ;) <21> PhoenixMan: sometimes a lib wont load because it's expecting another lib to be in the system path and it isn't <15> erm <15> like which lib <21> PhoenixMan: search for a tool called "dependancy walker" and open the php_imap.dll with it, it will tell you what dll's it depends on and which ones are missing <17> ||cw: i thought that as well, but the PHP page doesn't mention any dependencies. <21> if nothing is missing, then the only reasons it woulnd't load is because either the file is corrupt or it's compiled for a different build of php than what you have
Return to
#php or Go to some related
logs:
perl remove slashes -php #lisp apt-get reconfigure php5-mysql #web #linux starcraft wine presario ubuntu kismet.conf ubuntu #xorg #javascript perl math (2 * substr
|
|