[PHP] PHP 5 and COM problem

2003-07-21 Thread Aaron
I just updated my binaries to their PHP 5 counterparts (from http://kromann.info/php4.php) and im getting issues with COM. The following line: $foo=new COM("GnucDNA.Core"); Generates this error: Fatal error: Class 'com' not found in on line The COM object has been registered and if it means

[PHP] Re: ARRRRGGGGHHHH! Weird Problems!

2002-08-01 Thread Aaron
at Amazon.com"; $ltotalv = $ltotalv + $lyric_array[3]; } ?> I was looking at the current code and wasn't seeing the purpose for the for loop. If I'm incorrect and you are using it for a specific purpose, please let me know. -aaron "Tony Harrison" <[EMAIL PROTECT

[PHP] Re: adding info to an array?

2002-08-01 Thread Aaron
just assign the value to $ra[] "Hawk" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > I have a for loop, and an if that checks something, and if true, it's > supposed to add info to an array called $ra, but instead of adding it to the > array it seems like it'

[PHP] Re: adding info to an array?

2002-08-01 Thread Aaron
can we see the code? -aaron "Hawk" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > Tried that now, and with the same results > print_r($ra); still only shows the last info inserted in the array :/ > > "Aaron" &l

Re: [PHP] JSP vs. PHP?

2002-08-12 Thread Aaron
Julio Nobrega wrote: >[EMAIL PROTECTED] em Friday 09 August 2002 14:14 foi agraciado com uma >resposta por: > > > >>but how many huge dot-coms wrote their sites in PHP? >> >> > > We did :-) > > A Linux/Apache/PHP/Mysql system that will run credit solicitations for >financial institution

[PHP] HTTPS problem with forms

2002-10-24 Thread Aaron
uot; error. Occasionally it will work fine, but most of the time is errors. If I refresh it will eventually bring up the page. Has anybody else had this error? I'm not sure if it is PHP or mod_ssl or what. Thanks, Aaron Willis [EMAIL PROTECTED] -- PHP General Mailing List (http://www.php.net/)

[PHP] Re: POSIX and PCRE help

2002-11-16 Thread Aaron
it('/;/', $string, -1, PREG_SPLIT_NO_EMPTY); Then split by the = or : // split by = or : foreach ($stringArray as $item) { list($tag, $element) = preg_split('/\:|\=/', $item, 1, PREG_SPLIT_NO_EMPTY); echo "$tag => $element"; } -aaron &q

[PHP] Re: php, frames

2002-11-16 Thread Aaron
uot;SELECT......WHERE tableID = '$tableID'"); while ($row = mysql_fetch_array($query)){ ... display something ... } } --aaron "Adrian Partenie" <[EMAIL PROTECTED]> wrote in message 004b01c28d67$52fe9880$0bc46150@olimp">news:004b01c28d67$5

[PHP] Re: POSIX and PCRE help

2002-11-17 Thread Aaron
In what case would you have a semi-colon in the string? "Orangehairedboy" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > Aaron, > > Thanks for the advise, but I'm got a problem. If I first split it up by /;/, > how do

Re: [PHP] STRICTLY CONFIDENCIAL

2002-11-17 Thread Aaron
idiot. desmond west wrote: #20 BOTHA CRESCENT, SADTON,JOHANNESBURG, SOUTH AFRICA. Tel/Fax:+:+27-834377724 E-mail:[EMAIL PROTECTED] Dear sir, In order to transfer out (USD 126 M) One hundred and twenty six million United States Dollars) from NED Bank in south africa. I have the courage to ask y

Re: [PHP] STRICTLY CONFIDENCIAL

2002-11-17 Thread Aaron
obviously yes. the poor grammer, the uk based yahoo email account. The fact that the moron posted it to a email list. I've heard this scam before. and recieved email for it before. Lejanson C. Go wrote: scam Aaron wrote: idiot. desmond west wrote: #20 BOTHA CRESCENT, SADTON,JOHANNE

[PHP] Postgres query problem

2002-06-11 Thread Aaron
I have a sql quer like this : " select a.title AS bugga, b.id AS asdf FROM tableone AS a FULL JOIN tabletwo AS b ON(a.title=b.filething)" anyway, thats a test query which is slightly smaller then the one I want. BUT when i use it from the command console in postgres, it works no problem but i

Re: [PHP] Postgres query problem

2002-06-12 Thread Aaron
: >Double check that you have a.title, and not just title by itself. Two >tables must have a title column, so make sure you specify which one you >mean. > >---John Holmes... > >- Original Message - >From: "Aaron" <[EMAIL PROTECTED]> >To: <[EM

Re: [PHP] Keeping "Secrets" in PHP Files

2002-07-01 Thread Aaron
try this for now. http://pobs.mywalhalla.net/ depending on how fancy your code is it may not work. Or you'll only have to change a few little things. basically what it does is : for($bob=1; $bob<10; $bob++){ echo $bob; $sam=$bob; } Converts above to something like for($edghr354dfga=

Re: [PHP] øøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøøø

2002-07-09 Thread Aaron
Yes they give instructions on how to unsubscribe. Its quite simple. Liam Gibbs wrote: >Oh, for Pete's sake, GROW UP, man! > >Stop and think for a second! Why not try visiting >php.net like you did to sign up >(http://www.php.net/mailing-lists.php) instead of >spamming the rest of us about with t

[PHP] php 4.1 and DOMXML question.

2002-01-15 Thread Aaron
How the hell do I get the content of a node before all I had to do was go $node->content now it doesnt seem to work. I know they changed $node->name to $node->tagname. I tried, content, tagcontent, value, mmm some other things. I give up, couldnt find any info anywhere either... theres a

[PHP] php 4.1 and DOMXML question.

2002-01-15 Thread Aaron
How the hell do I get the content of a node before all I had to do was go $node->content now it doesnt seem to work. I know they changed $node->name to $node->tagname. I tried, content, tagcontent, value, mmm some other things. I give up, couldnt find any info anywhere either... theres a

Re: [PHP] Re: php 4.1 and DOMXML question.

2002-01-16 Thread Aaron
gt;if ( $val->type == XML_TEXT_NODE ) { > $content .= $val->content; >} >} >return $content; >} >} > >Peter > > >"Aaron" <[EMAIL PROTECTED]> wrote in message >[EMAIL PROTECTED]">news:[EMAIL PR

Re: [PHP] Re: php 4.1 and DOMXML question.

2002-01-17 Thread Aaron
Peter Clarke wrote: >"Aaron" <[EMAIL PROTECTED]> wrote in message >[EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > >>Well that works. But its a little bizzare. I have to do that to get the >>content of a node even when that node has no children... >

Re: [PHP] Re: PHP vs Java reliability

2002-01-23 Thread Aaron
Geoff Caplan wrote: >Michael > >>>the "Why PHP" on zend.com is a great place to go for this sort of >>> >stuff... > >>Honestly, it doesn't seem all that professional a resource paper... >> > >I would tend to agree - not something you could show to a hard-headed >corporate purchasing committee wit

[PHP] multi line string replace

2002-05-22 Thread Aaron
cant seem to get it to work say this is the string " " replace with "hello". problem is, i cant even get other functions to get the position of the string. No problems finding or matching replacing " " or "" but together no luck. strstr,

Re: [PHP] multi line string replace

2002-05-22 Thread Aaron
ow where exactly the problem is with ur code... > > > > -Original Message- > From: Aaron [ mailto:[EMAIL PROTECTED] ] > Sent: Thursday, 23 May 2002 7:41 PM > To: [EMAIL PROTECTED] > Subject: [PHP] multi line string replace > > > cant seem to get it to work &g

[PHP] Problems with upload

2002-05-30 Thread Aaron
I am trying to upload files to a server. I have the script and it works on other servers but when I try to upload to this paticular server, I get the following: Warning: Max file size of 2 bytes exceeded - file [userfile] not saved in Unknown on line 0 I have checked the php.ini file and the u

[PHP] can't insert into mssql smalldatetime

2001-11-09 Thread aaron
ware','$hardw are','$printer','$network','$os','$priority','1996-05-01')"; $cur1 = MSSQL_QUERY($db1); But when I do a select of the submitdate field, it always turns up as today's date no matter what I try to insert. Do I need to

[PHP] catching parse error.

2001-11-20 Thread Aaron
ok what I want to do if possible is i have file index.php then I include the file x.class now. index.php calls x.class IF x.class has a parse error just return false to index.php? or just return nothing, But dont stop the execution of index.php Is this possible? -- PHP General Maili

[PHP] So this isnt a bug?

2005-03-26 Thread Aaron
http://bugs.php.net/bug.php?id=32449 I dont see how its not a bug. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: So this isnt a bug?

2005-03-27 Thread Aaron
Ive made it clear. If I use the success_box function that uses java to redirect it works perfectly, but if I use the header command the variables are stripped. This is only when a $_FILE is passed. "A. S. Milnes" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED

[PHP] PHP make test error report question

2007-09-10 Thread aaron
anything critical in the test summary. Can you confirm where I need to send this request to and obtain some help? Thanks in advance for anybodies help and direction, Aaron -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] RE: [PHP-DB] Help with date

2002-11-28 Thread Aaron Wolski
Well... 1 day = 60*60*24 = 86400 You figure it out from there :) Just one example. Aaron -Original Message- From: Dankshit [mailto:[EMAIL PROTECTED]] Sent: November 28, 2002 12:06 PM To: PHP; PHP1 Subject: [PHP-DB] Help with date How can i add days to a date

[PHP] php problem

2003-02-04 Thread Aaron Downes
will be appreciated. Best regards, Aaron Downes

[PHP] Apache 2.0 and PHP

2003-03-14 Thread Michael Aaron
Sorry if this has been answered before but I can not find it anywhere: Why does the PHP docs. state: "Do not use Apache 2.0 and PHP in a production environment neither on Unix nor on Windows. " What is the reason for this Warning? Thanks in advance. Mike Aaron -- PHP General Ma

[PHP] Storing large amounts of text in db

2003-07-07 Thread Aaron Axelsen
way to read that file, store the information in the database so it is easily accessable later. I thinkg that longtext would be the right mysql option for me. One problem I need to conquer is how to maintain formatting in the documents. Any suggestions and comments are welcome. Thanks. - --- Aaron

RE: [PHP] Sessions

2003-07-08 Thread Aaron Axelsen
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Here is a good session tutorial, maybe it will help you see something your missing. http://www.sitepoint.com/article/319 - --- Aaron Axelsen AIM: AAAK2 Email: [EMAIL PROTECTED] Want reliable web hosting at affordable prices? www.modevia.com

RE: [PHP] $_POST problem

2003-07-09 Thread Aaron Axelsen
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Try: $img_keywords = trim({$_POST["keywords"]}); - --- Aaron Axelsen AIM: AAAK2 Email: [EMAIL PROTECTED] Want reliable web hosting at affordable prices? www.modevia.com Web Dev/Design Community/Zine www.developercube.com - ---

RE: [PHP] $_POST problem

2003-07-09 Thread Aaron Axelsen
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Sometimes in situatinos like that, it does the trick for me, im not really sure why though .., I just now it works :) - --- Aaron Axelsen AIM: AAAK2 Email: [EMAIL PROTECTED] Want reliable web hosting at affordable prices? www.modevia.com Web Dev

RE: [PHP] $_POST problem

2003-07-09 Thread Aaron Axelsen
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Whenever I call a vriable, I do something like $_POST['keyword'] Are you just getting a parse error? - --- Aaron Axelsen AIM: AAAK2 Email: [EMAIL PROTECTED] Want reliable web hosting at affordable prices? www.modevia.com Web

[PHP] Storing HTML string in database

2003-07-10 Thread Aaron Axelsen
It failes to work, because the $output strings contains "", which messes things up. Is there some way that this can be ignored while entering into the databse? Or am I better of replace all the "" with ''? Thanks for the assistance. - --- Aaron Axelsen AIM: AAAK2

RE: [PHP] Storing HTML string in database

2003-07-10 Thread Aaron Axelsen
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 I had forgotten about that, thanks alot - --- Aaron Axelsen AIM: AAAK2 Email: [EMAIL PROTECTED] Want reliable web hosting at affordable prices? www.modevia.com Web Dev/Design Community/Zine www.developercube.com - -Original Message

Re: [PHP] Opening a Window with JavaScript

2003-07-16 Thread Aaron Gould
Try this (note the "return false;" addition at the end): -- Aaron Gould Web Developer Parts Canada - Original Message - From: "Curt Zirzow" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, July 16, 2003 2:15 PM Subject: Re: [PHP] Opening a

[PHP] Coding Question

2003-07-20 Thread Aaron Axelsen
tests, and then altering the sql statement with the list option. Is this the best way to do this? Does anyone else have any other suggestions?? Thanks in advance for the assistance. - --- Aaron Axelsen AIM: AAAK2 Email: [EMAIL PROTECTED] Want reliable web hosting at affordable prices

[PHP] Weird Problem

2003-07-29 Thread Aaron Axelsen
$path = $row[0]; print $path; It always prints out "1" But if I run the code at the sql command prompt, it prints out "25", which is the correct value. Does anyone have any ideas why im having this problem?? - --- Aaron Axelsen AIM: AAAK2 Email: [EMAIL PROTECTE

RE: [PHP] Weird Problem

2003-07-29 Thread Aaron Axelsen
$dbname); if (!$db){ echo "Could not connect to database"; exit (); } @$result=mysql_query($sql); if (!$result){ echo "Invalid Sql Command"; exit (); } - --- Aaron Axelsen A

RE: [PHP] Weird Problem

2003-07-29 Thread Aaron Axelsen
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 The only setting contained in that table is the one im calling for, and its value is 25. - --- Aaron Axelsen AIM: AAAK2 Email: [EMAIL PROTECTED] Want reliable web hosting at affordable prices? www.modevia.com Web Dev/Design Community/Zine

Re: [PHP] Ticketmaster.com and Word Images

2003-07-31 Thread Aaron Gould
http://www.zend.com/zend/tut/tutorial-mehmet1.php -- Aaron Gould [EMAIL PROTECTED] Web Developer Parts Canada - Original Message - From: "John Manko" <[EMAIL PROTECTED]> To: "PHP General" <[EMAIL PROTECTED]> Sent: Thursday, July 31, 2003 10:16 AM Subject:

Re: [PHP] custom syntax highlighting in html-kit

2003-08-20 Thread Aaron Gould
This is not possible... yet. I would like this feature too, but it has been addressed a few times on the newsgroups at chami.com. You can check the newsgroups out at http://www.chami.com/html-kit/newsgroups/. As far as I know, this feature is on Chami's long-term to-do list. -- Aaron

Re: [PHP] Apache 2.0 and PHP

2003-03-17 Thread Michael Aaron
Thanks for the info. Do you know if this is specifically in regard to the worker MPM under Apache and not the prefork MPM? Or does this not have anything to do with threading? [EMAIL PROTECTED] wrote: On Fri, 14 Mar 2003, Michael Aaron wrote: Sorry if this has been answered before but I can

[PHP] mysql_fetch_* and stripslashes

2003-03-26 Thread Aaron Dalton
appen. As it is, I had to write an array_stripslashes routine and run every single db query I do through it. Just seems odd to me. Cheers! -- Aaron Dalton [EMAIL PROTECTED] PGPKeyID# 0x65AB5571 -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] mysql_fetch_* and stripslashes

2003-03-26 Thread Aaron Dalton
m missing some command or optional argument to make this > AD> happen. As it is, I had to write an array_stripslashes routine and run > AD> every single db query I do through it. Just seems odd to me. > > AD> Cheers! > > AD> -- > AD> Aaron Dalton > AD> [EMAI

Re: [PHP] Humour in programming?

2003-04-01 Thread Aaron Gould
Hehe, I though something was wrong with my machine when I checked out phpinfo() on one of my boxes today. It didn't even occur to me that it might be related to April Fools. I know it's usually the PHP logo, but how is that picture generated anyway? -- Aaron Gould Web Developer Pa

Re: [PHP] Humour in programming?

2003-04-01 Thread Aaron Gould
Exactly... it seems to be generated in code somehow? -- Aaron Gould [EMAIL PROTECTED] Web Developer Parts Canada - Original Message - From: <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]>; <

Re: [PHP] Can php run as a script?

2003-04-02 Thread Aaron Gould
Yes, you definitely can... http://www.php.net/manual/en/features.commandline.php -- Aaron Gould Web Developer Parts Canada - Original Message - From: "Poon, Kelvin (Infomart)" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, April 02, 2003 11:43 AM

RE: [PHP] Problems with quotes in URL - SOLVED - plz FLAME me!!!

2003-06-18 Thread Aaron Gould
Oh come on now, we don't flame people, or even engage in name-calling for that matter on this list... :) We all learn our lessons. -- Aaron Gould Web Developer Parts Canada -Original Message- From: Petre Agenbag [mailto:[EMAIL PROTECTED] Sent: June 18, 2003 8:49 AM To: Chris

RE: [PHP] mySQL: Rows and columns

2003-06-18 Thread Aaron Gould
A search on mysql.com reveals. http://www.mysql.com/search/index.php?q=DELETE&from=%2Fdocumentation%2Findex .html -- Aaron Gould Web Developer Parts Canada -Original Message- From: zavaboy [mailto:[EMAIL PROTECTED] Sent: June 18, 2003 1:03 PM To: [EMAIL PROTECTED] Subject:

[PHP] preg_match

2003-06-19 Thread Aaron Axelsen
"$date[$i]";     } - --- Aaron Axelsen AIM: AAAK2 Email: [EMAIL PROTECTED] Want reliable web hosting at affordable prices? www.modevia.com Web Dev/Design Community/Zine www.developercube.com -BEGIN PGP SIGNATURE- Version: PGPfreeware 7.0.3 for non-commercial use <h

RE: [PHP] Re: preg_match

2003-06-20 Thread Aaron Axelsen
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Thanks, I weas reading on the php website under the preg_match functino and people were saying that you had to excape the $ so that iw ould be evaluated right. That's what got me confused. - --- Aaron Axelsen AIM: AAAK2 Email: [EMAIL PROT

RE: [PHP] Chomp, Chomp, Chomp

2003-06-20 Thread Aaron Axelsen
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 The php chop function is suppose to act like the perl chomp. - --- Aaron Axelsen AIM: AAAK2 Email: [EMAIL PROTECTED] Want reliable web hosting at affordable prices? www.modevia.com Web Dev/Design Community/Zine www.developercube.com

RE: [PHP] Speed up MySQL

2003-06-27 Thread Aaron Gould
Read these mysql.com doc pages: http://www.mysql.com/doc/en/MySQL_indexes.html http://www.mysql.com/doc/en/CREATE_INDEX.html -- Aaron Gould Web Developer Parts Canada [EMAIL PROTECTED] -Original Message- From: Erich Kolb [mailto:[EMAIL PROTECTED] Sent: June 27, 2003 3:56 PM To

Re: [PHP] Apache 2 support broken?

2002-07-23 Thread Aaron Gould
configure again -- Aaron Gould [EMAIL PROTECTED] Web Developer - Original Message - From: "Mitch Vincent" <[EMAIL PROTECTED]> To: "php-general" <[EMAIL PROTECTED]> Sent: Tuesday, July 23, 2002 1:16 PM Subject: [PHP] Apache 2 support broken? > With php 4.2

Re: [PHP] Compiling PHP on Linux

2002-07-24 Thread Aaron Gould
ure again Keep in mind this is experimental and thus should not be used on production web sites (even though we've been using Apache 2.0.39+PHP 4.2.1/4.2.2 for a few weeks without issues on two of our servers). -- Aaron Gould [EMAIL PROTECTED] Web Developer - Original Message ---

[PHP] For all those trying to compile PHP 4.2.x with Apache 2.0.39 !!!!!

2002-07-25 Thread Aaron Gould
ks without issues on two of our servers). -- Aaron Gould [EMAIL PROTECTED] Web Developer -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] I cannot use mail() ?!?

2002-07-31 Thread Aaron Paxson
Exchange Queues, I do not see any sign of an email going through. However, using an email client in KDE, email is sent just fine through SMTP. Did I miss something? Aaron -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] I cannot use mail() ?!?

2002-07-31 Thread Aaron Paxson
vironment works just fine with SMTP messaging, just not PHP. I'm wondering if I'm missing something. I'm fairly new to PHP. Maybe my settings? I just compiled PHP, Apache, and MySql just last week. Thanks for the response!!! Aaron "Warren Vail" <[EMAIL PROTECTED]> wrote

Re: [PHP] I cannot use mail() ?!?

2002-07-31 Thread Aaron Paxson
That is what I had orginally thought. However, in an article I found about mail(), he said it will also work on a linux box that does not have sendmail configured. If that's the case, how do I get sendmail to work with Exchange?? Aaron "Jason Wong" <[EMAIL PROTECTED]

[PHP] Re: ARRRRGGGGHHHH! Weird Problems!

2002-07-31 Thread Aaron Ott
tony, regarding problem one, it looks like there is a problem in the code near: for ($g = 0; $g < $num_lyrics; $g ++) { try doing: for ($g = 0; $g <= $num_lyrics; $g ++) { As for problem two, it looks like you have your color variable set in the for loop thereby resetting the color variable to

[PHP] Re: Disabling Browser "BACK" button

2002-07-31 Thread Aaron Ott
Petre, why not use javascripts window.open something like this link to open your app http://yourapp.com','yourappname','toolbar=no'); return false;">link to your app. this would open a new window without the back and forward buttons. "Petre" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECT

[PHP] Re: decrypting values in MYSQL

2002-08-01 Thread Aaron Ott
for future you could use mysql's encode and decode functions. serves your purpose though not as secure. http://www.mysql.com/doc/M/i/Miscellaneous_functions.html --aaron "Michael P. Carel" <[EMAIL PROTECTED]> wrote in message 001101c239c1$541db6a0$[EMAIL PROTECTE

Re: [PHP] Linux PHP editor

2002-08-09 Thread Aaron Gould
dit: the Windows version has a plugin to do FTP, so I would assume the Linux version does too. Can anyone else add to the list of Linux-based FTP-enabled PHP-supporting editors? -- Aaron Gould [EMAIL PROTECTED] Web Developer -- PHP General Mailing List (http://www.php.net/) To unsubscribe,

Re: [PHP] Re: Linux PHP editor

2002-08-09 Thread Aaron Gould
You might want to check the archives. This topic has been discussed exhaustively many times... To name a very small few: HTML-Kit Zend IDE HomeSite Dreamweaver jEdit ... and many, many more. -- Aaron Gould [EMAIL PROTECTED] Web Developer - Original Message - From: <[EMAIL PROTEC

Re: [PHP] PHP 4.2.2 and Apache 2

2002-08-13 Thread Aaron Gould
ple months away. -- Aaron Gould [EMAIL PROTECTED] Web Developer - Original Message - From: "MET" <[EMAIL PROTECTED]> To: "PHP-GENERAL" <[EMAIL PROTECTED]> Sent: Tuesday, August 13, 2002 9:55 AM Subject: [PHP] PHP 4.2.2 and Apache 2 > So how stable are

Re: [PHP] PHP 4.2.2 and Apache 2

2002-08-13 Thread Aaron Gould
data in a MySQL database of our products. Obviously we can't say what the result of replacing our current production server would be. (Our production server runs Apache 1.3.26 + PHP 4.0.6, and gets about 250,000 hits/month.) -- Aaron Gould [EMAIL PROTECTED] Web Developer - Original Mes

Re: [PHP] Apache 2.0 and PHP

2002-08-19 Thread Aaron Gould
not exposed to a lot of traffic and abuse. -- Aaron Gould [EMAIL PROTECTED] Web Developer - Original Message - From: "John Wards" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Monday, August 19, 2002 7:27 AM Subject: [PHP] Apache 2.0 and PHP > Guys and Gir

[PHP] gettext issues

2002-09-06 Thread Aaron Gould
le/fr_FR/LC_MESSAGES Now, when I load up the web page, everything *should* be French. Sometimes it is. But sometimes it's English instead. It's a 50/50 thing. I've verified that the "setlocale" call is ALWAYS using "fr_FR". Can anyone help me out? (And as an asid

[PHP] PHP or Apache problem?

2002-09-12 Thread Aaron Gould
AddType application/x-httpd-php .php Am I missing something important here? -- Aaron Gould -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] a href...

2002-09-13 Thread Aaron Gould
Change the second "?" with "&". The ampersand is used to delimit multiple URI values. Use the ampersand to append any additional name/value pairs as well. -- Aaron Gould [EMAIL PROTECTED] Web Developer - Original Message - From: "Meltem Demirkus&quo

Re: [PHP] How to do Date Calculation

2002-10-10 Thread Aaron Gould
lc_Function2]; $dc->[Date_Calc_Function3]; etc, etc -- Aaron Gould Web Developer Parts Canada - Original Message - From: "Greg Macek" <[EMAIL PROTECTED]> To: "Noodle Snacks" <[EMAIL PROTECTED]> Cc: <[EMAIL PROTECTED]> Sent: Thursday, October 1

Re: [PHP] Content-Disposition IE bug

2002-10-15 Thread Aaron Gould
ent-Disposition: attachment; filename=$filename%20"); Give it a try. I might be way off, but you've got nothing to lose. :) -- Aaron Gould Web Developer Parts Canada "Francis" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]...

Re: [PHP] Content-Disposition IE bug (ADDENDUM)

2002-10-15 Thread Aaron Gould
quot;Cache-control: private"); header("Content-type: application/octet-stream"); header("Content-length: $filesize"); header("Content-Disposition: attachment; filename=\"$filename\""); -- Aaron Gould [EMAIL PROTECTED] Web Developer Parts Canada

Re: [PHP] PHP 4.3.0 and Zend Engine 2

2002-11-06 Thread Aaron Gould
things may have changed by now... the PHP powers that be would only be able to give me a definitive answer. -- Aaron Gould [EMAIL PROTECTED] Web Developer Parts Canada - Original Message - From: <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, November 05, 2002 8:31

Re: [PHP] re: echo w/ here document

2002-11-12 Thread Aaron Gould
Looks ok to me. Try making sure that all white space is removed from after the "echo << To: <[EMAIL PROTECTED]> Sent: Tuesday, November 12, 2002 5:32 AM Subject: [PHP] re: echo w/ here document > I'm still having a problem with including a here document. Trying this > code: > > echo << > > he

[PHP] Works in html, not when echoed in PHP

2002-11-12 Thread Aaron Merrick
l (doc + elemparent + doc2 + elem); } else if (ie || n6) { menuObj = eval (doc + elem + doc2); } I would be grateful for any tips. Thanks, Aaron -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Works in html, not when echoed in PHP

2002-11-13 Thread Aaron Merrick
he html does not. Anyway, I thought I would see if there were any more ideas as to what I am doing wrong. Thanks for the help, Aaron On 11/13/02 12:50 AM, "@ Edwin" <[EMAIL PROTECTED]> wrote: > echo ' onresize="window.location.reload(false)" topmargin="1&qu

Re: [PHP] Works in html, not when echoed in PHP

2002-11-13 Thread Aaron Merrick
e > the problem is with quoting in there. > > Have a look at your output in the browser (do a "View Source" or whatever > your Browser calls it), and check the JS your PHP application constructed. > You'll spot the error... > > At 05:28 13.11.2002, Aaron M

Re: [PHP] longitude/latitude function

2002-11-15 Thread Aaron Gould
Try this snippet... I can't vouch for its accuracy since I am not a mathematician: -- Aaron Gould [EMAIL PROTECTED] Web Developer Parts Canada - Original Message - From: "Edward Peloke" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Friday, November 15,

Re: [PHP] longitude/latitude function

2002-11-15 Thread Aaron Gould
I got that from http://freshmeat.net/projects/zipdy/?topic_id=66. It's a program called Zipdy that does these calculations. There's also a similar function on the US government census site (can't remember where though), but I liked Zipdy's better. -- Aaron Gould [EMAIL PROT

Re: [PHP] longitude/latitude function

2002-11-15 Thread Aaron Gould
That will be in KM (I'm in Canada). Just remove the "* 1.6093" to return Miles. -- Aaron Gould [EMAIL PROTECTED] Web Developer Parts Canada - Original Message - From: "Edward Peloke" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Friday, Novembe

Re: [PHP] Installation de PHP 4.2.1 with Apache and extension Frontpage 2002

2002-07-03 Thread Aaron Gould
If you have Apache installed as an RPM, make sure you have the "apache-devel" RPM installed as well. I remember I had this problem once in RedHat... apxs is included in the devel package if I recall correctly. -- Aaron Gould [EMAIL PROTECTED] Web Developer - Original Message

[PHP] Multi-dimensional array help

2003-10-27 Thread Aaron Gould
This array problem has been stumping my brain for a little while now... here's a sample of my data: $purchases[001][200304] = array('regular'=>3, 'booked'=>4); $purchases[002][200303] = array('regular'=>5, 'booked'=>1); $purchases[002][200304] = array('regular'=>1, 'booked'=>0);

Re: [PHP] shell_exec with pipes

2003-11-11 Thread Aaron Gould
Have you tried escaping the pipes and quotes? Try this: $var=shell_exec("/usr/local/bin/mplayer -identify -frames 0 /tmp/pitstop.mpeg 2>/dev/null\| grep ID_LENGTH \| cut -d \"=\" -f 2"); Mario Ohnewald wrote: $var=shell_exec("/usr/local/bin/mplayer -identify -frames 0 /tmp/pitstop.mpeg 2>/dev/

Re: [PHP] Javascript question

2003-11-20 Thread Aaron Gould
ll the screwFittings function after removeClog has returned, or there's going to be an awful mess. But then again, perhaps the automatic garbage collection will take care of that? -- Aaron Gould Parts Canada - Web Developer -- PHP General Mailing List (http://www.php.net/) To unsubscribe,

[PHP] Receiving a warning... no clue how to resolve it and need help badly :(

2003-11-27 Thread Aaron Wolski
" | ".$row3[3]."\n"; } } } mysql_close($link); echo "alert(\"Done!\");"; ?> CAN anyone help me resolve the problem? I know it has to do with a bug being fixed for array_merge_recursive but I don't know how to resolve the problem and get the results I need :-( Please help? Thanks so much!!! Aaron

RE: [PHP] What do you say to someone who says...

2003-12-04 Thread Aaron Wolski
> Please tell me in what world is 6 figures considered cheap?? My $300,000 home compared the $2,000,000 one I'd like to have? :) -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Preg Replace

2004-01-05 Thread Aaron Axelsen
However it doesn't work, any suggestions are appreciated. Thanks. Here is the chunk code: -- Aaron Axelsen AIM: aaak2 Email: [EMAIL PROTECTED]

[PHP] Very confusing problem!

2004-01-07 Thread Aaron Wolski
e (current: Linux previously: BSD). Both are running PHP 4.3.2. ANY help is desparately appreciated!!!!! Thanks so much. Aaron

RE: [PHP] Very confusing problem!

2004-01-07 Thread Aaron Wolski
Ahhh! You rock my man! I left out one single line when I copied! What a dolt. Thanks so much!!! Aaron > -Original Message- > From: Jonathan Wilkes [mailto:[EMAIL PROTECTED] > Sent: January 7, 2004 10:36 AM > To: Aaron Wolski > Subject: RE: [PHP] Very co

RE: [PHP] $_SESSION

2004-01-20 Thread Aaron Wolski
You need to call session_start() on each page. > -Original Message- > From: Alex Hogan [mailto:[EMAIL PROTECTED] > Sent: January 20, 2004 1:29 PM > To: PHP General list > Subject: [PHP] $_SESSION > > I've got a question that I'm sure has a simple answer. > > > > Why aren't my session o

RE: [PHP] $_SESSION

2004-01-20 Thread Aaron Wolski
> > I got back an error that read; > Warning: session_start(): Cannot send session cookie - headers already > sent > by > Warning: session_start(): Cannot send session cache limiter - headers > already sent. > > > > > > -Original Message- &g

RE: [PHP] how to track haeder trouble???

2001-01-11 Thread Aaron Gardner
Besides using Telent to look at HTTP header info, GNU wget is pretty handy (manual: http://www.gnu.org/manual/wget/html_mono/wget.html). To look just at header info I use: wget --spider -S http://your.web.site.com/somedir/page.php Aaron Gardner web developer yourfit.com -Original

[PHP] mod_php4 + mod_python + apache 1.3.14: no workie!

2001-01-26 Thread Aaron Faby
pache/Modules/mod_python.so definition of _pcre_free /System/Library/Apache/Modules/libphp4.so definition of _pcre_free Has anyone gotten these modules to work concurrently? TIA! -- Aaron

Re: [PHP] Class methods in PHP

2001-02-24 Thread Aaron Tuller
that's not true. you can call a static method with the "::" notation. like ClassName::method(); there's doesn't need to be an instance to do that. not sure if that's true for all of PHP4 or just 4.04 or whatnot. -aaron At 11:56 AM -0500 2/24/01, Kevin Beckf

Re: [PHP] (URL Translating) Apache, PHP, and the love of itall.... well, maybe not.

2001-03-03 Thread Aaron Tuller
p or something. and with output buffering you can get even more power, i use output buffering to change all my image tags on the fly to a different server, but for the people who write the HTML code, they don't need to care about it. PHP is good stuff. ask if you need more help. -aaron

  1   2   3   4   >