Re: [PHP] excel output question

2004-02-06 Thread Joshua D. Drake
On Sat, 7 Feb 2004, Jake McHenry wrote: > Hi everyone. I'm outputing payroll information to an excel csv file, and when anyone > get's paid over 1k, the amount is split into two fields because of the comma in the > amount. Is there anyway I can tell excel that this particular comma is not a > d

[PHP] excel output question

2004-02-06 Thread Jake McHenry
Hi everyone. I'm outputing payroll information to an excel csv file, and when anyone get's paid over 1k, the amount is split into two fields because of the comma in the amount. Is there anyway I can tell excel that this particular comma is not a deliminator? Thanks, Jake

Re: [PHP] fopen() Problems

2004-02-06 Thread Jason Wong
On Saturday 07 February 2004 07:08, [EMAIL PROTECTED] wrote: > I am using the below code (kind of sloppy..). I have tried for fopen r+, > w, and w+, but no matter what I do, the file is always truncated, and > previously entered data is erased. I have been unable to fix this. Assuming that you'r

[PHP] fopen() Problems

2004-02-06 Thread rabbit
I am using the below code (kind of sloppy..). I have tried for fopen r+, w, and w+, but no matter what I do, the file is always truncated, and previously entered data is erased. I have been unable to fix this. '; $d1 = date("l dS of F Y h:i:s A"); $divclose = ''; $some = " $divhead "; $some1 =

Re: [PHP] Cannot send mail after upgrading to OS X v10.3

2004-02-06 Thread John Nichel
gohaku wrote: Hi everyone, I am using OS X v10.3.2 and just discovered that I can't send mail using the mail() function. According to phpinfo(), PHP is configured with sendmail. Before upgrading to v10.3, I did not check if the mail() function worked in v10.2 The script I'm using does work on ot

Re: [PHP] Cannot send mail after upgrading to OS X v10.3

2004-02-06 Thread Jason Wong
On Saturday 07 February 2004 11:39, gohaku wrote: > I am using OS X v10.3.2 and just discovered that I can't send mail > using the mail() function. > According to phpinfo(), PHP is configured with sendmail. AFAIK phpinfo() does not tell you whether whether mail capabilities has been compiled in.

[PHP] Cannot send mail after upgrading to OS X v10.3

2004-02-06 Thread gohaku
Hi everyone, I am using OS X v10.3.2 and just discovered that I can't send mail using the mail() function. According to phpinfo(), PHP is configured with sendmail. Before upgrading to v10.3, I did not check if the mail() function worked in v10.2 The script I'm using does work on other servers.

Re: [PHP] Checking if database has been setup

2004-02-06 Thread Joshua D. Drake
> if its setup or not. I can handle the setup in steps (the "setup wizard") > but how do i check if the database/tables have > been setup? > It may be helpful to know which database as each database has there own way... > (and my apoligies for using "setup" so many times :-p ) > > Any advise,

[PHP] Checking if database has been setup

2004-02-06 Thread Ryan A
Hey, Sometime back i was checking out a script and it had a very useful little bit, in the scripts control panel there was a text link that said "click here to see if your database has been setup" when you click it, it will tell you if its setup or lauches the setup script to help you set it up. I

Re: [PHP] thumbnail script

2004-02-06 Thread David T-G
Ryan, et al -- ...and then Ryan A said... % % Hey David (my pal with the funny % prefix to replies...:-p ) Hi, Ryan (my ex-logo-drawing-buddy with the non-threading mailer ;-) % Thanks for replying. Sure thing. % % > Why, yes. I call it % > http://web-folio.net/ % % Nice name. Thanks!

Re: [PHP] installing php with pdflib

2004-02-06 Thread merlin
thanx guys, that has worked perfectly! Cheers, Merlin John Nichel schrieb: merlin wrote: Hi Jason, I just need 3.x since this is the version on my live server. However, I cant find any 4.x or 3.x version of pdflib on pdflib.com there is a free version called pdflib lite. Pdflib 5.x costs

Re: [PHP] Running Apache in one machine and php in another

2004-02-06 Thread Daniel Guerrier
Make it a web service and use SOAP or XML-RPC http://phpsoaptoolkit.sourceforge.net/phpsoap/ --- "Mrs. Geeta Thanu" <[EMAIL PROTECTED]> wrote: > Hi Jason, > Thank you for your reply. > This is an requirement in bioinformatics lab where > they want to submit a > huge genome sequence as a input to a

Re: [PHP] math produces strange characters 

2004-02-06 Thread Paul Furman
10 Chris W. Parker wrote: What happens if you make test.php completely blank inside? I'm talking no or anything. Totally empty still produces the strange characters. I also had a big complex page and printing some math in that produced the characters. ... AH, OK, it was this code editor I ju

Re: [PHP] PHP, Excel, and tab delimited files question

2004-02-06 Thread Marek Kilimajer
jon roig wrote: Nah... Try it in excel itself and you'll see what I'm talking about. You have to do it in numeric fields. Do this in an excel field: - Type 10 and hit return. ... It becomes 10, right? Now try it like this: '000100 ... Tada! It stays as 00100 and puts a little green tab in the t

RE: [PHP] math produces strange characters 

2004-02-06 Thread Chris W. Parker
Paul Furman on Friday, February 06, 2004 4:00 PM said: > That was the whole page but it's being included from a template. When > I made the test math file empty: > I still got the funny characters but not with any other pages I > include there. > > Here it is: > ht

Re: [PHP] math produces strange characters 

2004-02-06 Thread Paul Furman
Chris W. Parker wrote: Paul Furman wrote: >> 10 I'm befuddled. What other code is in that page? That was the whole page but it's being included from a template. When I made the test math file empty: ?> I still got the funny characters but not with any other pages I include there. Here

[PHP] Re: How can I run php 5 beta 3 on windows?

2004-02-06 Thread omer katz
Help!!! "Omer Katz" <[EMAIL PROTECTED]> ëúá áäåãòä:[EMAIL PROTECTED] > Can I update PHPTraid's php files? -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] math produces strange characters 

2004-02-06 Thread Chris W. Parker
Paul Furman on Friday, February 06, 2004 3:28 PM said: >$result= (1 * 10); > print$result >> > > 10 > Again, I very new to this, first time I tried doing a little simple > math, I'm befuddled. I'm not getting the same result. I got a plain 10. But some wei

Re: [PHP] Surpressing a 'foreach' Error Message

2004-02-06 Thread John W. Holmes
craig wrote: > craig on Friday, February 06, 2004 2:24 PM said: if (is_array($project)) foreach ($project as $project_id => $value) { $fields[] = $project_id; $values[] = $value; } } you're missing a curly brace after the if (). my bad, that's what you g

[PHP] math produces strange characters 

2004-02-06 Thread Paul Furman
What is this:  10 there is a 10 in the end of that Again, I very new to this, first time I tried doing a little simple math, I'm befuddled. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] PHP, Excel, and tab delimited files question

2004-02-06 Thread jon roig
Nah... Try it in excel itself and you'll see what I'm talking about. You have to do it in numeric fields. Do this in an excel field: - Type 10 and hit return. ... It becomes 10, right? Now try it like this: '000100 ... Tada! It stays as 00100 and puts a little green tab in the top left corner

Re: [PHP] Surpressing a 'foreach' Error Message

2004-02-06 Thread Chris Edwards
The is_array will still give a warning is the variable array does not exist. Use isset() - Original Message - From: "craig" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Friday, February 06, 2004 5:35 PM Subject: RE: [PHP] Surpressing a 'foreach' Error Message > > craig

Re: [PHP] thumbnail script

2004-02-06 Thread Ryan A
Hey David (my pal with the funny % prefix to replies...:-p ) Thanks for replying. > Why, yes. I call it > http://web-folio.net/ Nice name. > and it does everything for which you ask and then some. Kewl, is it free and can i download it and use it on my website? > Just send all of > your clien

RE: [PHP] Surpressing a 'foreach' Error Message

2004-02-06 Thread craig
> craig > on Friday, February 06, 2004 2:24 PM said: > > > if (is_array($project)) > > foreach ($project as $project_id => $value) { > > $fields[] = $project_id; > > $values[] = $value; > > } > > } > > you're missing a curly brace after the if (). > m

Re: [PHP] FreeBSD to Linux -- PHP Issues

2004-02-06 Thread David T-G
Daryl, et al -- ...and then Daryl Meese said... % % Hello all, Hi! % % I am considering changing hosting providers and moving from FreeBSD to % Linux. Because that's what the hosting provider you have in mind runs or because you want to go with Linux? % % My question is are there any PHP

RE: [PHP] Surpressing a 'foreach' Error Message

2004-02-06 Thread Chris W. Parker
craig on Friday, February 06, 2004 2:24 PM said: > if (is_array($project)) > foreach ($project as $project_id => $value) { > $fields[] = $project_id; > $values[] = $value; > } > } you're missing a curly brace after the if (). -- PHP General Mailing List

RE: [PHP] Surpressing a 'foreach' Error Message

2004-02-06 Thread craig
> Hi, > > I have some check boxes in a form and when the form is > submitted I read the > checkboxes that have been ticked. However if no checkboxes > have been ticked > the following line produces an error, is there a way to suppress this? > if (is_array($project)) > foreach ($project as $project_

[PHP] Surpressing a 'foreach' Error Message

2004-02-06 Thread Shaun
Hi, I have some check boxes in a form and when the form is submitted I read the checkboxes that have been ticked. However if no checkboxes have been ticked the following line produces an error, is there a way to suppress this? foreach ($project as $project_id => $value) { $fields[] = $project_i

Re: [PHP] PHP, Excel, and tab delimited files question

2004-02-06 Thread Marek Kilimajer
Do double quotes around help? Jay Blanchard wrote: [snip] Don't do it in the header, but in the field itself just put a ' before the first character and excel will interpret it as a text field. [/snip] Tried that, the ' shows up. Don't want that to happen -- PHP General Mailing List (http://www.p

Re: [PHP] recursive direcotry listing

2004-02-06 Thread David T-G
Binay, et al -- ...and then Binay said... % % Hi all, Hiya! % % is there function which scans a particual directory recurisly and stores the content in array or other way? Listing of files should be in alphabetical way and directories should come on top. Yep. Get the File_Find pear module

RE: [PHP] PHP, Excel, and tab delimited files question

2004-02-06 Thread Jay Blanchard
[snip] Don't do it in the header, but in the field itself just put a ' before the first character and excel will interpret it as a text field. [/snip] Tried that, the ' shows up. Don't want that to happen -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/

RE: [PHP] PHP, Excel, and tab delimited files question

2004-02-06 Thread jon roig
Don't do it in the header, but in the field itself just put a ' before the first character and excel will interpret it as a text field. -- jon --- jon roig web developer email: [EMAIL PROTECTED] phone: 888.230.7557 -Original Message- From: Jay Blanchard [mailto:

Re: [PHP] thumbnail script

2004-02-06 Thread David T-G
Ryan -- ...and then Ryan A said... % % Hi, % Anybody know of a thumbnail script which does either one of the following: [snip] Why, yes. I call it http://web-folio.net/ and it does everything for which you ask and then some. Just send all of your clients to host with me and I'll give you a

[PHP] PHP, Excel, and tab delimited files question

2004-02-06 Thread Jay Blanchard
In many of our apps we save tab delimited text files to be later opened from the browser using the following set of headers; header("Content-Type: application/vnd.ms-excel"); header("Content-Disposition: inline; filename=\"excel.xls\""); header("Expires: 0"); header("Cache-Control: must-revalidat

[PHP] PHP/MySQL Tables - CSS and Sortable Columns (Newbie Questions)

2004-02-06 Thread Freedomware
I posted three questions at http://geowebworks.geobop.org/test/php/notes.php, if anyone is willing to take a look. You could reply on this list or via the e-mail address on the URL above. Thanks! -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.

Re: [PHP] boolean search class

2004-02-06 Thread David T-G
Ray, et al -- ...and then Ray Hunter said... % % On Fri, 2004-02-06 at 06:47, David T-G wrote: % > Very, very simple stuff. The list of directories and files is held in an %... % That is simple enough, however, I dont see much flexibility in it with Just between you and me, I tend to agree, bu

Re: [PHP] beginner question about while loops

2004-02-06 Thread John W. Holmes
From: "Paul Furman" <[EMAIL PROTECTED]> > So when assigning values to an array inside a loop, it knows to advance > to the next but then if I want to print those out at the same time, it's > complaining > >while ($file = readdir($fh)){ >if (strstr ($file, '.jpg')){ >$pictures[]

Re: [PHP] beginner question about while loops

2004-02-06 Thread Paul Furman
OK thanks again for helping through the stumbling blocks... I'm rolling again now. John W. Holmes wrote: Just make sure $pictures is defined as an array before you try to push a value onto it (even using the method you have now), otherwise you'll get a warning. It seems to be working fine this wa

Re: [PHP] beginner question about while loops

2004-02-06 Thread John W. Holmes
- Original Message - From: "Paul Furman" <[EMAIL PROTECTED]> > Totally ignorant need for clarification... Should I set up a counter for > loops $integer++ or if I'm going through something, the while function > knows to just go through those and fills in array numbers accordingly? [snip]

RE: [PHP] beginner question about while loops

2004-02-06 Thread Shaunak Kashyap
1. Using [] creates a new array element. Hence the error. You can try this piece of code inside the loop [code] if (strstr ($file, '.jpg')){ $refPictures = & $pictures[]; $refPictures = $file; print $refPictures; } [/code] $refPictures holds

Re: [PHP] beginner question about while loops

2004-02-06 Thread Rob Adams
"Paul Furman" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > Eric Gorr wrote: [snip] > >while ($file = readdir($fh)){ >if (strstr ($file, '.jpg')){ >$pictures[] = $file; >#print $pictures[]; #Fatal error: Cannot use [] for reading Which element are yo

Re: [PHP] beginner question about while loops

2004-02-06 Thread Paul Furman
Eric Gorr wrote: the while function knows to just go through those and fills in array numbers accordingly? The while function has nothing to do with it. Using the syntax $array[] simply adds an element onto the _end_ of the array and PHP picks the next logical, numerical index. OK thanks gu

RE: [PHP] beginner question about while loops

2004-02-06 Thread Alex Hogan
You didn't close your loop; while ($file = readdir($dh)){ if (strstr ($file, '.jpg')){ $pictures[] = $file; } #vardump ($pictures[]); } <= here ?> instead of; while ($file = readdir($dh)){ if (strstr ($file, '.jpg')){ $pictures[] = $fi

Re: [PHP] beginner question about while loops

2004-02-06 Thread Eric Gorr
At 11:41 AM -0800 2/6/04, Paul Furman wrote: while ($file = readdir($dh)){ if (strstr ($file, '.jpg')){ $pictures[] = $file; } Spotted this problem when staring at your code. Number of open braces: 2 Number of close braces: 1 You need to close off your while loop. Should I set

[PHP] beginner question about while loops

2004-02-06 Thread Paul Furman
Totally ignorant need for clarification... Should I set up a counter for loops $integer++ or if I'm going through something, the while function knows to just go through those and fills in array numbers accordingly? Below is my project (while loop at the bottom): I'm getting unexpected $end on l

Re: [PHP] var references

2004-02-06 Thread Arthur Pelkey
Thanks!, my syntax was a bit off, havn't had much sleep, but it kept slipping by me ;) Chris W. Parker wrote: Arthur Pelkey on Friday, February 06, 2004 9:46 AM said: $blat = $tue_5a; [snip] while($row = mysql_fetch_array($result)) { switch($blat) {

RE: [PHP] var references

2004-02-06 Thread Chris W. Parker
Arthur Pelkey on Friday, February 06, 2004 9:46 AM said: > $blat = $tue_5a; [snip] > while($row = mysql_fetch_array($result)) { > switch($blat) { > case tue_5a: > $min_1 = $row[29]; > break; > } [snip] > Why can I not

Re: [PHP] installing php with pdflib

2004-02-06 Thread John Nichel
merlin wrote: Hi Jason, I just need 3.x since this is the version on my live server. However, I cant find any 4.x or 3.x version of pdflib on pdflib.com there is a free version called pdflib lite. Pdflib 5.x costs over 400$. I do not need 5.x, just basic pdf generating. Can you point me to a d

Re: [PHP] installing php with pdflib

2004-02-06 Thread merlin
Hi Jason, I just need 3.x since this is the version on my live server. However, I cant find any 4.x or 3.x version of pdflib on pdflib.com there is a free version called pdflib lite. Pdflib 5.x costs over 400$. I do not need 5.x, just basic pdf generating. Can you point me to a download place

[PHP] var references

2004-02-06 Thread Arthur Pelkey
I have the following: $blat = $tue_5a; $result = mysql_query("SELECT * FROM classes WHERE c_d_tue='1' AND c_s_tue_1_hr='5' AND c_s_tue_1_dn='am'"); while($row = mysql_fetch_array($result)) { switch($blat) { case tue_5a: $min_1 = $row[29]; break; } ?> class title:"> class minut

Re: [PHP] Weired session problem

2004-02-06 Thread Thomas Hochstetter
Hey, I am having users sign in on a index.php which directs them to the members page (same: index.php). There i have links that open small windows via js. These have session_start() in them to continue the same session variable. Then there i would have something like: [snip] $tusr = $_SESSION['f

Re: [PHP] CMS Question

2004-02-06 Thread Marek Kilimajer
You should search for php document management system, not cms. I quickly found http://terracotta.sourceforge.net/ and http://dms.markuswestphal.de/about.html Ashley M. Kirchner wrote: Does anyone know of any open source, document management type CMS? Basically what we need is a way to keep

RE: [PHP] Undefined Index Errors

2004-02-06 Thread Cameron B. Prince
> 1. put @ in front of each variable, e.g. > $adminID = @$_ENV['HTTP_REMOTE_USER']; This worked very nicely... Thank you! > > Hey guys, > > > > Here's a chunk of code from the top of a multi-function page I converted > > from Perl to PHP: > > > > $userid = $_REQUEST['USERID'];#

[PHP] CMS Question

2004-02-06 Thread Ashley M. Kirchner
Does anyone know of any open source, document management type CMS? Basically what we need is a way to keep documents stored and available online for download/print. Most of these documents are currently in printed form (hard copy,) so they'll get scanned in and then uploaded as gifs or jpgs

Re: [PHP] installing php with pdflib

2004-02-06 Thread Jason Wong
On Friday 06 February 2004 23:51, merlin wrote: > Somehow I can't figure out how I installed php with pdflib. It is > perfectly running on my live system. > > I tryed to just copy the files from the other server and run -- > with-pdflib like in the other config command, but it did not work out. >

Re: [PHP] Running Apache in one machine and php in another

2004-02-06 Thread Brian V Bonini
On Fri, 2004-02-06 at 13:57, Mrs. Geeta Thanu wrote: > Hi all, > > I have configured Apache webserver executing PHP scripts on sun machine > and everything is working fine. > > Now I want the web server to pass on the PHP executions to > another machine and once done should get the result and d

Re: [PHP] Pspell Functions!! problem I explain in English

2004-02-06 Thread Antonio J. Hdez. Blanco
Hi Adams, > Reading the manual[1] on pspell I notice at the top it says this > function is not supported in windows. I have read the manual several times, and also usr contributed notes where Elizabeth, explains the installation in w2k. I does she explained, but no work. >However if you really

Re: [PHP] Undefined Index Errors

2004-02-06 Thread John W. Holmes
From: "Cameron B. Prince" <[EMAIL PROTECTED]> > I'm creating some strings from array elements obviously. The issue is, the > array elements don't always exist depending on which function you are > running. And when they don't, the server log is full of undefined index > errors. Is there a way I ca

Re: [PHP] Undefined Index Errors

2004-02-06 Thread Adam Bregenzer
On Fri, 2004-02-06 at 10:51, Cameron B. Prince wrote: > I'm creating some strings from array elements obviously. The issue is, the > array elements don't always exist depending on which function you are > running. And when they don't, the server log is full of undefined index > errors. Is there a w

Re: [PHP] Undefined Index Errors

2004-02-06 Thread Marek Kilimajer
You can either: 1. put @ in front of each variable, e.g. $adminID = @$_ENV['HTTP_REMOTE_USER']; 2. change your error reporting level: error_reporting(E_ALL ^ E_NOTICE); Cameron B. Prince wrote: Hey guys, Here's a chunk of code from the top of a multi-function page I converted fro

Re: [PHP] Weired session problem

2004-02-06 Thread Chris Shiflett
--- Thomas Hochstetter <[EMAIL PROTECTED]> wrote: > i am using the $_SESSION array to retrieve info of users. At times, > however, it just retrieves the wrong info, i.e. info from another user. > how is that? You need to provide some details. What is your exact method of testing? What is the exact

[PHP] installing php with pdflib

2004-02-06 Thread merlin
Hi there, after crashing my linux machine I do have to reinstall php. Somehow I can't figure out how I installed php with pdflib. It is perfectly running on my live system. I tryed to just copy the files from the other server and run -- with-pdflib like in the other config command, but it did

Re: [PHP] thumbnail script

2004-02-06 Thread Paul Furman
Jason Wong wrote: manual > imagejpeg() & siblings You could take a look at the source code for "gallery" for more ideas. Google gallery php or something like that. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Undefined Index Errors

2004-02-06 Thread Cameron B. Prince
Hey guys, Here's a chunk of code from the top of a multi-function page I converted from Perl to PHP: $userid = $_REQUEST['USERID'];# USERID = selected userid $dlist= $_REQUEST['DLIST']; # DLIST = indicates who to display $action = $_REQUEST['ACTION'];# ACTION = in

Re: [PHP] getting classname of current class

2004-02-06 Thread Marek Kilimajer
Not an answer to your question, but you should not use function names beginning with 2 underscores (__arr in your case) unless you want to use special functionality associated with that name (e.g. __construct). This will avoid possible conflicts with future version of php. Vivian Steller wrote:

[PHP] Weired session problem

2004-02-06 Thread Thomas Hochstetter
Hi guys, Has anybody come across the same problem: i am using the $_SESSION array to retrieve info of users. At times, however, it just retrieves the wrong info, i.e. info from another user. how is that? thanks in advance Thomas -- PHP General Mailing List (http://www.php.net/) To unsubscribe,

RE: [PHP] CVS style project system

2004-02-06 Thread electroteque
I know you don't want to hear someone say use cvs so... Use viewcvs[1], or write your own version of it. You can put a database behind it, add descriptions to projects and/or folders to your database, whatever you want on top of cvs. You can even use cvsgrab[2] to download a repository from a

Re: [PHP] Pspell Functions!! problem I explain in English

2004-02-06 Thread Adam Bregenzer
On Fri, 2004-02-06 at 08:51, Antonio J. Hdez. Blanco wrote: > But now run the script, says to me, > Call undefined function pspell_config_create(). Reading the manual[1] on pspell I notice at the top it says this function is not supported in windows. However if you really do have a pspell libra

Re: [PHP] boolean search class

2004-02-06 Thread Ray Hunter
On Fri, 2004-02-06 at 06:47, David T-G wrote: > Very, very simple stuff. The list of directories and files is held in an > array (a separate process uses File_Find->maptree() to make it after any > updates and writes the serialized array to a cache file, and then I read > it in) and I just want to

Re: [PHP] getting classname of current class

2004-02-06 Thread Adam Bregenzer
On Fri, 2004-02-06 at 08:29, Vivian Steller wrote: > The problem is, that i want MyClass::getClassname() to return "MyClass"?! I have the same problem: http://marc.theaimsgroup.com/?l=php-general&m=107575408628272&w=2 I continued discussion of this in the php internals list: http://lists.php.net/

Re: [PHP] Whoa!!! e-Mail virus from bugs.php.net!

2004-02-06 Thread Scott Fletcher
Thanks "Duncan Hill" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > On Friday 06 February 2004 14:06, Scott Fletcher wrote: > > Whoa!! Just got an email today right from bugs.php.net and it was > > intercepted by the Spam Firewall because it contain the Worm.SCO.A virus > > and

Re: [PHP] Re: Whoa!!! e-Mail virus from bugs.php.net!

2004-02-06 Thread Scott Fletcher
> On Friday 06 February 2004 22:10, Scott Fletcher wrote: > > Internet Header is shown below... (Actual DNS and IP are replaced by xxx > > for security reason and keeping out spammers) The DNS and IP that is replaced by xxx are the actual DNS & IP from my company, so why should I give it away

Re: [PHP] Running Apache in one machine and php in another

2004-02-06 Thread Raditha Dissanayake
>Am I confusing. yes -- Raditha Dissanayake. http://www.radinks.com/sftp/ | http://www.raditha.com/megaupload Lean and mean Secure FTP applet with | Mega Upload - PHP file uploader Graphical User Inteface. Just 150 KB

Re: [PHP] Re: Whoa!!! e-Mail virus from bugs.php.net!

2004-02-06 Thread Jason Wong
On Friday 06 February 2004 22:10, Scott Fletcher wrote: > Internet Header is shown below... (Actual DNS and IP are replaced by xxx > for security reason and keeping out spammers) How do you know that bugs.php.net really sent it to you? Read up on how that particular virus works. Basically th

Re: [PHP] Whoa!!! e-Mail virus from bugs.php.net!

2004-02-06 Thread Stuart
Scott Fletcher wrote: How on earth can bugs.php.net get infected??? I'm not even familiar with PHP bug #12494 'cause I never filed it or comment on it. I think somebody should look into bugs.php.net webserver/e-mail server to see that it is not infected. Honestly Highly unlikely. Worms tend t

Re: [PHP] Whoa!!! e-Mail virus from bugs.php.net!

2004-02-06 Thread Duncan Hill
On Friday 06 February 2004 14:06, Scott Fletcher wrote: > Whoa!! Just got an email today right from bugs.php.net and it was > intercepted by the Spam Firewall because it contain the Worm.SCO.A virus > and was removed before being send to me. The email goes like this here > > --snip-- > Title:

[PHP] Re: Whoa!!! e-Mail virus from bugs.php.net!

2004-02-06 Thread Scott Fletcher
Internet Header is shown below... (Actual DNS and IP are replaced by xxx for security reason and keeping out spammers) --snip-- Received: from xxx.xxx.xxx (xxx.xxx.xx.xx [xxx.xxx.xxx.xxx]) by xxx.xxx with SMTP (Microsoft Exchange Internet Mail Service Version 5.5.2653.13) id XJ1MV77Q; Thu, 5

[PHP] Whoa!!! e-Mail virus from bugs.php.net!

2004-02-06 Thread Scott Fletcher
Whoa!! Just got an email today right from bugs.php.net and it was intercepted by the Spam Firewall because it contain the Worm.SCO.A virus and was removed before being send to me. The email goes like this here --snip-- Title: VIRUS (Worm.SCO.A) IN MAIL TO YOU (from <[EMAIL PROTECTED]>) Body

[PHP] Pspell Functions!! problem I explain in English

2004-02-06 Thread Antonio J. Hdez. Blanco
Hello, I have installed apache+php 4.3.4 in w2k and am trying to use library of aspell, but it gives problems me, does not recognize the functions of this library. For its installation, 1, copies php to me 4.3.4 upon php 4.3.3 since in this distribution this DLL comes. 2. update php.ini in the part

Re: [PHP] boolean search class

2004-02-06 Thread David T-G
Ray, et al -- ...and then Ray Hunter said... % % On Thu, 2004-02-05 at 20:46, David T-G wrote: % > % > I'm implementing a search and would like to move beyond accepting ... % > are not in a database, so I won't be passing SQL code off to a real % > searcher.] % % How are you doing the search if

[PHP] Call undefined function pspell_config_create().

2004-02-06 Thread Antonio J. Hdez. Blanco
Hola, Tengo instalado apache+php 4.3.4 en w2k y estoy tratando de usar la libreria de aspell, pero me da problemas, no reconoce las funciones de esta biblioteca. Para su instalación, 1. me copie el php 4.3.4 encima del php 4.3.3 ya que en esta distribucion viene esta dll. 2. actualice el php.ini

[PHP] getting classname of current class

2004-02-06 Thread Vivian Steller
Hi, i've just another problem concerning classes, inheritance and the '::' Syntax. Take a look at the following example code: __arr("test"); } public function __arr($var) { array_push($this->__arr, $var); }

Re: [PHP] PhP to work with ftp

2004-02-06 Thread Shaunak Kashyap
What version of PHP have you installed? What OS are you running? http://us2.php.net/manual/en/ref.ftp.php says: QUOTE In order to use FTP functions with your PHP configuration, you should add the --enable-ftp option when installing PHP 4 or --with-ftp when using PHP 3. The windows version of PHP

[PHP] PhP to work with ftp

2004-02-06 Thread Mrs. Geeta Thanu
Hi all, I have installed PHP to work with apache and is working fine. Now I want to upgrade this PHP to support FTP also. Should I have to Install now from the begining. configure --with-mysql --with-apxs=/users/apache/bin/apxs I have configured PHP with the above parameters. Now should I have

Re: [PHP] php-general list question - [Fwd: Delivery Report (failure) forphp-general@lists.php.net]

2004-02-06 Thread Rolf Brusletto
Eric Bolikowski wrote: Exactly the same thing's happening to me! "Luke" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] Me too, and im using the newsgroup, not even the mailing list!! :/ -- Rolf Brusletto rolf[at]emailfeeds[dot]com http://www.emailfeeds.com -- PHP General Mailing

Re: [PHP] php-general list question - [Fwd: Delivery Report (failure) forphp-general@lists.php.net]

2004-02-06 Thread Eric Bolikowski
Exactly the same thing's happening to me! "Luke" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] Me too, and im using the newsgroup, not even the mailing list!! :/ -- Luke "Craig" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > I get one of these for almost every m

RE: [PHP] CVS style project system

2004-02-06 Thread electroteque
I know you don't want to hear someone say use cvs so... Use viewcvs[1], or write your own version of it. You can put a database behind it, add descriptions to projects and/or folders to your database, whatever you want on top of cvs. You can even use cvsgrab[2] to download a repository from a

RE: [PHP] CVS style project system

2004-02-06 Thread electroteque
Thats all good, i'd have to learn how to intergrate, also if i explained earlier, if its taken a year of lobbying for cvs on the dev box, i doubt its gonna go on the public machine. Also i never stored files as binary in the db only the filenames as varchar. 5.) I am of the camp that thinks st

[PHP] Re: multilingual website

2004-02-06 Thread rush
"Julien Dufourcq" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > Or is there an other possibility? with TemplateTamer, you will receive call back in method translate($key) for places marked in template as {#SOMEKEY}, and the translation you return will automatically get applied to t

[PHP] ldap_add - Error number 65: Object class violation

2004-02-06 Thread Bobby R . Cox
Hi All. Our ISP has a web page that allows ISP customers to add sub-email accounts to their existing accounts. The information is stored on an LDAP server and added via the ldap_add command. Currently I am getting the following error when trying to add a sub account. Warning: LDAP: add opera

Re: [PHP] CVS style project system

2004-02-06 Thread Adam Bregenzer
On Thu, 2004-02-05 at 20:21, [EMAIL PROTECTED] wrote: > i have been asked to build a system for a project file space, where a > list of users of different groups can start new projects for their > group, add files for that project of the group and/or revise current > files with different versions.

Re: [PHP] Running Apache in one machine and php in another

2004-02-06 Thread Jason Wong
On Saturday 07 February 2004 04:34, Mrs. Geeta Thanu wrote: > Putting Apache and PHP in one machine and high end computation in another > machine will be good solution for my problem. > > Can I know any good URL which says about php's stream,curl,socket > functions. Download the php manual and re