[PHP] Monitoring system resources used by PHP

2007-08-20 Thread Evan Kaufman
I'm looking for a way to monitor the system resources (CPU, memory, Disk I/O, etc) used by the PHP engine on a linux machine. I can't monitor it by the usual means (top, etc), since it runs as part of the apache process(es). Does anyone know if a tool exists from Zend, or a module for Apache, to m

Re: [PHP] Fast search

2006-05-17 Thread Evan Priestley
ter set and the length of the longest pattern, not of the total number of patterns. This particular implementation has some nice side-effects; uncomment the var_dump() line and note how 'pirate' and 'firm' have been

Re: [PHP] New Help with Javascript Navigation

2006-04-26 Thread Evan Priestley
"var a = 3", but a huge number of PHP functions either can't be implemented in Javascript (file_get_contents) or are fundamentally unsafe to implement in Javascript (mysql_query), so you'd end up with a language you couldn't do anything with. Evan On Apr 26

Re: [PHP] New Help with Javascript Navigation

2006-04-26 Thread Evan Priestley
Tell you what: write file_get_contents() in Javascript, and I'll write the rest of it. Evan On Apr 26, 2006, at 4:36 PM, Warren Vail wrote: This brings up a reoccurring issue for me and I'd be interested if anyone else has given it any thought. PHP appears to me to be incompl

Re: [PHP] Filter out MS Word 'quotes' for RSS

2006-04-26 Thread Evan Priestley
On Apr 26, 2006, at 5:45 AM, Kevin Davies wrote: Obviously I need to convert these on entry, or on output into RSS. Does anyone know of an easy way to do this, or is it a case of identifying each unusual character individually? These high-ascii characters have ord() values greater than 12

Re: [PHP] newbie question

2006-04-05 Thread Evan Priestley
On Apr 5, 2006, at 11:41 AM, Jay Blanchard wrote: ^ Not sure if this is just a transcription error, but that should be an 'l' (ell), not a '1' (one) in "nl2br". Evan -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] protecting passwords when SSL is not available

2006-03-28 Thread Evan Priestley
This looks good, as far as I can tell. Good luck with implementation. Evan On Mar 28, 2006, at 2:51 AM, Satyam wrote: You are absolutely right! I love this list! I didn't realize that I was sending the session_id. Let's see if this works. On first serving the login page

Re: [PHP] protecting passwords when SSL is not available

2006-03-27 Thread Evan Priestley
ays "this session has already logged in" will also have expired. I'm not sure if PHP will create an expired session ID for you; presumably it won't, but if you're writing your own session handler or implementing nonced password transmission in some other programming

Re: [PHP] protecting passwords when SSL is not available

2006-03-27 Thread Evan Priestley
ed presumably being the critical periods), the system offers no security over non-nonced password transmission. Evan [1] http://en.wikipedia.org/wiki/Nonce On Mar 27, 2006, at 8:30 AM, Satyam wrote: I know the answer to a secure site is SSL, but what if you are on a shared host, SSL is unava

Re: [PHP] Letters in Loops

2006-03-23 Thread Evan Priestley
On Mar 23, 2006, at 10:08 AM, Ben Miller wrote: In trying to make an alpha list, using the following: for($i=A;$i<=Z;$i++) { echo "$i"; } Produces: A B C... X Y Z AA AB AC... AX AY AZ... all the way to YZ. What am I doing wrong that it's not stopping at just plain old "Z", witho

Re: [PHP] gettting last assigned key in an array

2006-02-10 Thread Evan Priestley
function get_last_key( $array ) { // end( $array ); return key( $array ); return array_search( reset( array_reverse( array_values( array_flip( $array ) ) ) ) ,array_reverse( array_values( array_flip( $array ) ) ) ,true

Re: [PHP] Need help with for loop, pulling MySQL data, completely lost

2005-08-21 Thread Evan Priestley
n of your problem, by the way; this one's tricky and definitely had me for a while when I first ran into it. Evan On Aug 21, 2005, at 7:24 AM, Dan Trainor wrote: Hello, all - As a pet project of mine, I've decided to write a bit of code. This is what I have, and it

Re: [PHP] PHP4 : Installing LDAP without recompiling ?

2004-07-23 Thread Evan Nemerson
le PHP ? Try running phpize in the ext/ldap dir, then do the ./configure make make install dance. You should end up with a nice little ldap.so that you can load with dl() > > Very thanks for your help > > Regards, > Ange. -- Evan Nemerson [EMAIL PROTECTED] http://coeusgroup.com/en

Re: [PHP] Sort a text string by last word before separator

2004-06-23 Thread Evan Nemerson
every entry on arrays/strings and > searched code snippets. Almost all focus on one element arrays such "apple, > orange, peach" rather than 2 or more elements such as "fancy cars, big > trucks, fast dangerous motorcycles," > > Is it even possible to accomplish this t

Re: [PHP] SQL Case sensitivity

2004-06-23 Thread Evan Nemerson
nctions or operators > that remove the case-sensitivity. However, I have tried this where > clause to no avail: > > WHERE LCase(fldBody) LIKE '%$strSearchFor%' > > Any help would be much appreciated! -- Evan Nemerson [EMAIL PROTECTED] http://coeusgroup.com/en -- "

Re: [PHP] [OFF] - Transparency in DHTML layers?

2004-06-07 Thread Evan Nemerson
te perfect, but it shouldn't take too long. I just lost interest after about five minutes ;) function exploderPNGhack() { /* Internet Explorer PNG transparency hack * Evan Nemerson <[EMAIL PROTECTED]> * * This should allow MSIE to properly display transparent PNGs. * * Thanks to: *

Re: [PHP] bg execution

2004-05-22 Thread Evan Nemerson
c('bash -c "exec nohup setsid php server.php > /dev/null 2>&1 &"'); > > ? > > Thanks -- Evan Nemerson [EMAIL PROTECTED] http://coeusgroup.com/en -- "If anyone can show me, and prove to me, that I am wrong in thought or deed, I will gladly change.

Re: [PHP] how to verify PHP has been installed with ldap?

2004-04-30 Thread Evan Nemerson
gt; >> > >> You should see your libphp5.so there with the latest timestamp. if > >> not, see if there are some errors issued with the 'make install' > >> (like are you issuing that as root?) > >> > >> Also, look in the 'apache'

Re: [PHP] how to verify PHP has been installed with ldap?

2004-04-29 Thread Evan Nemerson
gt; You should see your libphp5.so there with the latest timestamp. if > not, see if there are some errors issued with the 'make install' > (like are you issuing that as root?) > > Also, look in the 'apache' section from phpinfo() and look at the > value for '

Re: [PHP] substrings

2004-04-25 Thread Evan Nemerson
> $r = $colors[1] ; > $g = $colors[2] ; > $b = $colors[3] ; > > but it just seems like I should be able to return a list like > > ($r,$g,$b) = fn(operands,$color) ; > > or so. > > > TIA & HAND > > :-D -- Evan Nemerson [EMAIL PROTECTED] http://co

Re: [PHP] SSI and query string variables to PHP

2004-04-25 Thread Evan Nemerson
file...not sure... > > That's why I'm asking everyone. > > Tim. > > At 01:22 AM 4/25/2004, Evan Nemerson wrote: > >On Saturday 24 April 2004 10:29 pm, Tim Traver wrote: > > > Hi all, > > > > > > ok, this may be a dumb

Re: [PHP] SSI and query string variables to PHP

2004-04-25 Thread Evan Nemerson
27;m going to just pretend this paragraph isn't here ;) > > any way around this without making the whole page a php script ? php.net/parse_str > > Thanks, > > Tim -- Evan Nemerson [EMAIL PROTECTED] http://coeusgroup.com/en -- "The greatest mistake is to imagine tha

Re: [PHP] OR

2004-04-25 Thread Evan Nemerson
On Sunday 25 April 2004 12:14 am, Aidan Lister wrote: > if (cond || cond2) > > OR > > if (cond OR cond2) > > > What do you use, and why? Doesn't matter- personal preference. -- Evan Nemerson [EMAIL PROTECTED] http://coeusgroup.com/en -- "There is a certain r

Re: [PHP] PDF Page Pulling

2004-04-07 Thread Evan Nemerson
o be able to pull a certain page out of a multi-page PDF, and then > be able to save that single page to it's own PDF file. > > Anyone know how to do this with free tools? > > Thanks. > > -- > > Adam Voigt > [EMAIL PROTECTED] > > -- > PHP General Mailing L

[PHP] [ANNOUNCE] PHP extension for neural networks

2004-03-31 Thread Evan Nemerson
a bit. I'm sending something over to pecl-dev right now, so hopefully the extension will be there sometime soon. Meanwhile, if you want to play with it, I'd love to get some feedback- positive or negative. Evan Nemerson [EMAIL PROTECTED] http://coeusgroup.com/en -- PHP General Mai

Re: [PHP] Bison and Flex required to install PHP?

2004-03-30 Thread Evan Nemerson
On Tuesday 30 March 2004 06:08 pm, Terence wrote: > checking lex output file root... ./configure: line 2425: lex: command not > found > configure: error: cannot find output from lex; giving up > > and from a search on Yahoo!: > > http://www.madpenguin.org/modules.php?op=modload&name=NS-Comments&fil

Re: [PHP] How to send SMS

2004-03-28 Thread Evan Nemerson
t: Monday, March 29, 2004 12:49 PM > Subject: [PHP] How to send SMS > > > How to send sms with PHP and Mysql and mobil phone Nokia 5110? > > > > -- > > PHP General Mailing List (http://www.php.net/) > > To unsubscribe, visit: http://www.php.net/unsub.php -- Eva

Re: [PHP] something like __URL__ (analogous to __FILE__)

2004-03-23 Thread Evan Nemerson
> > So no matter what file I use (like rabbits.php) and I include config.php, > CONFIG_FILE_URL will always return the url for the config file and NOT the > file doing the calling (rabbits.php). > > Sorry for the longwinded explanation. I hope someone can help! Thank you. >

Re: [PHP] Storing encrypted data in a database with

2004-03-23 Thread Evan Nemerson
x27; ) ' > at line 1 > > Now, if you look closely you can see and additional single quote in > ÃR'âHXâ. I cannot use addslashes() here can I? Or should I base64_encode > each item and then decode on the way back out. Any thoughts would be > appreciated. > > TVMIA! -

Re: [PHP] SQL Injection check (mysql)

2004-03-22 Thread Evan Nemerson
Chris Shiflett - http://shiflett.org/ > > PHP Security - O'Reilly > Coming mid-2004 > HTTP Developer's Handbook - Sams > http://httphandbook.org/ > PHP Community Site > http://phpcommunity.org/ -- Evan Nemerson [EMAIL PROTECTED] http://coeusgroup.com/en

Re: [PHP] Php mailer

2004-03-19 Thread Evan Nemerson
IMP and SquirrelMail are both nice. http://www.horde.org/imp/ http://www.squirrelmail.org On Friday 19 March 2004 03:40 pm, Mrs. Geeta Thanu wrote: > Hi all, > > I am new to php and want to use php for our mailing program. > At present we have servlet program what the users access it thru web >

Re: [PHP] Pear Package...

2004-03-15 Thread Evan Nemerson
cli; `pear install DB`, for example > the one I use along with the web files. I tried the include and require > function but no luck. > >Why is that? What workaround do I need on this? > > FletchSOD -- Evan Nemerson [EMAIL PROTECTED] http://coeusgroup.com/en -- "...t

Re: [PHP] Dumb

2004-03-11 Thread Evan Nemerson
t php4 to use the mysql4 client? > > I would like to know if this is possible just using rpms. I could do it > re-compiling everything myself, but I kind of want to stick to the rpm > style installation on this server if possible. > > Thanks for any help. -- Evan Nemerson [EMAIL PROTEC

Re: [PHP] Problem with PDFlib

2004-03-11 Thread Evan Nemerson
> > Line 18 is the following: PDF_set_info($p, "Creator", "invoice.php"); > > It will do that for any other line too if i comment that out (that is using > pdf stuff) > > Any ideas? Thanks > > Teren -- Evan Nemerson [EMAIL PROTECTED] http://coeusgroup

Re: [PHP] file management system

2004-03-11 Thread Evan Nemerson
bout the files, and to rate these. > - we're looking for such a system as Free software (GPL for example) > - if all those feteares are not available in an existing system, > we will add those, but if such a system do not exist, is there people > interested in the same features to

Re: [PHP] AI:Categorizer

2004-03-10 Thread Evan Nemerson
> Szatan, Szatan...http://666-666.0-700.pl foReVeR( * ) > Poznaj jej zwiewne kształty... http://www.opera.com 007 -- Evan Nemerson [EMAIL PROTECTED] http://coeusgroup.com/en -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Spelling without Aspell/Pspell

2004-03-10 Thread Evan Nemerson
ast aspell has a CLI- enchant probably does too. Wouldn't be too difficult to hack something together. > > In other words, something that will work on a base install of PHP4.2+. > > --- > Justin French > http://indent.com.au -- Evan Nemerson [EMAIL PROTECTED] http://coe

Re: [PHP] Compiling PHP classes/libraries to objects

2004-03-08 Thread Evan Nemerson
On Monday 08 March 2004 04:44 pm, Tariq Murtaza wrote: > Hi All > > Is there any way to use compiled form of libraries/classes in PHP. > Comments please... http://turck-mmcache.sourceforge.net/ > > Regards, > Tariq -- Evan Nemerson [EMAIL PROTECTED] htt

Re: [PHP] php debug

2004-03-08 Thread Evan Nemerson
oducing code, I'll take a look at it. Try to get it down to as few lines of possible. -- Evan Nemerson [EMAIL PROTECTED] http://coeusgroup.com/en -- "If you would be a real seeker after truth, you must at least once in your life doubt, as far as possible, all things."

Re: [PHP] PHP support C++?

2004-03-08 Thread Evan Nemerson
imple function. Why not just rewrite in in PHP? > > Thanks, > Kenneth -- Evan Nemerson [EMAIL PROTECTED] http://coeusgroup.com/en -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Access DNS record

2004-02-26 Thread Evan Nemerson
> Jeff > > > - > Do you Yahoo!? > Yahoo! Mail SpamGuard - Read only the mail you want. -- Evan Nemerson [EMAIL PROTECTED] http://coeusgroup.com/en -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Apache/IE hangs with PHP

2004-02-26 Thread Evan Nemerson
ipt, I get the answer immediately. > > I've tried almost everything, Apache 2.0, PHP5, disabling Keep-Alive in > Apache, nothing works. > > What am I doing wrong? Is that a natural behaviour. > > Thanks for your help, > Vincent -- Evan Nemerson [EMAIL PROTECTED] http

Re: [PHP] system / exec Question...

2004-02-23 Thread Evan Nemerson
" > > Gary Sanders > Sr. Engineer - replaytv > Digital Networks North America > 2600 San Tomas Expwy. > Santa Clara, CA 95051-0953 > 408-565-7103 -- Evan Nemerson [EMAIL PROTECTED] http://coeusgroup.com/en -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Detecting Binaries

2004-02-23 Thread Evan Nemerson
ary file URL: $url\n"; > $kill = mysql_unbuffered_query("DELETE FROM search WHERE > url_id='$url_id'"); > continue 2; > } > ++$ckbin; > } > I know it looks kind of funky out of context, but it work

Re: [PHP] saving form data

2004-02-23 Thread Evan Nemerson
bly your best option would be to send a POST request through the HTTPD via a socket- there are libraries out there to help you do this easily, try PEAR, hotscripts, phpclasses, etc. > > Thanks! > > -- > > Charlie Fiskeaux II > Media Designer > Cre8tive Group >

Re: [PHP] Finding out the local path to a file.

2004-02-23 Thread Evan Nemerson
n by > using phpinfo() point to the location of the file, not the folder I'm > requesting. > > Any ideas? dirname($_SERVER['SCRIPT_FILENAME'])? > > //Simon -- Evan Nemerson [EMAIL PROTECTED] http://coeusgroup.com/en -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: Re[2]: [PHP] Detecting Binaries

2004-02-23 Thread Evan Nemerson
27;s off the top of my head, which means two things: (1) i may be forgetting something, and (2) I need a life ;) I'm not up to speed on this thread, but perhaps you could (ab)use some techniques from natural language processing? May be overkill, though ;) > > -- > Best rega

Re: [PHP] Php and GpG

2004-02-23 Thread Evan Nemerson
> [1] http://www.php.net/popen > [2] http://www.php.net/ref.exec > [3] http://www.php.net/operators.execution > > -- > Adam Bregenzer > [EMAIL PROTECTED] > http://adam.bregenzer.net/ -- Evan Nemerson [EMAIL PROTECTED] http://coeusgroup.com/en -- PHP General Mailing Li

Re: [PHP] Possible to write CRC/MD5 to the file?

2004-02-22 Thread Evan Nemerson
hack GPG a bit (not as difficult as you'd think) to have the PGP stuff in PHP comments, but i think you could do it... Sorry, I'm rambling. > > Just some thoughts. > > //Simon -- Evan Nemerson [EMAIL PROTECTED] http://coeusgroup.com/en -- PHP General Mailing List (http

Re: [PHP] PHP & PDFs...

2004-02-19 Thread Evan Nemerson
ant is a PDF of the first page of another PDF, right? > > Russ Jones -- Evan Nemerson [EMAIL PROTECTED] http://coeusgroup.com/en -- "They that can give up essential liberty to obtain a little temporary safety deserve neither liberty nor safety." -Benjamin Franklin -- PHP

Re: [PHP] Threading & PHP

2004-01-24 Thread Evan Nemerson
mpressed, and filed in the database > or a file system. This can take several seconds, and I'd prefer that > the user doesn't have to wait for the process to complete. > > How might I be able to make some PHP code run as a "thread" that would > serve these p

Re: [PHP] Can we make .exe programs with php?

2004-01-24 Thread Evan Nemerson
piled one. > > -- > "Half the people know what they're talking about, and the > other half are writing code." -- Evan Nemerson [EMAIL PROTECTED] http://coeusgroup.com/en -- "...the whole idea of revenge and punishment is a childish daydream. Properly speaking, t

Re: [PHP] Generating PDF

2003-12-31 Thread Evan Nemerson
html/test/pdf/OrderPdf.class on line 4 > Do you have permissions to write to/create philosophy.pdf? Does pdf_begin_page return TRUE or FALSE? What happens when you use "" for filename (ie create the file in memory)? > > To me this example seems right, and the function calls se

Re: [PHP] Re: basic set and read a cookie probs

2003-12-25 Thread Evan Nemerson
sh it I try to > > see > > > the cookie with this: > > > > if ($HTTP_COOKIE_VARS[remailcookie]) { > > print ("remail cookie exists"); } > > else { > > print ("no cookie"); > > } > > > > This yeilds "no cookie

Re: [PHP] programming the onclick() event in an anchor

2003-12-25 Thread Evan Nemerson
rved.variables.cookies > do it. Does anyone have experience doing this? Sample code would be > greatly appreciated. http://www.webreference.com/js/column8/functions.html > > Peter -- Evan Nemerson [EMAIL PROTECTED] http://coeusgroup.com/en -- "There is a certain right by which we

Re: [PHP] URL regex

2003-12-19 Thread Evan Nemerson
On Friday 19 December 2003 11:22 am, Evan Nemerson wrote: > Hey does anyone have a good regex laying around for URLs? ereg or preg, > doesn't matter. Okay finally found this: http://www.regexp.org/msg.php?uid=512 wow. Seriously- wow. > > > > -- > Evan Nemerson

[PHP] URL regex

2003-12-19 Thread Evan Nemerson
Hey does anyone have a good regex laying around for URLs? ereg or preg, doesn't matter. -- Evan Nemerson [EMAIL PROTECTED] http://coeusgroup.com/en -- "Truth, like gold, is to be obtained not by its growth, but by washing away from it all that is not gold. " -Leo Niko

Re: [PHP] Manage link.

2003-12-18 Thread Evan Nemerson
P Conference, > are pleased to announce a new monthly version of their print > publication. For more information, you can go here: href=\"http://www.google.com\";>url > Thanks. > -- > > > Thanks, > Vincent. -- Evan Nemerson [EMAIL PROTECTED] http://coeusgroup

Re: [PHP] (0t) SSH cp (copy help)

2003-12-11 Thread Evan Nemerson
l evaluation version or non-commercial version. It > has the standard SSH terminal, but it also features an SSH File Transfer > client which will allow you to do what you want. openssh also included an sftp client. IIRC, there is a pretty good win32 port out there. And it's free > &

Re: [PHP] Palm OS Processor

2003-12-11 Thread Evan Nemerson
make some > > complex calculator functions on it and use it for school work or > > whatever else may come my way. Thanks! > > > > Stephen Craton -- Evan Nemerson [EMAIL PROTECTED] http://coeusgroup.com/en -- "Truth, like gold, is to be obtained not by its growth,

Re: [PHP] php .htaccess autologin

2003-12-11 Thread Evan Nemerson
incerely doubt that would do anything. I just don't think there's a way to ask the browser to set that info through http. Maybe ask @ javascript forum? If you find a solution, I'd love to hear it... > > Since the .htaccess vars are stored in the browser, should I be looking at

Re: [PHP] PHP Math Question

2003-12-11 Thread Evan Nemerson
> And so on... > > Is anyone good at math, that can throw me a bone? Modulus operator. // untested function map($n, $x) { return (($x-1) % $n)+1; } > > Thanks y'all, > Mike D > > > .... > Mike Dunlop > AWN, Inc. > // www.awn.com

Re: [PHP] Compiling...hellllp!

2003-12-11 Thread Evan Nemerson
n/installation.php > > > > the only requirement is that you must include '--enable-mmcache=shared' > > as > > an > > > argument to the configure script. If the server is already set up, you > > should > > > do a phpinfo() to see what was sent to configur

Re: [PHP] Fatal Error: PDFlib error ...

2003-12-10 Thread Evan Nemerson
; Why is that? google (including quotes): "must not be called in 'object' scope" result #2: http://www.alt-php-faq.org/local/87/ Rather cryptic error message... hmpf. > > > Any help would be great. > > Regards, > Matthias -- Evan Nemerson [EMAIL PROT

Re: [PHP] Php shell scripting

2003-12-10 Thread Evan Nemerson
gt; > Jake McHenry > Nittany Travel MIS Coordinator > http://www.nittanytravel.com -- Evan Nemerson [EMAIL PROTECTED] http://coeusgroup.com/en -- "They that can give up essential liberty to obtain a little temporary safety deserve neither liberty nor safety." -Benjamin Frank

Re: [PHP] Compiling...hellllp!

2003-12-10 Thread Evan Nemerson
and use that exact command plus the mmcache thing above. This will decrease the likelyhood of a snafu. > > > Thanks, > -Ryan > > > http://Bestwebhosters.com -- Evan Nemerson [EMAIL PROTECTED] http://coeusgroup.com/en -- "I am indeed amazed when I consider how weak my mind is and how prone to error. " -Rene Descartes -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Random Numbers..

2003-12-07 Thread Evan Nemerson
cho $quotes[0]; but much better speed-wise to do it from the DB. > > But I couldn't get the code to work. Any suggestions on either how to > write the above, or made the MySQL RAND() function, more random? um, yeah. -- Evan Nemerson [EMAIL PROTECTED] http://coeusgroup.com/en -- &

Re: [PHP] Can I request ?

2003-12-07 Thread Evan Nemerson
hit a wall, but it's not really a good idea to ask someone to do it for you, unless you're going to pay them. If you want to pay someone, this is a great place to find experienced coders... > > Thnaks -- Evan Nemerson [EMAIL PROTECTED] http://coeusgroup.com/en -- "I am indee

Re: [PHP] Comment alignment in config.m4

2003-12-05 Thread Evan Nemerson
rrect: > > PHP_ARG_ENABLE(my_module, whether to enable my_module support, > dnl Make sure that the comment is aligned: > [ --enable-my_module Enable my_module support]) > > > Thank you in advance. -- Evan Nemerson [EMAIL PROTECTED] http://coeusgroup.com/en -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] xml parser und bestehende variablen - multilinguale app

2003-11-23 Thread Evan Nemerson
27; $no.' In this case one gets the contents of the variable not indicated, but einfahc the ' $no.' stringer. What there can one do? I can not possibly all write the text split up. That out page into one xml file is completely practically above all if it several languages beco

Re: [PHP] fighting with functions

2003-11-21 Thread Evan Nemerson
ring the array so I may reference "item" and "price" as I am now > doing in my functions or learn how to change the functions accordingly. > > I am also pretty sure that my functions are not quite right. I am also > not sure how to link the right answers to get my tabl

Re: [PHP] XML Parsing....

2003-11-21 Thread Evan Nemerson
xml_parser_free($parser); > --snip-- > > The problem here is that I have like two different XML encoding > format Do you actually have data in two diferent formats in the same XML file, or can you just change xml_parser_create to UTF-8 and be done with it? Does the

Re: [PHP] On-the-fly encryption

2003-11-21 Thread Evan Nemerson
dsniff/snort/whatever and get all the goods without ever bothering to break into your box. I don't know what problem you're trying to solve, so I won't suggest an alternative course of action, but if you'd like to send your problem to the list, I (and probably o

Re: [PHP] mcrypt libraries?

2003-11-18 Thread Evan Nemerson
ead the next step: Installation > > http://php.net/mcrypt > > > > > > Curt > > Yes I have and I guess I was looking for a method of using the libmcrypt > library without having to recompile php. Sorry for the confusion. Have you tried using phpize? -- Eva

Re: [PHP] Cannot bind to port 80

2003-11-12 Thread Evan Nemerson
ething you're not telling us? > upgrade problem, not apache. Thanks > > Teren -- Evan Nemerson [EMAIL PROTECTED] -- "If anyone can show me, and prove to me, that I am wrong in thought or deed, I will gladly change. I seek the truth, which never yet hurt anybody. It is only

Re: [PHP] First test release of BTportal made!!!!

2003-11-12 Thread Evan Nemerson
ople seem to be pro-accouncements. http://marc.theaimsgroup.com/?l=php-general&m=106567228019195&w=2 -- Evan Nemerson [EMAIL PROTECTED] http://coeusgroup.com/en -- "I am indeed amazed when I consider how weak my mind is and how prone to error. " -Rene Descartes -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] recursive acronym - PHP

2003-11-02 Thread Evan Nemerson
eProcessor, but why is recursive?, I person > told me that it could be wroten as Pre Hypertxt Processor, thanks. -- Evan Nemerson [EMAIL PROTECTED] -- "Businesses may come and go, but religion will last forever, for in no other endeavor does the consumer blame himself for product failure.&

Re: [PHP] Favorite Online Language Guide

2003-10-29 Thread Evan Nemerson
/language.basic-syntax has a syntax guide On Wednesday 29 October 2003 01:40 pm, Robb Kerr wrote: > What's your favorite online Php language guide? I'm a newbie and most > interested in a syntax guide. > > Thanx, -- Evan Nemerson [EMAIL PROTECTED] -- "If you would be a real s

Re: [PHP] Parsing a tab delimited log file

2003-10-29 Thread Evan Nemerson
CTED] 0 015188 > 1 2003-10-26 0:45:59 GMT 0 Version: > 95.5329 - - [EMAIL PROTECTED] - > > 2003-10-26 0:45:59 GMT 192.168.1.2 SMTP-Server.domain.com - > Exchange-Server 10.0.0.50 [EMAIL PROTECTED] 1025 > [EMAIL PROTECTED] 0

Re: [PHP] gzcompress/gzdeflate default compression level?

2003-10-29 Thread Evan Nemerson
e? IIRC the default value is -1, which zlib currently converts to 6. > Thanks -- Evan Nemerson [EMAIL PROTECTED] -- "To think is to differ." -Clarence Darrow -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] quotes in php.ini

2003-10-29 Thread Evan Nemerson
On Wednesday 29 October 2003 12:30 am, - Edwin - wrote: > On Tue, 28 Oct 2003 22:05:56 -0800 > > Evan Nemerson <[EMAIL PROTECTED]> wrote: > > On Tuesday 28 October 2003 11:59 pm, - Edwin - wrote: > > > Hi, > > > > > > On Wed, 29 Oct 2003 02:10:49 -

Re: [PHP] quotes in php.ini

2003-10-29 Thread Evan Nemerson
a doesn't like it. I don't have IE, and am too lazy to boot up a gecko-powered browser. Even if it _is_ valid (which I really don't think is the case), it's not usable. I sincerely doubt any parsers will figure it out. > > - E - > ___

Re: [PHP] Calendar Script

2003-10-29 Thread Evan Nemerson
__ > PHPLover > > * : [EMAIL PROTECTED] > > "Göd döësn't pläy dícë." > - Älbërt Ëínstëín -- Evan Nemerson [EMAIL PROTECTED] -- "The people are the only sure reliance for preservation of our liberty." -Thomas Jefferson -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] quotes in php.ini

2003-10-29 Thread Evan Nemerson
On Tuesday 28 October 2003 10:46 pm, [EMAIL PROTECTED] wrote: > Evan Nemerson wrote: > >Is anyone aware of a way to get double quotes in the php.ini file? For > >instance, I'd like to be able to set error_prepend_string to " >color=\"#ff\">" (whic

Re: [PHP] quotes in php.ini

2003-10-29 Thread Evan Nemerson
with ini entries, and I'm wondering how people are going to specify colour. I've even checked on HTML entities... Just trying to cover my bases before I send to internals@ Any other ideas? -- Evan Nemerson [EMAIL PROTECTED] -- "A popular government, without popular informatio

Re: [PHP] quotes in php.ini

2003-10-28 Thread Evan Nemerson
On Tuesday 28 October 2003 11:29 pm, Rolf Brusletto wrote: > Evan Nemerson wrote: > >Is anyone aware of a way to get double quotes in the php.ini file? For > >instance, I'd like to be able to set error_prepend_string to " >color=\"#ff\">" (which do

[PHP] quotes in php.ini

2003-10-28 Thread Evan Nemerson
Is anyone aware of a way to get double quotes in the php.ini file? For instance, I'd like to be able to set error_prepend_string to "" (which doesn't work). The only work-around I can think of is doing ini_set()'s in an auto_prepend_file, and that's not acceptabl

Re: [PHP] Problem running ./configure php-4.3.3

2003-10-28 Thread Evan Nemerson
> Yahoo! Mail: 6MB di spazio gratuito, 30MB per i tuoi allegati, l'antivirus, > il filtro Anti-spam > http://it.yahoo.com/mail_it/foot/?http://it.mail.yahoo.com/ -- Evan Nemerson [EMAIL PROTECTED] -- "A leader is the wave pushed ahead by the ship." -

Re: [PHP] How do i mod php.ini to use an outside smtp?

2003-10-28 Thread Evan Nemerson
in or ip instead of a path?? > > - MD -- Evan Nemerson [EMAIL PROTECTED] -- "There is a certain right by which we may deprive a man of life, but none by which we may deprive him of death." -Nietzsche -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] show_source

2003-10-28 Thread Evan Nemerson
_ > See when your friends are online with MSN Messenger 6.0. Download it now > FREE! http://msnmessenger-download.com -- Evan Nemerson [EMAIL PROTECTED] -- "A popular government, without popular information, or the means of acquiring it, is but a

Re: [PHP] Libs?

2003-10-28 Thread Evan Nemerson
ked into it. > > Thanks! > Robert > > ~~~ > Anytime four New Yorkers get into a cab together without arguing, a bank > robbery has just taken place. > > -Johnny Carson. > ~~~

Re: [PHP] SESSIONMANAGEMENT -- gute php mailing list / gute leute

2003-10-28 Thread Evan Nemerson
cht global erreichbar (nach Redirect) > > > > Ich bin für jeden Tipp dankbar, der mich weniger verzweifeln läßt. > > > Tausend Dank ! > > > Christoph Lockingen -- Evan Nemerson [EMAIL PROTECTED] -- "The greatest mistake is to imagine that the human being is an auton

Re: [PHP] XML/MySQL

2003-10-26 Thread Evan Nemerson
t; > > > > > > There are two approaches I think. One is to use the XML DOM, the other is > simply to join lots of strings together. What is the best approach? > > Thanks (and this is my first post to a newsgroup, and my first post to this > one,

Re: [PHP] Strange error in PHP 4.3.4RC2

2003-10-26 Thread Evan Nemerson
ly_ where the script bombs? > > Ciao, > >Fabio -- Evan Nemerson [EMAIL PROTECTED] -- "A leader is the wave pushed ahead by the ship." -Leo Nikolaevich Tolstoy -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Find the last friday of each month.

2003-10-26 Thread Evan Nemerson
I > am failing miserably. It keeps giving me October 10th. So, I scrapped it. > > Basically, I just want to show what the last friday of the month is, and if > that date has already passed, show the last friday of the next month. > > How can I do that? -- Evan Nemerson [EMAIL PRO

Re: [PHP] Session problem

2003-10-26 Thread Evan Nemerson
g > > Notice: Undefined index: name in C:\Project Codes\www\testPHP\second.php on > line 6 > > > > The same thing works well on live Linux server. I checked php.ini options > such as session enable / register global etc - both r same. Please help > me. Is it a

Re: [PHP] Session problem

2003-10-26 Thread Evan Nemerson
to make use of error_reporting(0); in second.php but then screen > becomes blank, it does not show me the output as "Manisha" > > manisha > > > > "Evan Nemerson" <[EMAIL PROTECTED]> wrote in message > news:[EMAIL PROTECTED] > > > Your Lin

Re: [PHP] limits on variable/classname length

2003-10-25 Thread Evan Nemerson
ocate for the > names of classes and other things. > > Greg -- Evan Nemerson [EMAIL PROTECTED] -- "The people are the only sure reliance for preservation of our liberty." -Thomas Jefferson -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Re: reading/parsing file names

2003-10-25 Thread Evan Nemerson
A little something I whipped up to avoid my zoology homework (I /really/ don't care that the damn sperm of nematodes are unusual because they lack a flagellum and acrosome). Conclusion: substr is faster than preg_match [tadpole tadpole]$ php -q ./bench.php substr: 3.6424000263214 PCRE: 5.12138

Re: [PHP] ADSI & PHP

2003-10-25 Thread Evan Nemerson
- Jeremy > Pc Technics, Inc. > www.pc-technics.com > 100% FREE Internet Hosting! -- Evan Nemerson [EMAIL PROTECTED] -- "...the whole idea of revenge and punishment is a childish daydream. Properly speaking, there is no such thing as revenge. Revenge is an act which you want to co

  1   2   3   4   5   >