Re: [PHP] I am SO confused (help with references!) (could be a bug?)

2001-04-10 Thread \[Intent A/S\] Tais M. Hansen
Hi, Well... I don't know if this is any help but I ran your code under PHP/4.0b4 and got: "Inside2 Inside2 Inside2 " Seems right to me? -- -- Intent A/S Tais M. Hansen Web Developer ""Plutarck"" <[EMAIL PROTECTED]> wrote in message 9asamr$865$[EMAIL PROTECTED]">news:9asamr$865$[EMAIL PROTEC

Re: [PHP] Back Button Dilemma's

2001-04-10 Thread Plutarck
If you know javascript, you might try something like history.go(20) on each page. It _should_ cause the user to catapult forward in their history list each time they load the page. If they haven't used their back button, then having javascript "push" their forward button should do nothing. That

Re: [PHP] I am SO confused (help with references!) (could be a bug?)

2001-04-10 Thread Plutarck
Odd...well I still don't have a clue how to do what I wanted, but I recoded it and now it works. I just run HTTP_POST_VARS, HTTP_GET_VARS, and HTTP_COOKIE_VARS through a special function that refines all the data. No errors, no bugs, no problem :) Thanks anway...maybe I'll figure out what's goin

Re: [PHP] I am SO confused (help with references!) (could be a bug?)

2001-04-10 Thread \[Intent A/S\] Tais M. Hansen
Actually I ran it under PHP/4.0.4pl1! Forgot which server I were using! ;) But great that you got it working! I too hate seemingly illogical errors! :) -- -- Intent A/S Tais M. Hansen Web Developer ""Plutarck"" <[EMAIL PROTECTED]> wrote in message 9auchs$jku$[EMAIL PROTECTED]">news:9auchs$jku$

[PHP-CVS] cvs: php4 /pear/DB common.php

2001-04-10 Thread Martin Jansen
mj Tue Apr 10 01:03:47 2001 EDT Modified files: /php4/pear/DB common.php Log: fixed typo in inline docs Index: php4/pear/DB/common.php diff -u php4/pear/DB/common.php:1.42 php4/pear/DB/common.php:1.43 --- php4/pear/DB/common.php:1.42Mon Ma

Re: [PHP] while loop

2001-04-10 Thread Yasuo Ohgaki
> > On Tue, 10 Apr 2001 15:16, Zeus wrote: > > > > $query = mysql_query("some SQL here"); > > > > while ($row = mysql_fetch_array($query)) { This line is the same as do while( ($row = mysql_fetch_array($query)) == TRUE) { Common coding style in C/C++ and PHP :) Regards, -- Yasuo Ohgaki ""Zeus

Re: [PHP] what could cause the maximum execution time exceeded?

2001-04-10 Thread Rahul Bhide
Just wondering ---if your question means . Where is the time limit set ? then the answer is ---php.ini file (usually sitting in the /usr/local/lib directory) . please ignore if I interpreted the question wrong !!. bye, ~Rahul "B. van Ouwerkerk" wrote: > At 11:02 10-4-01 -0500, Jacky wrote: > >H

[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] Why my php page will reply "session expire" when the use press back button?

2001-04-10 Thread Carfield Yim
> > Why my php page will reply "session expire" when the use press back > > button? And then all the information in the form that user fill is lost, > > how can I fix this? thx > > > > Set your session.cache_limitter to private and set some reasonable expration > time for session.cache_expire. >

Re: [PHP] Sorry - Way OT but I need help

2001-04-10 Thread Andy Woolley
RE: [PHP] Sorry - Way OT but I need helpIf you place something like: ErrorDocument 404 /errors/404.php inside your .htaccess file and then create a file called 404.php in the errors directory it should work. You can also echo plain text to he screen using ErrorDocument 404 "Error Message Goes

[PHP] php -> html

2001-04-10 Thread ewoong
Hello.. ^^ I am trying to save results for php files. for example.. I create abc.php3 following as.. # abc.php3 If I run abc.php3 , the results is .. hello. So.. How can I this results to save file. # abc.html hello -- PHP General Mailing List (http://www.php.net/) To u

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

2001-04-10 Thread Derick Rethans
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. The second fix fixes a vulnarability in the assembly of th

Re: [PHP] Back Button Dilemma's

2001-04-10 Thread Robert Vetter
RealGM wrote: > > Hi Guys, > > I know everywhere it says that it is not possible to actually disable the back >button, and people have offered some solutions that have not worked for me, this is >why I am emailing this list. > > I have a form which displays the same page with new content (c

Re: [PHP] php -> html

2001-04-10 Thread Renze Munnik
ewoong wrote: > > Hello.. ^^ > > I am trying to save results for php files. > > for example.. > > I create abc.php3 following as.. > > # abc.php3 > >echo ("hello"); > ?> > > If I run abc.php3 , the results is .. > >hello. > > So.. > > How can I this results to save file.

[PHP] can't restart apache, help needed

2001-04-10 Thread Thomas Angst
Hello to all, I have SuSE 7.1 installed and PHP4 source downloaded from www.php.net after ./configure --with-axps=/usr/sbin/apxs make make install and /etc/init.d/apache restart is the http server no more starteable. what's going wrong here, I didn't have any problems with the older version of th

Re: [PHP] page counter

2001-04-10 Thread Jean-Arthur Silve
In addition of all people said, I would add a lock to the file : >$cf = fopen($counter_file,"w"); flock($cf,LOCK_EX); >fputs($cf, "$counter_file_line[0]"); >fclose($cf); This to avoid another script attempt to read the file while you update it... I had the problem, so sometimes the counter retu

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

2001-04-10 Thread Felix Kronlage
On Tue, Apr 10, 2001 at 12:02:45PM +0200, Thomas Angst wrote: > /etc/init.d/apache restart > is the http server no more starteable. > what's going wrong here, I didn't have any problems with the older version > of the suse linux and PHP4, if anyone has an idea how to rerun the apache > without a

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

2001-04-10 Thread Alexander Wagner
Thomas Angst wrote: > ./configure --with-axps=/usr/sbin/apxs > make > make install and > /etc/init.d/apache restart > is the http server no more starteable. What is the exact error-message? What does /sbin/init.d/apache configtest say? regards Wagner -- Assumption is the mother of all fuck-up

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

2001-04-10 Thread Jani Taskinen
Have you tested it on Linux, FreeBSD, OpenBSD... ? :) If you know for sure it will work on these, go ahead. --Jani On Mon, 9 Apr 2001, Jason Greene wrote: >Everyone, > >Can I merge this into the current RC? This should not cause >any problems. > >-Jason > >- Original Message - >From: "

[PHP] what does this error means?

2001-04-10 Thread [EMAIL PROTECTED]
When Itried to insert a record into a table, It looks like the record was never inserted into table so I use mysql_error() and the error message show up: "Duplicate entry '10' for key 1" What does that tell me? Jack [EMAIL PROTECTED] "There is nothing more rewarding than reaching the goal you set

[PHP] php.ini

2001-04-10 Thread Michael Hall
Is it possible to override the maximum script execution time as set in php.ini using an Apache directive like this in an .htaccess file?: php_value max_execution_time = 60 Thanks Mick -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional

Re: [PHP] Controlling just size with regular expressions

2001-04-10 Thread Christian Reiniger
On Monday 09 April 2001 23:37, you wrote: > Hi there, > > I need a regular expression that accepts *anything* without > restrictions, only that the size of the string should be between (for > instance) 0 and 9 characters. I know the {0,9} trick, but how do I > accept *anything* in a form field? "

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

2001-04-10 Thread Thomas Angst
I didn't get any further errors as this in /ver/log/httpd/error_log: PHP Warning: Function registration failed - duplicate name - define in Unknown on line 0 PHP Warning: Function registration failed - duplicate name - defined in Unknown on line 0 PHP Warning: Function registration failed - dup

Re: [PHP] what does this error means?

2001-04-10 Thread Keyur Kalaria
Hi Jacky, This means that your key 1 i,e the first field in the table is a primary key and the table contains a record which has a value 10 in the first field. Hope this is clear. Keyur $$$ - Original Message - From: "Jacky@lilst" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent:

Re: [PHP] Empting all variables

2001-04-10 Thread Christian Reiniger
On Tuesday 10 April 2001 04:28, you wrote: > Is there a quick way to 'empty' all the variables I have set on a page? > I need to clear everything before re-loading the page. If you reload the page everything is cleared anyway (aside from session data) -- Christian Reiniger LGDC Webmaster (http

[PHP] php site down?

2001-04-10 Thread Michael Hall
I've been trying to get to the annotated manual all afternoon but can't get through to www.php.net. Anyone else have the same problem? Mick -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact

Re: [PHP] Upload file from my local C:

2001-04-10 Thread Christian Reiniger
On Monday 09 April 2001 18:35, you wrote: > Christian > > Below is my script. > > if (!copy($file,"1.dat")) { > echo "error"; } > else { > echo "successful"; > } > ?> > > NOTE: where $file is passed by other html using form. how? using a ? Then re-read the file uploa

Re: [PHP] php site down?

2001-04-10 Thread Nick Davies
There seems to be some routing problem at ALTER.NET (from the uk anyway). Nick. On Tue, 10 Apr 2001, Michael Hall wrote: > I've been trying to get to the annotated manual all afternoon but can't > get through to www.php.net. Anyone else have the same problem? > > Mick > > > -- PHP Gener

RE: [PHP] what does this error means?

2001-04-10 Thread Taylor, Stewart
You are trying to add a record whose primary key/unique index already exists in the database. -Stewart -Original Message- From: Jacky@lilst [mailto:[EMAIL PROTECTED]] Sent: 10 April 2001 23:25 To: [EMAIL PROTECTED] Subject: [PHP] what does this error means? When Itried to insert a reco

Re: [PHP] Upload file from my local C:

2001-04-10 Thread Keyur Kalaria
Hi Reiniger, try this : copy(addslashes($file),"1.dat") hope it is clear. keyur - Original Message - From: "Christian Reiniger" <[EMAIL PROTECTED]> To: "HK Woo" <[EMAIL PROTECTED]> Cc: <[EMAIL PROTECTED]> Sent: Tuesday, April 10, 2001 4:15 PM Subject: Re: [PHP] Upload file from my l

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

2001-04-10 Thread James Moore
> > Everyone, > > Can I merge this into the current RC? This should not cause > any problems. What are we doing with the current release right now? who is having problems and which problems are outstanding?? We have two possible MFH's that people want to do which shouldnt really be included at

Re: [PHP] php -> html

2001-04-10 Thread Yasuo Ohgaki
It's not simple with PHP3. (I don't know better way to do this with PHP3. You can make a wrapper function for output functions and store output to files. If you must use PHP3) If you need to do this a lot, upgrade to PHP4. It's easy with PHP4, since PHP4 supports output buffering functions. ob_sta

[PHP] Turn display_errors on and off

2001-04-10 Thread Greig, Euan
I would like to be able to turn on-screen errors on and off selectively within scripts. I have tried using the error_reporting() function but this stops error messages going to the log file, which I want always to happen. It seems to me that I want to set the display_errors configuration option

Re: [PHP] huge PHP file, hardcore processing

2001-04-10 Thread Christian Dechery
At 12:06 10/4/2001 +0900, you wrote: >You should be able to use ODBC under UNIX. I guess. > >Source code for MS SQL Server modules seems it does not compile under UNIX. I >guess it may work with Apache under Windows. > > From mssql_win32_howto.txt in PHP source. > >24 Start Visual Studio, load ph

[PHP] register_shutdown_function - uses for

2001-04-10 Thread Greig, Euan
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. I can see other ways to do what I want (but su

Re: [PHP] Turn display_errors on and off

2001-04-10 Thread elias
Try this alt solution: whenever you don't want onscreen solution call your functions as: @function_name('adadasd'); and if you want warning call them normally. -elias http://www.kameelah.org/eassoft ""Greig, Euan"" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]..

[PHP] Inserting time + date entry into mySQL DB

2001-04-10 Thread Zeus
Hi, I know this has been brought up repeatedly but I couldn't find the archives website. I'm doing a news publishing script (something like newsphp \ php-nuke) but uses mySQL to store all the data instead of flat files. I would like to make it such that everytime I submit an news entry, the ti

Re: [PHP] L?

2001-04-10 Thread bill
I think L is 50. bill Kurth Bemis wrote: > what does the roman numeral L mean? > > can someone point me to a page that has all of the roman numerals and their > English equivlents? > > i forgot? > > ~kurth > > -- > PHP General Mailing List (http://www.php.net/) > To unsubscribe, e-mail: [EMAIL

Re: [PHP] Inserting time + date entry into mySQL DB

2001-04-10 Thread Michael Hall
Create a field in your table called something like 'date' and make its data type TIMESTAMP. MySQL will automatically add a timestamp with each new entry ... assuming you're using UNIX, I don't know about windows. Mick > I know this has been brought up repeatedly but I couldn't find the archive

Re: [PHP] huge PHP file, hardcore processing

2001-04-10 Thread Michael Kimsal
Yes - look at freetds.org. > > sorry... I did not make myself clear. I don't intend to switch from IIS to > Apache, cuz I can't. The server runs a whole site in ASP... this is the > only PHP script that runs on it, I was thinking more of running it in > Linux... can I access a MS SQL server fro

Re: [PHP] php site down?

2001-04-10 Thread Zeus
If you want to view it now, you can try going to http://php.intermedia.com.sg - Its a mirror. - Original Message - From: Nick Davies <[EMAIL PROTECTED]> To: Michael Hall <[EMAIL PROTECTED]> Cc: PHP List <[EMAIL PROTECTED]> Sent: Tuesday, 10 April, 2001 6:46 PM Subject: Re: [PHP] php sit

Re: [PHP] L?

2001-04-10 Thread Michael Hall
Yep ... I unit V 5 X 10 L 50 C 100 D 500 M 1000 no zero ... try doing maths with this system. Mick > I think L is 50. > > bill > > Kurth Bemis wrote: > > > what does the roman numeral L mean? -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For

Re: [PHP] register_shutdown_function - uses for

2001-04-10 Thread elias
Hmm so you can't print?! can you redirect? Header("Location: mymessage.html"); -elias http://www.kameelah.org/eassoft ""Greig, Euan"" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > I was hoping that I could use this function to enable me to finish scripts ti

[PHP] Parse error

2001-04-10 Thread Mike
Im getting a "missing )" error on line 77 but cant seem to find it.Am I missing something else thats causing it? for ($i =1;$i<=15;$i++) { if(!(isset(${'R'.$i.'P'};)))// line 77 { ${'R'.$i.'P'};="NULL"; } } Thanks Mike [EMAIL PROTECTED] -- PHP General Mailing List (h

Re: [PHP] Inserting time + date entry into mySQL DB

2001-04-10 Thread elias
No under windows doesn't work. you have to enter a value in that field with value NOW() -elias http://www.kameelah.org/eassoft "Michael Hall" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > > > Create a field in your table called something like 'date' and make

[PHP] MySql: Default values

2001-04-10 Thread elias
Can a default field value in MySql be a function? Like default value of a date field should be the built-in function NOW()? anything like what i'm asking for? -elias http://www.kameelah.org/eassoft -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED]

Re: [PHP] Parse error

2001-04-10 Thread elias
I think it is because you put a ';' in the isset() after the '}' i believe if you remove it it will work. -elias http://www.kameelah.org/eassoft ""Mike"" <[EMAIL PROTECTED]> wrote in message 9av0j6$h2k$[EMAIL PROTECTED]">news:9av0j6$h2k$[EMAIL PROTECTED]... > Im getting a "missing )" error on li

Re: [PHP] Inserting time + date entry into mySQL DB

2001-04-10 Thread Zeus
I want it such that when a user reads the news, he sees something like --- Saturday 25th March 2001 New mirror up on PHP - posted by Zeus @ 00:00 GMT +8 news news news news news news news news news news news news news --- That sort of thing, how can I go about? -

php-general Digest 10 Apr 2001 13:20:50 -0000 Issue 619

2001-04-10 Thread php-general-digest-help
php-general Digest 10 Apr 2001 13:20:50 - Issue 619 Topics (messages 47911 through 48019): Re: huge PHP file, hardcore processing 47911 by: Yasuo Ohgaki 47912 by: Christian Dechery 47915 by: Lindsay Adams 47916 by: Christian Dechery 47974 by: Plutarck

Re: [PHP] MySql: Default values

2001-04-10 Thread Michael Hall
Mumkin ya elias, ana ma afhamsh su'aalak mnih! Not exactly sure what you mean elias. TIMESTAMP in MySQL is a datatype more than a function, but I'm not absolutely sure about that. Mick On Tue, 10 Apr 2001, elias wrote: > Can a default field value in MySql be a function? > > Like default val

Re: [PHP] Inserting time + date entry into mySQL DB

2001-04-10 Thread Michael Hall
This is all explained in the PHP manual under dates. Assuming you have a field called 'date' with a timestamp in it, you can format the date like this: $date = date("l jS F Y", $date); But there are a lot of options so read the manual. Mick > I want it such that when a user reads the news, he

Re: [PHP] L? Roman function

2001-04-10 Thread Knut H. Hassel Nielsen
Hi there. I picked up this function several years ago. See if this can help you see what the roman value for an arabic number is. //Calculates the Roman numerals for the given Arabic number. // Returns '' on error. function to_roman($num) { // There is no '0' or negative numbers in Roman nume

[PHP] RE: list files in a diretory

2001-04-10 Thread Tim Ward
function sitemap($ddPath) { $dhandle = opendir($ddPath); echo(""); while ($ddFile = readdir($dhandle)) { if ($ddFile == "." or $ddFile == "..") continue; // trap . and .. echo("".$ddFile . ""); if (is_dir($ddPath . $ddFile)) sitem

[PHP] Re: Back Button Dilemma's

2001-04-10 Thread Daniel B I
You may use a hidden field wich tells you what current step is. If it is lower that your current page expects to be, you may take the proper action (here the most simple, die() ) Look at this simple script: ==SCRIPT BEGINS HERE here you can put "<=2" , as you need.. die ( "Error,

[PHP] Commercial sites that use PHP

2001-04-10 Thread Phil Labonte
Can anyone send me a list of large commercial web sites that use PHP? I am trying to move to PHP here at work but I need some examples to impress the boss!!! Thanks -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMA

Re: [PHP] MySql: Default values

2001-04-10 Thread elias
hehe ;) where you from? :) "Michael Hall" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > > Mumkin ya elias, ana ma afhamsh su'aalak mnih! > > Not exactly sure what you mean elias. > TIMESTAMP in MySQL is a datatype more than a function, but I'm not > absolute

RE: [PHP] Commercial sites that use PHP

2001-04-10 Thread Dominick Vansevenant
http://www.zend.com/zend/cs/ Regards, Dominick -Original Message- From: Phil Labonte [mailto:[EMAIL PROTECTED]] Sent: dinsdag 10 april 2001 15:52 To: [EMAIL PROTECTED] Subject: [PHP] Commercial sites that use PHP Can anyone send me a list of large commercial web sites that use PHP? I

[PHP] @Listing - causing pasre error

2001-04-10 Thread Wilbert Enserink
Hi everybody, I want to write to a given file using the code below. Somehow I get the parse error. I thnk it has something to do with --- @Listing Is this a setting in my php.ini which is wrong or is the code maybe wrong (I copied it out of a php text book.) Thanx Wilbert "; echo ""; ec

Re: [PHP] Inserting time + date entry into mySQL DB

2001-04-10 Thread elias
I believe there is some misunderstandings... I believe Zeus just doesn't know how to insert current date in his database: ie: INSERT INTO MyTable(other_field, date_field) VALUES('adasd', NOW()) this will insert in your date field the current datetime. -elias http://www.kameelah.org/eassoft "Mic

Re: [PHP] Commercial sites that use PHP

2001-04-10 Thread Clayton Dukes
I don't know if he'll be impressed, but I am :-) http://www.gdd.net Offers free Cisco Training as well as High School and College level essays. Clayton Dukes CCNA, CCDA, CCDP, CCNP Internetwork Solutions Engineer Internetwork Management Engineer Thrupoint, Inc. Tampa, FL (c) 904.477.7825 (h) 9

Re: [PHP] @Listing - causing pasre error

2001-04-10 Thread Rasmus Lerdorf
> I want to write to a given file using the code below. Somehow I get the > parse error. I thnk it has something to do with --- @Listing > Is this a setting in my php.ini which is wrong or is the code maybe wrong (I > copied it out of a php text book.) What is this @Listing thing supposed t

Re: [PHP] Commercial sites that use PHP

2001-04-10 Thread Keyur Kalaria
this is a commercial site. site : http://www.goodlookingindia.com pl. send me your complete reviews on it . it will be very very helpful to me. - keyur $$$ - Original Message - From: "Phil Labonte" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, April 10, 2001 7:22 PM

[PHP] Review

2001-04-10 Thread Keyur Kalaria
Hello everybody, I recently developed this site : http://www.goodlookingindia.com . I am adding many more sections in it. Pl. let me know how can i improve the performance of this site. Your reviews will be very helpful to me. Thanks in advance. Keyur $$$ -- PHP General Mailing Li

Re: [PHP] Commercial sites that use PHP

2001-04-10 Thread Andy Woolley
www.businessmeetings.com is another commercial site that I ported from ASP to PHP 12 months ago. Andy Woolley. www.databasewatch.com > - Original Message - > From: "Phil Labonte" <[EMAIL PROTECTED]> > To: <[EMAIL PROTECTED]> > Sent: Tuesday, April 10, 2001 7:22 PM > Subject: [PHP] Comme

Re: [PHP] Commercial sites that use PHP

2001-04-10 Thread Michael Hall
GoEureka, one of Australia's biggest search engines, uses php on at least part of its site: see http://www.goeureka.com.au Mick On Tue, 10 Apr 2001, Phil Labonte wrote: > Can anyone send me a list of large commercial web sites that use PHP? > > I am trying to move to PHP here at work but I n

[PHP] user login

2001-04-10 Thread george
I know it is possible, I'm just not sure how, but I want a user to log into the site then if they enter information into a form the database not only stores the form info but also who entered it, so I would have a field called user and it would either get theinformation from a cookie,which I hav

Re: [PHP] user login

2001-04-10 Thread Keyur Kalaria
You can use session management keyur - Original Message - From: "george" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, April 10, 2001 8:19 PM Subject: [PHP] user login > I know it is possible, I'm just not sure how, but I want a user to log into > the site then if they e

[PHP] Fwd:

2001-04-10 Thread Kurth Bemis
can the moderator please boot this person from the list? ~kurth >Delivered-To: [EMAIL PROTECTED] > >Date: Tue, 10 Apr 2001 09:56:07 +0300 >From: >To: <[EMAIL PROTECTED]> >Message-Id: <0104100956074836@parkntsrv> > >This is a description of the listmanager commands recognized by the >XtraMail S

Re: [PHP] Commercial sites that use PHP

2001-04-10 Thread Philip Olson
This looks like an old copy of sites.php : http://www.phpinfo.com/sites.php Btw, why has the following been removed? http://www.php.net/sites.php To difficult to maintain I suppose. At any rate, you'll find some good examples. Regards, Philip On Tue, 10 Apr 2001, Phil Labonte wrote: >

Re: [PHP] Commercial sites that use PHP

2001-04-10 Thread Michael Kimsal
Phil Labonte wrote: > Can anyone send me a list of large commercial web sites that use PHP? > > I am trying to move to PHP here at work but I need some examples to impress > the boss!!! > > Thanks We are working on compiling a list of these - anyone with information, please email me as well, a

[PHP] Oracle Connection

2001-04-10 Thread Dunaway, Brian
Greetings, 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 sounds confusing. anyway I am setting my env

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

2001-04-10 Thread Jason Greene
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? Thanks, -Jason - Original Message - From: "Jani Taskinen" <[EM

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

[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] 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

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

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 >

[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

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

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

[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

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] __ $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] __ $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] 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

[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-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] 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

[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

[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

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/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-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] __ $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] __

[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: 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

[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

[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

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
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

  1   2   >