Re: [PHP] session variables

2001-04-10 Thread mailing_list
> I tried using a cookie I still had the same problem that it worked first > time but even if you stayed on the page and put a sencond entry in it > would > not work, then you: set the cookie incorrectly overwrite/delete the cookie by mistake your browser does not support cookies ... read http

Re: [PHP] online detection

2001-04-10 Thread mailing_list
> Does anyone know how to detect when a user connects to the Internet > similar > to ICQ? I think you mean messages on pages like "321 user online"! As HTTP is a stateless protocol, you can't really know this!!! It's only an estimation - and you can use sessions to realize this (ask how many ses

[PHP] radio groups in loop form

2001-04-10 Thread Peter Houchin
hiya, I have a radio button in a loop with the rest of the form, how ever when i go to do the mutliple update it clears all but the updated radio buttons(rest of form data is fine just the update on radio buttons) could some one pls give me an idea why, when every thing else works propperly

[PHP] compile problems

2001-04-10 Thread Mark Maggelet
Hi , I'm having compile problems with php4.04pl1 and the latest development version (where can I get older?) here's what the end of make looks like: .libs/libphp4.a(xml.o): In function `xml_parser_dtor': /home/certscape/php4-200104102145/ext/xml/xml.c:304: undefined reference to `php_XML_ParserF

[PHP] online detection

2001-04-10 Thread Gary Munitz
Does anyone know how to detect when a user connects to the Internet similar to ICQ? -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list administrators, e-mail: [EMAIL PROTECTED]

Re: [PHP] Properly formatted ereg??

2001-04-10 Thread Rasmus Lerdorf
strstr($PHP_SELF,"/coverage/") Absolutely no reason to use a regular expression when all you are doing is picking a simple string out of another. -Rasmus On Tue, 10 Apr 2001, Black S. wrote: > How would I write an ereg to use the value of $PHP_SELF and look for a > distinct folder? For instanc

RE: [PHP] Properly formatted ereg??

2001-04-10 Thread Jason Murray
> ereg("^/anythinghere/coverage/anthythinghere.html?", $PHP_SELF >|| > ||| > > So basically it is looking for the "/coverage/" folder, > anything can come before it, and anything after it?? if (strstr($PHP_SELF, "/coverage/

[PHP] Properly formatted ereg??

2001-04-10 Thread Black S.
How would I write an ereg to use the value of $PHP_SELF and look for a distinct folder? For instance. say I have: ereg("^/anythinghere/coverage/anthythinghere.html?", $PHP_SELF || ||| So basically it is looking for the "/cove

RE: [PHP] Need Feedback

2001-04-10 Thread Jason Murray
> Take a look and if I get enough feedback, I will keep them > running for at least a few more months. I have a PHP and a > MYSQL list db, here are the URLs: It looks great, and very handy (though, I thought this stuff was archived somewhere searchable already...?). The only suggestion I have

[PHP] Need Feedback

2001-04-10 Thread PHP General List
Hi all, I have had this website that captures the list email messages and places them into a searchable db. I did this as a learning exercise and think it is pretty cool but am wondering if I should just shut em down. Take a look and if I get enough feedback, I will keep them running for at

Re: [PHP] Forcing a dynamic created text file to be saved

2001-04-10 Thread Lindsay Adams
I stand happily corrected :) On 4/10/01 7:01 PM, "Stuart J. Browne" <[EMAIL PROTECTED]> wrote: > > "Lindsay Adams" <[EMAIL PROTECTED]> wrote in message > [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > You are not going to be able to use PHP to tell the client browser to do > anything. > > y

[PHP] TTF Support

2001-04-10 Thread Jennifer
How do I find out if my installation supports this? I am on a virtual server, and I know my host has Apache installed with mod_php4 Is there something that I can check to see if the FreeType library is there when I only have a virtual server? And if it wasn't installed, is there any way that I

Re: [PHP] Forcing a dynamic created text file to be saved

2001-04-10 Thread Pierre-Yves Lemaire
After you have created the file, use this to force a downlaod. This will downlaod anything, even an html file. $fileName = basename($downloadFile); header("Content-disposition: attachment; filename=\"$fileName\""); header("Content-type: application-download"); header("Pragma: no-cache"); header("

Re: [PHP] __ $8/mo php hosting on 24/7, OC3+ web server ___

2001-04-10 Thread Seung-woo Nam
Jeffrey Greer wrote: > > I'm not trying to provide the level of service of a large isp or even > get 100 customers. I would just like to pay for my half of the web > portal. I thought $8/mo for my service would be a good value for php > programmers who do not need a high level of security. > >

Re: [PHP] Forcing a dynamic created text file to be saved

2001-04-10 Thread Stuart J. Browne
"Lindsay Adams" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... You are not going to be able to use PHP to tell the client browser to do anything. you are going to have to embed either a java.applet, or javascript to do it. I don¹t know a whole lot about either,

Re: [PHP] assignment operator works for comparison??

2001-04-10 Thread Yasuo Ohgaki
> if($shiny = 0) This line is the same as if ((shiny = 0) == TRUE) It's common error with PHP and C. You could make use of this like if ($fp = fopen($filename,'r')) since this is the same as if (($fp = fopen($filename,'r')) == TRUE) code after this line is executed when fopen() success to

Re: [PHP] Developing new PHP modules

2001-04-10 Thread Yasuo Ohgaki
If you take a look at PHP source code, you'll find some description for making new modules. I think you need to read source to understand how to code a new module. Not much descriptions, but PHP manual has section for it, too. I use emacs to browse C/C++ sources, but you can use lxr.php.net or cv

Re: [PHP] huge PHP file, hardcore processing

2001-04-10 Thread Christian Dechery
At 10:20 11/4/2001 +0900, you wrote: >I think DLL for MS SQL Server will work with Apache for Windows/PHP for >Windows. >There are many basic functions are not supported under PHP for Windows, but it >work fine for me other than those missing functions. If your server may have >multiple IP addres

php-general Digest 11 Apr 2001 01:25:18 -0000 Issue 620

2001-04-10 Thread php-general-digest-help
php-general Digest 11 Apr 2001 01:25:18 - Issue 620 Topics (messages 48020 through 48103): Re: MySql: Default values 48020 by: Michael Hall 48026 by: elias 48054 by: Andrew Rush Re: Inserting time + date entry into mySQL DB 48021 by: Michael Hall 480

Re: [PHP] register_shutdown_function - uses for

2001-04-10 Thread Yasuo Ohgaki
For another example use of shutdown function. Take a look at how PEAR destructor is implemented. It's using shutdown function. Regards, -- Yasuo Ohgaki ""Greig, Euan"" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > I was hoping that I could use this function

Re: [PHP] __ $8/mo php hosting on 24/7, OC3+ web server ___

2001-04-10 Thread Jeffrey Greer
I'm not trying to provide the level of service of a large isp or even get 100 customers. I would just like to pay for my half of the web portal. I thought $8/mo for my service would be a good value for php programmers who do not need a high level of security. Would you say $8/mo is not a good v

[PHP] COM-Functions

2001-04-10 Thread Jochen Kaechelin
Hello list! Does anybody know some sources to read about the COM-Functions in PHP? We wan't to develop some tools to generate INCOMES out of a web application? Only found some lines on phpbuilder, but that's not really enough to get started! Thanx -- Jochen Kaechelin - Ihr WEBberater Stuttgart

[PHP] "No parent in this context"?

2001-04-10 Thread venome
Calling the method parent::insert() from a class the ancestor of which truly has a method insert() itself, I get the error "Fatal error: No parent class available in this context in bla.php on line ...". I know this isn't very much information, but the whole project is big and would take time to

Re: [PHP] upload problem (uid)

2001-04-10 Thread Rasmus Lerdorf
Are you sure it is uid 0? Unless your Apache is running as root it should be getting uploaded as the web server uid id. Use the move_uploaded_file() function to move the file into place. -Rasmus On Wed, 11 Apr 2001, b0ld b0lb wrote: > Hi, > > if i upload via http the tempfile is written with

[PHP] upload problem (uid)

2001-04-10 Thread b0ld b0lb
Hi, if i upload via http the tempfile is written with uid 0 (root). After that i cant do anything with the file because the php user is not allowed to. Why is my uploaded file owned by root, and how do i solve that? PS. phpinfo shows that the apache user is nobody thx, b0ld

Re: [PHP] __ $8/mo php hosting on 24/7, OC3+ web server ___

2001-04-10 Thread The Hermit Hacker
On Tue, 10 Apr 2001, Jeffrey Greer wrote: > >what about security? are they on top of the latest versions and > >patches.i mean after all...it is REDHACK.. > > > > I'm no security expert, but I can apply the most important patches. > Yesterday I added mod_ssl to apache. Okay, can you exp

RE: [PHP] __ $8/mo php hosting on 24/7, OC3+ web server ___

2001-04-10 Thread The Hermit Hacker
On Tue, 10 Apr 2001, Kurth Bemis wrote: > no pron? damn! that puts me out! isn't a pron a fish? -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list administrators, e-mail: [EMAIL

Re: [PHP] Limitation of redirecting using header()?

2001-04-10 Thread Mark Maggelet
On Tue, 10 Apr 2001 17:16:08 -0400, Daniel ([EMAIL PROTECTED]) wrote: >I might have misread this comment, but I found the opposite. > >In one instance, I had: >header("Location: $path/newpage.php"); >and in another instance: >header("Location: newpage.php"); I'm talking about using the full url (

Re: [PHP] Forcing a dynamic created text file to be saved

2001-04-10 Thread Lindsay Adams
You are not going to be able to use PHP to tell the client browser to do anything. you are going to have to embed either a java.applet, or javascript to do it. I don¹t know a whole lot about either, so I don't know if they are even a possibility. On 4/10/01 2:29 PM, "Nando2" <[EMAIL PROTECTED]>

Re: [PHP] Forcing a dynamic created text file to be saved

2001-04-10 Thread Nando2
OK I know that. What I want to do is to have the save dialog displayed as if it was a HTTP file download procedure. If you click on a ZIP file say test.zip the save dialog will be displayed. I want to do the same but not with a phisical file. Instead I want to do it with the content of the page (

Re: [PHP] __ $8/mo php hosting on 24/7, OC3+ web server ___

2001-04-10 Thread Phillip Bow
Hi, I don't mean to bash, but these sort of answers don't give me a lot of faith in the service you are starting. At the very least I expect my service provider to provide competent answers to questions, and to know the basics of security. > >no no - its an OC3+ web server.must be an ov

[PHP] System V Semaphores

2001-04-10 Thread Philip Murray
Hi, I've been trying to use SystemV Semaphores as a kind of locking system in a webpage, but after a few hours I get this message: Warning: semget() failed for key 0x0: No space left on device in /1/home//admin/htdocs/prop/lock.php on line 8 Warning: 0 is not a SysV semaphore index in /1/ho

Re: [PHP] __ $8/mo php hosting on 24/7, OC3+ web server ___

2001-04-10 Thread Kurth Bemis
At 05:55 PM 4/10/2001, Jeffrey Greer wrote: >On 10 Apr 2001 12:08:01 -0700, [EMAIL PROTECTED] (Kurth Bemis) >wrote: > > >At 06:15 PM 4/10/2001, Jason Lotito wrote: > > > >no no - its an OC3+ web server.must be an overseas brand..or > >something..i've never heard of it.maybe its an SGI

[PHP-CVS] cvs: php4(PHP_4_0_5) /ext/sockets sockets.c

2001-04-10 Thread Jason Greene
jason Tue Apr 10 15:01:58 2001 EDT Modified files: (Branch: PHP_4_0_5) /php4/ext/sockets sockets.c Log: MFH, I have tested this thoroughly. Index: php4/ext/sockets/sockets.c diff -u php4/ext/sockets/sockets.c:1.32.2.1 php4/ext/sockets/sockets.c:1.32.2.2 -

Re: [PHP] __ $8/mo php hosting on 24/7, OC3+ web server ___

2001-04-10 Thread Jeffrey Greer
On 10 Apr 2001 12:08:01 -0700, [EMAIL PROTECTED] (Kurth Bemis) wrote: >At 06:15 PM 4/10/2001, Jason Lotito wrote: > >no no - its an OC3+ web server.must be an overseas brand..or >something..i've never heard of it.maybe its an SGI or something >they have wacky names for their stuff

Re: [PHP] assignment operator works for comparison??

2001-04-10 Thread Dan
You are right, thank you. > It looks to me like the value of an assignment is the value assigned, as in > Perl. But I don't know for sure, haven't come across this in the manual. > > Kirk > > > > > if($shiny = 0){ > > > This does not compare anyting, it assigns 0 to $shiny > > > > yes i know, bu

Re: [PHP] Commercial sites that use PHP

2001-04-10 Thread Philip Olson
A few methods to find such info : Netcraft : http://uptime.netcraft.com/up/graph/?host=www.php.net Tells us : The site www.php.net is runnin

RE: [PHP] assignment operator works for comparison??

2001-04-10 Thread Johnson, Kirk
It looks to me like the value of an assignment is the value assigned, as in Perl. But I don't know for sure, haven't come across this in the manual. Kirk > -Original Message- > From: Dan [mailto:[EMAIL PROTECTED]] > Sent: Tuesday, April 10, 2001 3:29 PM > To: [EMAIL PROTECTED] > Subject:

Re: [PHP] Commercial sites that use PHP

2001-04-10 Thread Michael Kimsal
Be careful with the .phtml assumption - there are mod_perl sites that use it as well. There was some golf site I was looking at last year that was .phtml, but when I asked one of their employees about it he said (and the server headers confirmed) that it was mod_perl. :( Joe Stump wrote: > W

[PHP] Forcing a dynamic created text file to be saved

2001-04-10 Thread Nando2
Hello all! I have a PHP4 script that produces a text file and I would like that when the user access this script the text content of it was forced to be saved meaning that when the user selects it he/she will have the save dialog form to save the text file with the filename specified in the he

Re: [PHP] assignment operator works for comparison??

2001-04-10 Thread Dan
> > > if($shiny = 0){ > This does not compare anyting, it assigns 0 to $shiny yes i know, but shouldnt this operation return true? > > > echo( $shiny ) // this will return 0 > That's normal, you just assign 0 to it ;) > > = assignment operator > == comparison operator > > py > > > At 01:53 PM

[PHP] cookies and pages and sessions ( oh my! )

2001-04-10 Thread Dennis Gearon
OK, a user visits my site and progresses through the following 3 pages, none which have forms on them, using sessions. PageA (http://URL-XYZ/) SessionID=ID123 -> Cookie PageID=PageA-> Cookie PageB (http://URL-XYZ/) SessionID=ID123 -> Cookie PageID=PageB-> C

Re: [PHP] Limitation of redirecting using header()?

2001-04-10 Thread Daniel
I might have misread this comment, but I found the opposite. In one instance, I had: header("Location: $path/newpage.php"); and in another instance: header("Location: newpage.php"); The latter (without the path) did update the address bar properly. Of course, there might have been a problem wit

Re: [PHP] assignment operator works for comparison??

2001-04-10 Thread Pierre-Yves Lemaire
> if($shiny = 0){ This does not compare anyting, it assigns 0 to $shiny > echo( $shiny ) // this will return 0 That's normal, you just assign 0 to it ;) = assignment operator == comparison operator py At 01:53 PM 4/10/01 -0700, you wrote: >This confused me for awhile, because the single eq

Re: [PHP] dynamic checkboxes

2001-04-10 Thread Daniel
What you need to do is to have a function in the form processing page that iterates through $HTTP_POST_VARS and saves the name and value of each item in the form. You will want to exclude your submit button and if there are other form items you don't want to save, you might want to name them with

Re: [PHP] session variables

2001-04-10 Thread george
I tried using a cookie I still had the same problem that it worked first time but even if you stayed on the page and put a sencond entry in it would not work, George -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail:

[PHP] assignment operator works for comparison??

2001-04-10 Thread Dan
This confused me for awhile, because the single equal sign seemed to work for comparison, but created inexplicable errors in my programs. It seems strange to me that a successful variable value assignment does not return true. example: --Dan -- PHP General Mailing List (http://www.php.net

Re: [PHP] Commercial sites that use PHP

2001-04-10 Thread Charlie Llewellin
www.texasmonthly.com is the site I manage.. converted to php over the last year -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list administrators, e-mail: [EMAIL PROTECTED]

Re: [PHP] session variables

2001-04-10 Thread mailing_list
> I am using a session to store a variable so when someone enters something > into a field the persons username(which is stored in the session) is also > entered into anoter field. > The problem is that it only works the first time, so how can I make the > session last for a required length of t

[PHP] session variables

2001-04-10 Thread george
I am using a session to store a variable so when someone enters something into a field the persons username(which is stored in the session) is also entered into anoter field. The problem is that it only works the first time, so how can I make the session last for a required length of time, so th

Re: [PHP] Commercial sites that use PHP

2001-04-10 Thread Joe Stump
We use it at www.care2.com - serves up over a million hits a day without any problems. We've even hit the media metrix top 500 a few times. worldcom.com also uses PHP (notice the .phtml extension). --Joe On Tue, Apr 10, 2001 at 01:21:16PM -0700, Ralph Guzman wrote: > here are a couple: > > http

RE: [PHP] Commercial sites that use PHP

2001-04-10 Thread Ralph Guzman
here are a couple: http://www.marketplayer.com: they provide the real-time stock market simulations for sites like etrade.com and smartmoney.com that have these games. http://www.chek.com/ -Original Message- From: Phil Labonte [mailto:[EMAIL PROTECTED]] Sent: Tuesday, April 10, 2001 6

Re: [PHP] Limitation of redirecting using header()?

2001-04-10 Thread Mark Maggelet
On Tue, 10 Apr 2001 14:18:54 -0400, Daniel ([EMAIL PROTECTED]) wrote: >I am writting a session enabled webapp that has a typical login >page. The >page submits to itself and upon validation, I want to allow the user >to >continue on to the next page. > >>From everything I have read so far, the on

Re: [PHP] register_shutdown_function - uses for

2001-04-10 Thread CC Zona
In article <[EMAIL PROTECTED]>, [EMAIL PROTECTED] ("Greig, Euan") wrote: > I was hoping that I could use this function to enable me to finish scripts > tidily when they time out or are aborted by the user. eg display the message > "script timed out". However this will not work as no output is

[PHP] Saving a page/text file from a query

2001-04-10 Thread Nando2
Hello all, I need to display a page on text format that will be the result of a query. This page will not be saved on my server harddrive but it has to allow the user to save it to their HD. The problem is that the page has to be saved on the customer HD automaticaly (He/She should not click

[PHP] dynamic checkboxes

2001-04-10 Thread Nando2
Hello All, I'm trying to build a way to transfer my orders to a HTML page instead of using GUI that I've designed. In order to do that I need to display all the orders of the day and have checkboxes on each so that the user can select only the orders that we will process. The number of check

Re: [PHP] register_shutdown_function - uses for

2001-04-10 Thread Steve Werby
"Greig, Euan" <[EMAIL PROTECTED]> wrote: > I was hoping that I could use this function to enable me to finish scripts tidily > when they time out or are aborted by the user. eg display the message "script > timed out". However this will not work as no output is allowed in the shutdown > function.

RE: [PHP] __ $8/mo php hosting on 24/7, OC3+ web server ___

2001-04-10 Thread Kurth Bemis
At 06:15 PM 4/10/2001, Jason Lotito wrote: no no - its an OC3+ web server.must be an overseas brand..or something..i've never heard of it.maybe its an SGI or something they have wacky names for their stuff :-) no bandwidth sucking sites? on an OC3...we're talking gigabits per sec

RE: [PHP] __ $8/mo php hosting on 24/7, OC3+ web server ___

2001-04-10 Thread Jason Lotito
> Subject: RE: [PHP] __ $8/mo php hosting on 24/7, OC3+ web server I wonder if they charge extra for HTML hosting? =) But seriously, WoW! My own dedicated OC3 line! Man, for only $8/month..that rocks! > > I am offering php hosting with features at a price no one else has, as > > far as I k

RE: [PHP] Commercial sites that use PHP

2001-04-10 Thread Alexis Antonakis
Yahoo certainly uses PHP for at least some of it's workings. On a rare occasion that it was down, I saw a PHP error message being displayed. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] p.net]On Behalf Of Brent Langston Sent: 10 April 2001 17:31 To: [EMAIL PROTECT

[PHP] created a mailing list for ezpublish

2001-04-10 Thread Peter Van Dijck
Hi, since there doesn't seem to be a mailing list for ezpublish (a cms in php), I created one: http://groups.yahoo.com/group/php-ezpublish Feel free to join up, I basically created it because it seems a very powerful but complex system. Peter ~~ http://lig

[PHP-CVS] cvs: php4 /ext/fbsql php_fbsql.c

2001-04-10 Thread Frank M. Kromann
fmk Tue Apr 10 11:44:51 2001 EDT Modified files: /php4/ext/fbsql php_fbsql.c Log: Fixing database password to actually work Index: php4/ext/fbsql/php_fbsql.c diff -u php4/ext/fbsql/php_fbsql.c:1.9 php4/ext/fbsql/php_fbsql.c:1.10 --- php4/ext/fbsql/php_f

[PHP-CVS] cvs: pear /Science/Chemistry/doc Science_Chemistry_Atom.html Science_Chemistry_Atom_PDB.html Science_Chemistry_Coordinates.html Science_Chemistry_Element.html Science_Chemistry_Macromolecule.html Science_Chemistry_Macromolecule_PDB.html Science_Chemistry_Molecule.html Science_Chemistry_Molecule_XYZ.html Science_Chemistry_PDBFile.html Science_Chemistry_PDBParser.html Science_Chemistry_Periodic_Table.html Science_Chemistry_Residue_PDB.html class_Science_Chemistry_Atom.xml class_Science_Chemistry_Atom_PDB.xml class_Science_Chemistry_Coordinates.xml class_Science_Chemistry_Element.xml class_Science_Chemistry_Macromolecule.xml class_Science_Chemistry_Macromolecule_PDB.xml class_Science_Chemistry_Molecule.xml class_Science_Chemistry_Molecule_XYZ.xml class_Science_Chemistry_PDBFile.xml class_Science_Chemistry_PDBParser.xml class_Science_Chemistry_Periodic_Table.xml class_Science_Chemistry_Residue_PDB.xml classtree_Science_Chemistry_Atom.xml classtree_Science_Chemistry_Coordinates.xml classtree_Science_Chemistry_Element.xml classtree_Science_Chemistry_Macromolecule.xml classtree_Science_Chemistry_Molecule.xml classtree_Science_Chemistry_PDBFile.xml classtree_Science_Chemistry_PDBParser.xml classtree_Science_Chemistry_Periodic_Table.xml elementlist.xml packageelementlist_Science_Chemistry.html packagelist.xml phpdoc_classtree.html phpdoc_elementlist.html phpdoc_packagelist.html phpdoc_warnings.html phpdoc_xmlfiles.html warnings_classanalyser.xml warnings_parser.xml

2001-04-10 Thread Jesus M. Castagnetto
jmcastagnetto Tue Apr 10 11:44:25 2001 EDT Added files: /pear/Science/Chemistry/doc Science_Chemistry_Atom.html Science_Chemistry_Atom_PDB.html Science_Chemistry_Coordinates.html

[PHP-CVS] cvs: pear /Science/Chemistry/doc packageelementlist_Chem.html

2001-04-10 Thread Jesus M. Castagnetto
jmcastagnetto Tue Apr 10 11:41:50 2001 EDT Removed files: /pear/Science/Chemistry/doc packageelementlist_Chem.html Log: old doc -- PHP CVS Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [E

[PHP-CVS] cvs: pear /Science/Chemistry/doc Chem_Atom.html Chem_Atom_PDB.html Chem_Coordinates.html Chem_Element.html Chem_Macromolecule.html Chem_Macromolecule_PDB.html Chem_Molecule.html Chem_Molecule_XYZ.html Chem_PDBFile.html Chem_PDBParser.html Chem_Periodic_Table.html Chem_Residue_PDB.html class_Chem_Atom.xml class_Chem_Atom_PDB.xml class_Chem_Coordinates.xml class_Chem_Element.xml class_Chem_Macromolecule.xml class_Chem_Macromolecule_PDB.xml class_Chem_Molecule.xml class_Chem_Molecule_XYZ.xml class_Chem_PDBFile.xml class_Chem_PDBParser.xml class_Chem_Periodic_Table.xml class_Chem_Residue_PDB.xml classtree_Chem_Atom.xml classtree_Chem_Coordinates.xml classtree_Chem_Element.xml classtree_Chem_Macromolecule.xml classtree_Chem_Molecule.xml classtree_Chem_PDBFile.xml classtree_Chem_PDBParser.xml classtree_Chem_Periodic_Table.xml

2001-04-10 Thread Jesus M. Castagnetto
jmcastagnetto Tue Apr 10 11:41:16 2001 EDT Removed files: /pear/Science/Chemistry/doc Chem_Atom.html Chem_Atom_PDB.html Chem_Coordinates.html Chem_Element.html Chem_Macromolecule.html

RE: [PHP] Limitation of redirecting using header()?

2001-04-10 Thread Johnson, Kirk
There is also the client-side META tag redirect, which has been deprecated by W3C (although it is hard to imagine the browser makers not supporting this for quite a while longer): echo("< /HEAD>$message"); As for the address bar contents not changing, I don't know what to say. I haven't seen

[PHP-CVS] cvs: pear /Science Chemistry.php /Science/Chemistry Atom.php Atom_PDB.php Coordinates.php Element.php Macromolecule.php Macromolecule_PDB.php Molecule.php Molecule_XYZ.php PDBFile.php PDBParser.php Periodic_Table.php Residue_PDB.php /Science/Chemistry/test chi_crawler.php testChem.php testPDB.php xyz2cml.php

2001-04-10 Thread Jesus M. Castagnetto
jmcastagnetto Tue Apr 10 11:33:21 2001 EDT Modified files: /pear/Science Chemistry.php /pear/Science/Chemistry Atom.php Atom_PDB.php Coordinates.php Element.php Macromolecule.php Macromo

RE: [PHP] __ $8/mo php hosting on 24/7, OC3+ web server ___

2001-04-10 Thread Krznaric Michael
How come no one is subscribing us to any porn lists? Joke!!! Mike -Original Message- From: Chris Anderson [mailto:[EMAIL PROTECTED]] Sent: Friday, April 06, 2001 5:32 PM To: Jon Haworth; 'Jeffrey Greer'; [EMAIL PROTECTED] Subject: Re: [PHP] __ $8/mo php hosting on 24/7, OC3+ web server

Re: [PHP-CVS] cvs: php4 /ext/sockets sockets.c

2001-04-10 Thread Jason Greene
> /usr/src/web/php/php4/ext/standard/url_scanner_ex.re:19: php.h: Permission Do you have any idea which php.h file is being accessed? That line is simply an include, and this implies you don't have read access to php.h -Jason - Original Message - From: "Derick Rethans" <[EMAIL PROTECTED

[PHP] url question

2001-04-10 Thread Ide, Jim
I have a php script that browses a database table. You can page through the database table by clicking these links: http://localhost/browse.php?action=first http://localhost/browse.php?action=prev http://localhost/browse.php?action=next http://localhost/browse.php?action=last When you click the

[PHP] Limitation of redirecting using header()?

2001-04-10 Thread Daniel
I am writting a session enabled webapp that has a typical login page. The page submits to itself and upon validation, I want to allow the user to continue on to the next page. >From everything I have read so far, the only way to redirect programmatically is via header(). Unfortunately, what I'm

Re: [PHP] __ $8/mo php hosting on 24/7, OC3+ web server ___

2001-04-10 Thread Chris Anderson
/me counts to himself Yep 3 times, thats as bad as those people who sign up the lottery ads to this list - Original Message - From: "Jon Haworth" <[EMAIL PROTECTED]> To: "'Jeffrey Greer'" <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]> Sent: Tuesday, April 10, 2001 12:52 PM Subject: RE: [PHP] __

Re: [PHP-CVS] cvs: pear /Science Chemistry.php /Science/Chemistry Atom.php Atom_PDB.php Coordinates.php Element.php Macromolecule.php Macromolecule_PDB.php Molecule.php Molecule_XYZ.php PDBFile.php PDBPa

2001-04-10 Thread Jesus M. Castagnetto
--- Derick Rethans <[EMAIL PROTECTED]> wrote: > hrm, > > is it really needed to add 3.6MB of stuff to the PHP > cvs? Well, yes. The whole thing contains classes, examples and documentation for the Science_Chemistry package for PEAR. What is the problem you have encountered w/ this? > > Deri

RE: [PHP] Commercial sites that use PHP

2001-04-10 Thread Pierre-Yves Lemaire
> Yahoo acquired eGroups and Google this past year, Hum, I think yahoo bought google's technology but not the company. Google.com is using Perl, Python, Java/Servlet/JSP and C++. Well that is what they ask for in their job oppenings. py At 10:20 AM 4/10/01 -0700, you wrote: >Yahoo uses a l

[PHP-CVS] cvs: php4 /ext/imap config.m4

2001-04-10 Thread Jon Parise
jon Tue Apr 10 10:31:35 2001 EDT Modified files: /php4/ext/imap config.m4 Log: Statements end with a period. Index: php4/ext/imap/config.m4 diff -u php4/ext/imap/config.m4:1.26 php4/ext/imap/config.m4:1.27 --- php4/ext/imap/config.m4:1.26Tue

RE: [PHP] Commercial sites that use PHP

2001-04-10 Thread Benjamin Munoz
Yahoo uses a lot of Python. Yahoo Mail pages have extensions of .py, indicating Python. Yahoo acquired eGroups and Google this past year, both of which openly use Python to generate pages. They most likely use Python in conjunction with other scripting and compiled languages. -Ben -Origi

RE: [PHP-CVS] cvs: pear /Science Chemistry.php /Science/ChemistryAtom.php Atom_PDB.php Coordinates.php Element.php Macromolecule.phpMacromolecule_PDB.php Molecule.php Molecule_XYZ.php PDBFile.php PDBPa

2001-04-10 Thread Marten Gustafsson
Does PEAR really need to be in the PHP source tree? -Marten. Icq# 38863127 > -Original Message- > From: Derick Rethans [mailto:[EMAIL PROTECTED]] > Sent: Tuesday, April 10, 2001 6:57 PM > To: Jesus M. Castagnetto > Cc: [EMAIL PROTECTED] > Subject: Re: [PHP-CVS] cvs: pear /Science Che

[PHP] Developing new PHP modules

2001-04-10 Thread Carlos Serrão
Hi all, I don't know if I'm in the correct mailling list or not, but could someone provide me with some information about the developement of new PHP modules (documentation, source-code, ...) ? Thanks in advance. Best regards, _ Carlo

Re: [PHP] MySql: Default values

2001-04-10 Thread Andrew Rush
on 4/10/01 7:23 PM, elias at [EMAIL PROTECTED] wrote: > Can a default field value in MySql be a function? no. > Like default value of a date field should be the built-in function NOW()? still, nope. > anything like what i'm asking for? ahhh- if you are looking for a way to automatically have

Re: [PHP-CVS] cvs: pear /Science Chemistry.php /Science/ChemistryAtom.php Atom_PDB.php Coordinates.php Element.php Macromolecule.phpMacromolecule_PDB.php Molecule.php Molecule_XYZ.php PDBFile.php PDBPa

2001-04-10 Thread Derick Rethans
hrm, is it really needed to add 3.6MB of stuff to the PHP cvs? Derick - PHP: Scripting the Web - www.php.net - [EMAIL PROTECTED] SRM: Site Resource Manager - www.vl-srm.net -

RE: [PHP] __ $8/mo php hosting on 24/7, OC3+ web server ___

2001-04-10 Thread Jon Haworth
Yes, we know, you've told us three times now. -Original Message- From: Jeffrey Greer [mailto:[EMAIL PROTECTED]] Sent: 10 April 2001 17:45 To: [EMAIL PROTECTED] Subject: [PHP] __ $8/mo php hosting on 24/7, OC3+ web server ___ Hello, I am offering php hosting with features at a price no

Re: [PHP-CVS] cvs: php4 /ext/sockets sockets.c

2001-04-10 Thread Jason Greene
Thanks, -Jason - Original Message - From: "Derick Rethans" <[EMAIL PROTECTED]> To: "Jason Greene" <[EMAIL PROTECTED]> Cc: "Jani Taskinen" <[EMAIL PROTECTED]>; "Jason Greene" <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]> Sent: Tuesday, April 10, 2001 11:32 AM Subject: Re: [PHP-CVS] cvs: php4

[PHP] __ $8/mo php hosting on 24/7, OC3+ web server ___

2001-04-10 Thread Jeffrey Greer
Hello, I am offering php hosting with features at a price no one else has, as far as I know. I'm not going to create a giant web hosting service. I'm doing this to pay for my web portal. - This web portal has been operated by the same person (my partner) for over four years. I have been a co-ad

Re: [PHP-CVS] cvs: CVSROOT / loginfo

2001-04-10 Thread Martin Jansen
On Tue, 10 Apr 2001 16:31:01 -, Rasmus Lerdorf wrote: >-pearweb $CVSROOT/CVSROOT/loginfo.pl [EMAIL PROTECTED] $USER %{sVv} >+pearweb $CVSROOT/CVSROOT/loginfo.pl [EMAIL PROTECTED] $USER %{sVv} Wouldn't it be better to send the commit messages to [EMAIL PROTECTED] or [EMAIL PROTECTED]? -Marti

Re: [PHP] Commercial sites that use PHP

2001-04-10 Thread Michael Kimsal
Brent Langston wrote: > Does anyone know what Yahoo uses? It's obviously some form of scripting... > especially at http://my.yahoo.com. I've always been curious about what they > are using as their parser... it appears to spit out pure HTML, so it acts > like PHP... > > Any thoughts? No offe

[PHP] mysql .. quick question

2001-04-10 Thread PeterOblivion
I really need help. I cant seem to get phpMyAdmin to put my backup dbase onto the new server. I always get some stupid error because of the html which is stored in the dbase. Does someone know of a cgi script that would do it successfully, or maybe a telnet command that will dump it? Any he

[PHP-CVS] cvs: CVSROOT / loginfo

2001-04-10 Thread Rasmus Lerdorf
rasmus Tue Apr 10 09:31:01 2001 EDT Modified files: /CVSROOTloginfo Log: Fix email address for pear commits Index: CVSROOT/loginfo diff -u CVSROOT/loginfo:1.40 CVSROOT/loginfo:1.41 --- CVSROOT/loginfo:1.40Tue Feb 27 06:56:43 2001 +++ CVSROOT/log

Re: [PHP-CVS] cvs: php4 /ext/sockets sockets.c

2001-04-10 Thread Derick Rethans
On Tue, 10 Apr 2001, Jason Greene wrote: > Out of those platforms you listed, I have tested this on Linux. I will test FreeBSD >today. > However, I do not have an OpenBSD box, does anyone out there want to try and > build the latest cvs with --enable-sockets on OpenBSD? I can test to build it..

Re: [PHP] can't restart apache, help needed

2001-04-10 Thread Lindsay Adams
do you have php3 installed still? if so, your mime types might be conflicting or something On 4/10/01 3:35 AM, "Thomas Angst" <[EMAIL PROTECTED]> wrote: > I didn't get any further errors as this in /ver/log/httpd/error_log: > PHP Warning: Function registration failed - duplicate name - define

RE: [PHP] Commercial sites that use PHP

2001-04-10 Thread Brent Langston
Does anyone know what Yahoo uses? It's obviously some form of scripting... especially at http://my.yahoo.com. I've always been curious about what they are using as their parser... it appears to spit out pure HTML, so it acts like PHP... Any thoughts? -Original Message- From: Michael

[PHP] ezpublish installation

2001-04-10 Thread Peter Van Dijck
Hi, I think I finally found a cms that does most of what I want it to: ezpublish (http://developer.ez.no/article/archive/4/) I'm trying to install it, I'm on a apache server, a few questions: 1. how do I install Imagemagick? Seems I need to recompile PHP and do --with-imagick=DIR, is that corre

[PHP-CVS] cvs: php4 /ext/odbc Makefile.in config.m4 php_odbc.c php_odbc.h

2001-04-10 Thread Kevin N Shallow
kevin Tue Apr 10 09:26:29 2001 EDT Modified files: /php4/ext/odbc Makefile.in config.m4 php_odbc.c php_odbc.h Log: Fixed compatibility issues in the ODBC extension for the Velocis Database server. Specifically, config.m4 was changed to use the client libra

Re: [PHP] Commercial sites that use PHP

2001-04-10 Thread Michael Stearne
Along with VaLinux.com and all new VA sites. Penguin Computing dies too. Michael On Tuesday, April 10, 2001, at 12:20 PM, Phillip Bow wrote: > Well since nobody else has chimed in(barring the fact it may be in one > of > the already recommended lists) sourceforge is made with php, and is a >

Re: [PHP] Commercial sites that use PHP

2001-04-10 Thread Phillip Bow
Well since nobody else has chimed in(barring the fact it may be in one of the already recommended lists) sourceforge is made with php, and is a pretty noteworthy site. -- phill "Phil Labonte" <[EMAIL PROTECTED]> wrote in message 1B5C7FA9D60DD511ABEF00508BFDEFDC105E@EXCHANGE">news:1B5C7FA9D60DD511

[PHP-CVS] cvs: CVSROOT / cvsusers

2001-04-10 Thread Rasmus Lerdorf
rasmus Tue Apr 10 09:16:17 2001 EDT Modified files: /CVSROOTcvsusers Log: Fix email address Index: CVSROOT/cvsusers diff -u CVSROOT/cvsusers:1.253 CVSROOT/cvsusers:1.254 --- CVSROOT/cvsusers:1.253 Mon Apr 9 13:32:31 2001 +++ CVSROOT/cvsusersTu

[PHP-CVS] cvs: CVSROOT / avail gen_acl_file.m4

2001-04-10 Thread Rasmus Lerdorf
rasmus Tue Apr 10 09:00:19 2001 EDT Modified files: /CVSROOTavail gen_acl_file.m4 Log: Fix Kevin's password and add some karma Index: CVSROOT/avail diff -u CVSROOT/avail:1.142 CVSROOT/avail:1.143 --- CVSROOT/avail:1.142 Mon Apr 9 13:32:31 2001 +++ CVS

Re: [PHP] Commercial sites that use PHP

2001-04-10 Thread Chris Adams
On 10 Apr 2001 06:52:07 -0700, Phil Labonte <[EMAIL PROTECTED]> wrote: >Can anyone send me a list of large commercial web sites that use PHP? Cribbed mercilessly from a number of sources: http://gateway.digitaria.com/~chris/php/sites.html -- PHP General Mailing List (http://www.php.net/) To u

[PHP] Netscape security error

2001-04-10 Thread Claudia
I am receiving a Netscape security error (version 4.7) when attempting to submit my form without a complete email address. Here is the link: http://www.contus.com/test/golf/page.php3?site=contusgolf&page=golf%20tours&; ad=golf At this page choose the any hyper link named "Contact us for more In

Re: [PHP-CVS] cvs: php4 /ext/mcrypt mcrypt.c

2001-04-10 Thread Colin Viebrock
> Hello Guys, > > do you think this should be merged to the 4.0.5 branch? Otherwise Blowfish > (and others) encrypted get initialised with a too long key. That caused > them to be not compatible with encryptions/decryptions made by other > programs. As the poster of the original bug report, I str

Re: [PHP] Oracle Connection

2001-04-10 Thread Brian S. Dunworth
At 08:42 AM 4/10/01 -0700, Dunaway, Brian wrote: >I need to access a remote oracle database. What I mean is that the machine >that is allowed access to the oracle database is not running php...I have >access to the machine with the oracle access from my machine which is >running php. Boy that

  1   2   >