[PHP] Setting PHP to use SMTP

2006-10-15 Thread Dave M G
php.ini and then restart Apache? Is there a command I should be running? Thank you for any and all advice. -- Dave M G Ubuntu 6.06 LTS Kernel 2.6.17.7 Pentium D Dual Core Processor PHP 5, MySQL 5, Apache 2 -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net

RE: [PHP] PHP causing seg fault

2006-10-12 Thread Kristen G. Thorson
-Original Message- From: Glenn Richmond [mailto:[EMAIL PROTECTED] Sent: Thursday, October 12, 2006 4:45 AM To: php-general@lists.php.net Subject: [PHP] PHP causing seg fault Hi guys, I'm attempting to run a SugarCRM variant that uses SOAP to access information from the

Re: [PHP] Working with overly aggressive anti-spam measures

2006-10-10 Thread Dave M G
private) Why are my attempts to set these headers in PHP not taking effect? -- Dave M G Ubuntu 6.06 LTS Kernel 2.6.17.7 Pentium D Dual Core Processor PHP 5, MySQL 5, Apache 2 -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] Disable all caching

2006-10-10 Thread Kristen G. Thorson
-Original Message- From: Brad Fuller [mailto:[EMAIL PROTECTED] Sent: Tuesday, October 10, 2006 12:55 PM To: php-general@lists.php.net Subject: RE: [PHP] Disable all caching I have a php (ver 4.x) script that is being cached. I have placed: META HTTP-EQUIV=CACHE-CONTROL

Re: [PHP] Working with overly aggressive anti-spam measures [SOLVED]

2006-10-10 Thread Dave M G
; $headers = From: . $fromName . . $fromAddress . \n; $headers .= Reply-to: . $fromName . . $fromAddress . \n; $extra = -f . $fromAddress; mail($toAddress, $subject, $content, $headers, $extra); Thank you all for your time and expert information. -- Dave M G Ubuntu 6.06 LTS Kernel 2.6.17.7

[PHP] Working with overly aggressive anti-spam measures

2006-10-09 Thread Dave M G
PROTECTED]; Sun, 03 Sep 2006 14:22:42 -0700 To: [EMAIL PROTECTED] Subject: Report for Monday 4th September 2006 From: [EMAIL PROTECTED] Message-Id: [EMAIL PROTECTED] Date: Sun, 03 Sep 2006 14:22:42 -0700 Which parts are key to change, and how? Thank you for any and all advice. -- Dave M G Ubuntu

RE: [PHP] RE:[PHP] Client Computer Registration

2006-10-03 Thread Kristen G. Thorson
-Original Message- From: Richard Lynch [mailto:[EMAIL PROTECTED] Sent: Tuesday, October 03, 2006 2:10 PM To: Wesley Acheson Cc: [EMAIL PROTECTED]; php-general@lists.php.net Subject: Re: [PHP] RE:[PHP] Client Computer Registration On Tue, October 3, 2006 2:33 am, Wesley Acheson

Re: [PHP] Using a variable to call another variable [SOLVED]

2006-09-09 Thread Dave M G
and method, which is my ultimate intent with this process. I will also make sure to name my variables with at least one leading alphabet character. Thanks for the warning. All your time and expert advice is much appreciated. -- Dave M G Ubuntu 6.06 LTS Kernel 2.6.17.7 Pentium D Dual Core Processor PHP

[PHP] Using a variable to call another variable

2006-09-08 Thread Dave M G
for your time. -- Dave M G Ubuntu 6.06 LTS Kernel 2.6.17.7 Pentium D Dual Core Processor PHP 5, MySQL 5, Apache 2 -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] strip slashes from beginning and end of string in one expression

2006-08-31 Thread Dave M G
of connecting these in the same search. However, I'm sure that is because I'm not familiar enough with regular expressions to know what I'm looking at. How would I connect #^/*# and #*/$# into one regular expression? Thank you for your time and advice. -- Dave M G Ubuntu 6.06 LTS Kernel 2.6.17.7 Pentium

[PHP] Re: strip slashes from beginning and end of string in one expression

2006-08-31 Thread Dave M G
. -- Dave M G Ubuntu 6.06 LTS Kernel 2.6.17.7 Pentium D Dual Core Processor PHP 5, MySQL 5, Apache 2 -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Recommendations for PHP debuggers?

2006-08-21 Thread Dave M G
themselves need constant tweaking, especially as I'm a newbie. -- Dave M G Ubuntu 6.06 LTS Kernel 2.6.17.7 Pentium D Dual Core Processor PHP 5, MySQL 5, Apache 2 -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Recommendations for PHP debuggers?

2006-08-20 Thread Dave M G
, aren't the newbies the ones most likely to be the ones to use a GUI debugger? Any advice or help would be greatly appreciated. Thank you for your time. -- Dave M G Ubuntu 6.06 LTS Kernel 2.6.17.7 Pentium D Dual Core Processor PHP 5, MySQL 5, Apache 2 -- PHP General Mailing List (http

Re: [PHP] Creating User Friendly URLS [SOLVED]

2006-08-19 Thread Dave M G
let me know. Thanks to the PHP list for their ever-present help and support. -- Dave M G -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Creating User Friendly URLS

2006-08-17 Thread Dave M G
than that, I'm halted initially because I'm not sure where in the $_SERVER array my URL is being stored. Any advice on how to proceed here would be greatly appreciated. Thank you. -- Dave M G -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] array problems

2006-08-16 Thread Chris G
Hi all Having a prob with a php script... 3 arrays $datay1=array(140,110,50,60); $datay2=array(35,90,190,190); $datay3=array(20,60,70,140); which have to be passed to a class like this $gbarplot = new GroupBarPlot(array($bplot1,$bplot2,$bplot3)); if I get data from a database, how can I

[PHP] Dividing, and keeping, text from the first space

2006-08-09 Thread Dave M G
. -- Dave M G -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Dividing, and keeping, text from the first space

2006-08-09 Thread Dave M G
if there happened to be two space characters instead of just one? The PHP manual says the $ means to assert end of subject. Which I think means stop looking for any more matches. So basically I'm confused about the extra escape slashes. -- Dave M G -- PHP General Mailing List (http

[PHP] Create an EUC-JP encoded file just for download, not to be kept on server

2006-08-09 Thread Dave M G
of their way to document or explain it. I'm too lost to know where to begin. How do I create a file that the user saves, and is not stored on the server? -- Dave M G -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Create an EUC-JP encoded file just for download, not to be kept on server

2006-08-09 Thread Dave M G
time and expertise is very much appreciated. -- Dave M G -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Dividing, and keeping, text from the first space

2006-08-09 Thread Dave M G
has come together, and my script now accomplishes what I had hoped it would. Thank you and the PHP list in general for the continued great support. -- Dave M G -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Regular expression to find from start of string to first space

2006-08-08 Thread Dave M G
work. Where did I go wrong? -- Dave M G -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Using preg_match to find Japanese text

2006-08-08 Thread Dave M G
Richard, Madoka, Thank you for your insights into searching for Japanese characters. I've decided to stick with searching for words as determined by the placement of spaces within the source text. Thank you for your time and advice. -- Dave M G -- PHP General Mailing List (http

Re: [PHP] Regular expression to find from start of string to first space [SOLVED]

2006-08-08 Thread Dave M G
or something, of course I'm all ears. Thank you for all your time and advice. -- Dave M G -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Declaring variables from the url

2006-08-07 Thread Dave M G
is contained in there, so it is being assigned and contained somehow. What could I possibly be missing in what should be a super simple process? -- Dave M G -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] The difference between ereg and preg? [SOLVED]

2006-08-06 Thread Dave M G
well now. Thanks to the PHP list, especially Jochem, Ligaya, Dave, Robert, Mike, Robert, Adam, and John, for all your helpful information and advice. -- Dave M G -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] The difference between ereg and preg?

2006-08-05 Thread Dave M G
greediness is determined by some other modifier? -- Dave M G -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Using preg_match to find Japanese text

2006-08-05 Thread Dave M G
me started, it would be much appreciated. Thank you for your time and help. -- Dave M G -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] The difference between ereg and preg?

2006-08-04 Thread Dave M G
. -- Dave M G -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] The difference between ereg and preg?

2006-08-04 Thread Dave M G
$htmlPage and delete everything *except* text that is between a li tag and a br tag? Or is that something that requires much more than a single use of preg_replace? -- Dave M G -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] The difference between ereg and preg?

2006-08-04 Thread Dave M G
checked and rechecked my syntax, and I can't see why it would fail. Have I messed up the regular expression, or the use of preg_match_all? -- Dave M G -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Please help me with in_array

2006-08-04 Thread Chris G
Hi all I have been stuck on this problem for 4 hours. Please anyone that can help here I would appreciate it. If I print_r($_GET) I have Array ([question] = Array ( [10] = 1 [11] = 2 [12] = 1 [13] = 1)' So now I try foreach($_GET['question'] as $key) { if(!in_array($key,

Re: [PHP] The difference between ereg and preg?

2006-08-04 Thread Dave M G
, then it only looks at li and br tags within each line, thus returning small, discreet matches. I personally don't think this is very rational behaviour, so either I'm doing something wrong still, or perhaps it's me who isn't very rational. Either is likely. -- Dave M G -- PHP General Mailing List

Re: [PHP] Is this a PHP issue, or a CGI issue? [SOLVED]

2006-08-03 Thread Dave M G
Jochem, Thank you for responding. no doubt it will become a php issue in the near future ;-) I'm sure it will. However, you have kick started me in the right direction, and I have the beginnings of a working page. Thank you for your helpful advice. -- Dave M G -- PHP General Mailing

[PHP] The difference between ereg and preg?

2006-08-03 Thread Dave M G
for the command above, but preg not? Thank you for any advice. -- Dave M G -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Is this a PHP issue, or a CGI issue?

2006-08-02 Thread Dave M G
about? Is it something do to with how the form action is structured? Please advise on how to diagnose and address this problem. If necessary, please tell me where this issue would be best addressed if it is not a PHP issue. Thank you for your time and help. -- Dave M G -- PHP General Mailing

[PHP] PHP Debugger Recommendations

2006-07-22 Thread Dave M G
cross platform, Java based or whatever else, would be best. Are there any recommendations? -- Dave M G -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] PHP Debugger Recommendations

2006-07-22 Thread Dave M G
or PHPEclipse? I am going to try them out. Thank you for suggesting them. -- Dave M G -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Zend Studio, phpMyAdmin, and mysql.sock

2006-07-15 Thread Dave M G
, and for making this list a great source of support. -- Dave M G -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Zend Studio, phpMyAdmin, and mysql.sock

2006-07-15 Thread Dave M G
advice would be much appreciated. Thank you. -- Dave M G -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Zend Studio, phpMyAdmin, and mysql.sock

2006-07-14 Thread Dave M G
development environment so that I can debug my PHP scripts without it conflicting with the PHP database administration system is on-topic? -- Dave M G -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Zend Studio, phpMyAdmin, and mysql.sock

2006-07-13 Thread Dave M G
on configuring Zend in this matter. What do I need to do to make Zend listen on the MySQL socket that I want it to listen on? (Which, by the way, is /var/run/mysqld/mysqld.sock) Thank you for any advice. -- Dave M G -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http

[PHP] combine implode() and array_keys() to get a string of key names

2006-07-07 Thread Dave M G
) At least, that's what it looks like if it's just echoed out. Is there a way I can strip out the relevant column names to be more like this: column1, column2. column3 Thank you for any advice. -- Dave M G -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit

[PHP] PHP sessions possibly eating up inodes

2006-07-03 Thread Dave M G
I can: 1. Verify that sessions are in fact the cause of inodes being created? 2. Destroy them? Thank you for any advice. -- Dave M G -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] Calculations

2006-06-27 Thread Kristen G. Thorson
-Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Tuesday, June 27, 2006 2:11 PM To: php-general@lists.php.net Subject: Re: [PHP] Calculations When my level of free time matches my level of curiousity, I'll have to research it further. For now, I'm ok

Re: [PHP] Equivelant to mysql_fetch_row for normal array

2006-06-23 Thread Dave M G
, the results don't match what I'm seeing in the references, and I don't understand what's going on. It would be really great if someone could lead me out of the darkness. Thank you for your advice. -- Dave M G -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net

[PHP] Equivelant to mysql_fetch_row for normal array

2006-06-22 Thread Dave M G
for any advice. -- Dave M G -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Equivelant to mysql_fetch_row for normal array

2006-06-22 Thread Dave M G
can't go all the way into my code, but $val[type] should be a string value containing the words Article or Text. But instead, I get: val[type] = 2 val[resource] = 2 Am I still not doing the foreach correctly? -- Dave M G -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit

RE: [PHP] Stream download problem

2006-06-21 Thread Kristen G. Thorson
-Original Message- From: Michael Satterwhite [mailto:[EMAIL PROTECTED] Sent: Tuesday, June 20, 2006 8:32 PM To: PHP Users Subject: [PHP] Stream download problem I have a site that generates a file to be streamed down. The relevant code is:

RE: [PHP] Stream download problem

2006-06-21 Thread Kristen G. Thorson
-Original Message- From: Michael Satterwhite [mailto:[EMAIL PROTECTED] Sent: Wednesday, June 21, 2006 12:11 PM To: Kristen G. Thorson Subject: Re: [PHP] Stream download problem Kristen G. Thorson wrote: -Original Message- From: Michael Satterwhite [mailto:[EMAIL

Re: [PHP] Simple class declaration returns error [SOLVED]

2006-06-16 Thread Dave M G
this: $data = database::getDB()-getData($arg1, arg2); Thank you for your time and advice. -- Dave M G -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] Re: File Download Headers

2006-06-16 Thread Kristen G. Thorson
-Original Message- From: Chris Shiflett [mailto:[EMAIL PROTECTED] Sent: Friday, June 16, 2006 9:11 AM To: tedd Cc: [EMAIL PROTECTED]; Barry; php-general@lists.php.net Subject: Re: [PHP] Re: File Download Headers tedd wrote: Barry says you can use these three:

Re: [PHP] Simple class declaration returns error

2006-06-15 Thread Dave M G
missing a very basic thing. If anyone can nudge me in the right direction, that would be fantastic. Thank you for your advice. -- Dave M G -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Seeking recommendations for use of include()

2006-06-14 Thread Dave M G
explicitly how someone could exploit a dynamic include() function with simple access through forms? And, can that access be exploited even when fairly common restrictions on form data is implemented (such as no tags and such)? -- Dave M G -- PHP General Mailing List (http://www.php.net

[PHP] Simple class declaration returns error

2006-06-14 Thread Dave M G
M G -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Simple class declaration returns error

2006-06-14 Thread Dave M G
have to consider whether or not to make my code PHP 4 compatible, or upgrade to version 5. -- Dave M G -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Seeking recommendations for use of include()

2006-06-14 Thread Dave M G
Jochem, ::index.php ?php include $_GET['page']; ? Wouldn't strip_tags() eliminate the ?php ? tags that make this possible? -- Dave M G -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Upgrade to PHP5 on Fedora Core

2006-06-14 Thread Dave M G
? -- Dave M G -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Seeking recommendations for use of include()

2006-06-13 Thread Dave M G
the included files, or do most people make a static list that they edit by hand? -- Dave M G -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Seeking recommendations for use of include()

2006-06-13 Thread Dave M G
for them to exploit a dynamic include() function, then please let me know. -- Dave M G -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] mail() function dying half way through. [SOLVED]

2006-06-11 Thread Dave M G
for taking the time to help. -- Dave M G -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] mail() function dying half way through.

2006-06-09 Thread Dave M G
, of individual emails before it would die. And I also thought the set_time_limit(0) function would alleviate the problem of timing out. Where have I gone wrong with this? Any advice would be greatly appreciated. Thank you for taking the time to read this. -- Dave M G -- PHP General Mailing List (http

[PHP] Using variable content to name a class

2006-06-05 Thread Dave M G
= nameFromDatabase; $object = new $className(); Is this possible? I hope I've asked my question clearly. Thank you for any advice. -- Dave M G -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Using variable content to name a class

2006-06-05 Thread Dave M G
command I was missing. Well, anyway, I guess I've stumbled on the right syntax. Thank you for pointing it out to me. -- Dave M G -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Why does this preg_replace function not work?

2006-05-27 Thread Dave M G
Robin, Dan, Rabin, Thank you all for your advice. You've helped me understand regular expressions a little better, and cleared some some confusion about arrays. I'll be adapting all the code you provided for me needs. Thank you for taking the time to help. -- Dave M G -- PHP General

[PHP] Why does this preg_replace function not work?

2006-05-26 Thread Dave M G
online manual. I also tried str_replace(), but predictably that did not help. As far as I understand it, it does not accept arrays. What am I doing wrong in the above code? And can the two preg_replace() commands be achieved in one line? Thank you for any advice. -- Dave M G -- PHP General

[PHP] str_replace(), and correctly positioned HTML tags

2006-05-25 Thread Dave M G
to separate those out and then be able to place opening and closing p tags at the right place before and after paragraphs. Is there a way to do this? Is there a good tutorial available? Any advice appreciated. Thank you for taking the time to read this. -- Dave M G -- PHP General Mailing List

Re: [PHP] str_replace(), and correctly positioned HTML tags

2006-05-25 Thread Dave M G
tags. -- Dave M G -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] oops! flock() not work

2006-05-22 Thread n . g .
flock() with LOCK_NB not work under , nor does fopen() with 'x' mode, my php is compiled as an apache module, and apache is running in prefork mpm. php version is 5.1.2 my code is ?php $haslock=0; if($lock=fopen('LOCK','w')){ if(flock($lock,LOCK_EX|LOCK_NB))$has_lock=1; } if($has_lock){

[PHP] Re: oops! flock() not work

2006-05-22 Thread n . g .
BTW. what i want is if one http session cannot obtain the lock, then it fails IMMEDIATELY, On 5/22/06, n. g. [EMAIL PROTECTED] wrote: flock() with LOCK_NB not work under , nor does fopen() with 'x' mode, my php is compiled as an apache module, and apache is running in prefork mpm. php version

[PHP] Getting the right path output from $_SERVER

2006-05-21 Thread Dave M G
including the file name? Thank you for any advice. -- Dave M G -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] PHP JavaScript

2006-05-19 Thread Kristen G. Thorson
-Original Message- From: Jay Blanchard [mailto:[EMAIL PROTECTED] Sent: Friday, May 19, 2006 10:34 AM To: php-general@lists.php.net Subject: [PHP] PHP JavaScript input type=checkbox name=list37[] value=7 / Suddenly JavaScript doesn't care for the object and throws an error

Re: [PHP] hosting reselling

2006-05-06 Thread Marc G. Fournier
/) To unsubscribe, visit: http://www.php.net/unsub.php Marc G. Fournier Hub.Org Networking Services (http://www.hub.org) Email: [EMAIL PROTECTED] Yahoo!: yscrappy ICQ: 7615664 -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net

RE: [PHP] String is not zero-terminated

2006-04-10 Thread Kristen G. Thorson
-Original Message- From: Richard Lynch [mailto:[EMAIL PROTECTED] Sent: Monday, April 10, 2006 4:44 PM To: php-general@lists.php.net Subject: [PHP] String is not zero-terminated In order to attempt to figure out why my script segfaults PHP (5.0.4, 5.1.2, 5.1.3RC3) I've been compiling

Re: [PHP] phpinfo returns a permission error

2006-02-14 Thread Dave M G
machine, all of which use PHP extensively. In fact, exclusively. And they all execute and display PHP pages without any error. This phpinfo.php script is the first ever page that I've had any kind of issue with. -- Dave M G -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit

[PHP] phpinfo returns a permission error

2006-02-13 Thread Dave M G
at the file through a browser? By the way, I'm using PHP 4.4.0-3 on Ubuntu 5.10. Any advice or help would be much appreciated. Thank you. -- Dave M G -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] Limitation on PEAR : Spreadsheet_Excel_Writer

2006-02-10 Thread Kristen G. Thorson
-Original Message- From: Bagus Nugroho [mailto:[EMAIL PROTECTED] Sent: Thursday, February 09, 2006 5:48 PM To: php-general Subject: [PHP] Limitation on PEAR : Spreadsheet_Excel_Writer Hello Everyone, I'm succesfully generate report from mysql table using PEAR :

[PHP] Oracle buying out Zend ... how does that affect PHP?

2006-02-10 Thread Marc G. Fournier
headlines last year when Netscape co-founder Marc Andreessen joined its board, has been trying to extend its success with the Web into business applications. Zend could sell for $200 million, according to one source. Marc G. Fournier Hub.Org Networking Services (http://www.hub.org

Re: [PHP] PHP hosting with multiple domains?

2006-02-02 Thread Marc G. Fournier
General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php Marc G. Fournier Hub.Org Networking Services (http://www.hub.org) Email: [EMAIL PROTECTED] Yahoo!: yscrappy ICQ: 7615664 -- PHP General Mailing List (http

Re: [PHP] Site down?

2006-01-17 Thread Marc G. Fournier
at whois, it went through a few incarnations and is currently owned by Primus Telecom ... Marc G. Fournier Hub.Org Networking Services (http://www.hub.org) Email: [EMAIL PROTECTED] Yahoo!: yscrappy ICQ: 7615664 -- PHP General Mailing List (http://www.php.net

[PHP] imap_set_quota and php ...

2006-01-15 Thread Marc G. Fournier
does work? or is someone doing something else to get around this with php? Thanks ... Marc G. Fournier Hub.Org Networking Services (http://www.hub.org) Email: [EMAIL PROTECTED] Yahoo!: yscrappy ICQ: 7615664 -- PHP General Mailing List (http://www.php.net

[PHP] Graphically displayed number to confirm user is a human

2006-01-04 Thread Dave M G
it so it's only legible to humans, nor how to correlate the image with a number that a user inputs into a form field. Any advice would be much appreciated. -- Dave M G -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Graphically displayed number to confirm user is a human [SOLVED]

2006-01-04 Thread Dave M G
Thank you all for pointing me in the right direction. I was extremely unlikely to come across the term CAPTCHA by starting with the search terms I was using. I'm really glad I asked here. Your time taken to answer my query is much appreciated. -- Dave M G -- PHP

Re: [PHP] Which is faster, a MySQL access, or a set of PHP variables?

2006-01-02 Thread Dave M G
from the database once a day with a cron job. I appreciate all the help people have given to let me understand the issue. -- Dave M G -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Which is faster, a MySQL access, or a set of PHP variables?

2005-12-30 Thread Dave M G
it done this way. Opinions would be much appreciated. -- Dave M G -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] ODBC question

2005-12-28 Thread Kristen G. Thorson
Jeremy Schreckhise wrote: I have an Openlink Single Tier Driver on an XP pro machine with windows installed on drive f: because I have a dual boot with Red Hat. Database is Progress 8.3c on a SCO Unixware 7.1.4 Dell Server. I can connect to all progress databases and pull data utilizing a

Re: [PHP] Re: Can the URL be controlled for more user-friendly readability? [SOLVED]

2005-12-26 Thread Dave M G
with more questions. I appreciate you taking the time to offer advice. -- Dave M G -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Can the URL be controlled for more user-friendly readability?

2005-12-23 Thread Dave M G
if someone typed the name directly into the URL. Obviously, I'm still a bit of a beginner with PHP. I may have approached this issue from the wrong starting point, so please let me know if I'm missing something fundamental. Thank you for any advice you may have. -- Dave M G -- PHP

[PHP] set quota to disable ...

2005-12-08 Thread Marc G. Fournier
it none, since the function above only accepts an int value ... did doing: sq user.scrappy -1 used to work from cyradm, and get changed at some point to only accept 'none'? and the php interface just hasn't caught up yet ... ? thanks ... Marc G. Fournier Hub.Org Networking

[PHP] pear/Horde_Block can optionally use PHP extension gettext ...

2005-12-08 Thread Marc G. Fournier
this :( gettext is installed ... php is php5 ... how do I get it to recognize, and therefore silence, these warnings ... ? :( Still searching, but if someone can point me to even the thread itself that is being eluded to, that would be great :( Thanks ... Marc G. Fournier Hub.Org Networking

Re: [PHP] Regex to wrap a href= tag around a p tag

2005-12-02 Thread Kristen G. Thorson
Shaun wrote: Hi M, Thanks for your help, the code works fine except if there is a line break in the html, for example this works ptest/p But this doesnt ptest /p Any ideas? See the last user contributed note from *csaba at alum dot mit dot edu *at

Re: [PHP] script won't work on other server

2005-12-02 Thread Kristen G. Thorson
Peppy wrote: This info is for the server where the script does not work: Apache/1.3.33 (Unix) PHP/4.3.10 FreeBSD cliffb55.iserver.net 4.7-RELEASE-p28 FreeBSD 4.7-RELEASE-p28 #42: Tu i386 This info is for the server where the script works: Apache/2.0.40 (Red Hat Linux) PHP Version 4.3.2

Re: [PHP] Upgrading on RH ES3

2005-12-02 Thread Kristen G. Thorson
Jeff McKeon wrote: I've got a server with RedHat ES3 running. It has PHP 4.3.2 installed but for an application I want to install I need a min of 4.3.9. This server also runs apache2.0. I can't find RPMs for RH ES3 so I downloaded the source for PHP4.4.1 figuring I would just compile

[PHP] preg_match_all for dummies

2005-11-23 Thread Kristen G. Thorson
I am a regex retard. I am trying to pull keywords out of this crazy bbcode-like file, but only for bbcode-like code NOT enclosed in HTML comments. I currently have managed to create this regex: '/(?!!--)\[!(\w+)::.*!\](?!--)/U' Which matches [!keyword::crazy bbcode!] and not

Re: [PHP] Re: Cookie problem with IE

2005-11-22 Thread Kristen G. Thorson
n.g. wrote: save below as testcookie.php, request it from your browser twice, what do you get at 2nd time? ?php setcookie('sessioncookie', 1); setcookie('storedcookie',1,time()+3600); var_dump($_COOKIE); ? On 11/22/05, Kristen G. Thorson [EMAIL PROTECTED] wrote: Anyone have any

Re: [PHP] Cookie problem with IE

2005-11-22 Thread Kristen G. Thorson
Jay Blanchard wrote: But I sure would like to see the URL once he has clicked it. Have you tried changing to $_GET['page']? Again, all of this is just for gigglesbut there is likely to be a clue. On privacy policies in IE (can he try another browser?) what is his setting? I'm still

[PHP] Cookie problem with IE

2005-11-21 Thread Kristen G. Thorson
Anyone have any suggestions? I'm still stuck. thanks, kgt Kristen G. Thorson wrote: I'm having problems with a customer who can't login to a wholesaler application. To ensure the problem was that the cookie was not being set, I sent him to this script: if( !isset( $_REQUEST['page

Re: [PHP] Cookie problem with IE

2005-11-21 Thread Kristen G. Thorson
Jay Blanchard wrote: [snip] Anyone have any suggestions? I'm still stuck. [/snip] Can you send him another test where a basic cookie gets set and then checked? . Not sure what you mean. I sent him to this script: ?php if( !isset( $_REQUEST['page'] ) ) { setcookie('VATtest','Cookie

Re: [PHP] Cookie problem with IE

2005-11-21 Thread Kristen G. Thorson
Jay Blanchard wrote: [snip] Not sure what you mean. I sent him to this script: ?php if( !isset( $_REQUEST['page'] ) ) { setcookie('VATtest','Cookie has been set.',time()+5, /); echo 'a href='.$_SERVER['PHP_SELF'].'?page=1Test cookie./a'; } else if( $_REQUEST['page'] == '1' ) { if( isset(

[PHP] Cookie problem

2005-11-18 Thread Kristen G. Thorson
I'm having problems with a customer who can't login to a wholesaler application. To ensure the problem was that the cookie was not being set, I sent him to this script: if( !isset( $_REQUEST['page'] ) ) { setcookie('VATtest','Cookie has been set.',time()+5, /); echo 'a

<    1   2   3   4   5   6   7   8   9   10   >