Re: [PHP] CAN I CASH the output of PHP SCRIPT?

2003-09-22 Thread Becoming Digital
The correct spelling is "cache." I'm not trying to be a spelling and grammar freak (though I am), simply aiding your future searches on the topic. PEAR has a very nice output caching class. I haven't used it myself, but I've heard good things. I believe it was discussed recently on this very

Re: [PHP] CAN I CASH the output of PHP SCRIPT?

2003-09-22 Thread Curt Zirzow
* Thus wrote Nabil ([EMAIL PROTECTED]): > Hi all; > > I would like to cash all the output of PHP files on my apache .. to increase > the performance. To prevent PHP to work all the time to interpret and > connect to myself which is slow the performance and use the CPU .. as I have > very heavy loa

[PHP] CAN I CASH the output of PHP SCRIPT?

2003-09-22 Thread Nabil
Hi all; I would like to cash all the output of PHP files on my apache .. to increase the performance. To prevent PHP to work all the time to interpret and connect to myself which is slow the performance and use the CPU .. as I have very heavy loaded server.. I thought there might be a way to store

[PHP] javascript open window and a PHP script...

2003-09-22 Thread jsWalter
I have a link on a page... Add or Update Your Event This open the PHP file just fine and passes the vars fine. But I need a new window to open via JavaScript. Why? Because I have a "RETURN" link on the opening page that closes the child page, and if this new window is not opened

[PHP] Formatting a string for entry into MySQL

2003-09-22 Thread James Johnson
Hi, I'm trying to generate a string that contains a , to insert into a MySQL table. It appears the is being stripped out either just before or during the update. ** code ** // has both info, update both $ad_contact = $tr_email; $ad_contact .= ""; $pSep = "-"; $ad_contact .= $tr_p1AC; $ad_conta

Re: [PHP] passing parameters to a script doesn't work

2003-09-22 Thread John Nichel
Sol wrote: Hi, I'm trying to pass parameters to a PHP script and it's not working. Whilst this is the first time I've tried to use this, I'm basically copying an example straight out of a text book and can't understand why this doesn't work. In one script I have a (static) link: http://localh

[PHP] passing parameters to a script doesn't work

2003-09-22 Thread Sol
Hi, I'm trying to pass parameters to a PHP script and it's not working. Whilst this is the first time I've tried to use this, I'm basically copying an example straight out of a text book and can't understand why this doesn't work. In one script I have a (static) link: http://localhost/text/ba

Re: [PHP] PHP Editor - which to use?

2003-09-22 Thread NukedWeb
>You must either be insane, a genius, or joking. Some of the most gifted people in the world are all three! Not that I'm claiming to be one, but yes I'm all three. :-D > I couldn't imagine writing code without context sensitive highlighting -- there are so many bugs that would be overlooked. - H

Re: [PHP] PHP Editor - which to use?

2003-09-22 Thread Dan Anderson
> Best PHP Editor on the market: called "Notepad". Written by a tiny little > software dev company called Microsoft. Very nicely written, compared to the rest > of their software. You must either be insane, a genius, or joking. I couldn't imagine writing code without context sensitive highlight

Re: [PHP] PHP Editor - which to use?

2003-09-22 Thread Robert Cummings
On Mon, 2003-09-22 at 22:08, [EMAIL PROTECTED] wrote: > Best PHP Editor on the market: called "Notepad". Written by a tiny little > software dev company called Microsoft. Very nicely written, compared to the rest > of their software. Nh, a slightly larger company named Microsoft Inc. created

Re: [PHP] Calling PHP shell scripts with exec from within PHP goes

2003-09-22 Thread uvm
> On Mon, 2003-09-22 at 19:50, uvm wrote: > > I'm beggining to develop the theory that things go awry when > > using exec from within a webserver-executed PHP script to call > > a shell script itself written in PHP. > > Why are you trying to call a php script with exec...since it is php why > n

Re: [PHP] Calling PHP shell scripts with exec from within PHP goes awry?

2003-09-22 Thread Robert Cummings
On Sun, 2003-09-21 at 22:00, Ray Hunter wrote: > On Mon, 2003-09-22 at 19:50, uvm wrote: > > I'm beggining to develop the theory that things go awry when > > using exec from within a webserver-executed PHP script to call > > a shell script itself written in PHP. > > > > Why are you trying to c

Re: [PHP] PHP Editor - which to use?

2003-09-22 Thread NukedWeb
Best PHP Editor on the market: called "Notepad". Written by a tiny little software dev company called Microsoft. Very nicely written, compared to the rest of their software.

Re: [PHP] Calling PHP shell scripts with exec from within PHP goes awry?

2003-09-22 Thread Ray Hunter
On Mon, 2003-09-22 at 19:50, uvm wrote: > I'm beggining to develop the theory that things go awry when > using exec from within a webserver-executed PHP script to call > a shell script itself written in PHP. > Why are you trying to call a php script with exec...since it is php why not just cal

Re: [PHP] PHP Editor - which to use?

2003-09-22 Thread Ray Hunter
> PHP eclipse is also nice, you need eclipse from http://www.eclipse.org > and then you install the PHP Eclipse module > http://phpeclipse.sourceforge.net. Very easy to install, I am a big fan > of Komodo, I also like Vim, Kate and Eclipse. I tried Zend Studio 1 and > 2 but it didn't live up

Re: [PHP] speaking of php editors

2003-09-22 Thread Ray Hunter
Check out vim or emacs... -- BigDog On Mon, 2003-09-22 at 17:41, Chris W. Parker wrote: > Hey everyone. > > I am looking for an editor that will highlight the string > "{$array['index']['index']}" within a string. > > For example: > > +- gray + > |

[PHP] Calling PHP shell scripts with exec from within PHP goes awry?

2003-09-22 Thread uvm
I'm beggining to develop the theory that things go awry when using exec from within a webserver-executed PHP script to call a shell script itself written in PHP. The example that I'm really trying to do might be too complicated for presentation here, but here's a simplified version. Take the

[PHP] Auto load data

2003-09-22 Thread ascll
Greetings, I'm designing a table with 21 columns and 3 rows (1-row column header, 2-row data) store in .php file, and each cell of this table storing a value, that I stored it using MySQL database. Now, I want all the values (just the values, but NOT the table) shown on this page automatic update

Re: [PHP] Problem's addign a script to my web page.

2003-09-22 Thread Stratis Aftousmis
--- Marek Kilimajer <[EMAIL PROTECTED]> wrote: > Yes, it will get rid of the permission problems. > > Example of creating a directory: > > $fp=ftp_connect('localhost'); > if(ftp_login($fp, $ftpuser, $ftppass)) { > if(ftp_mkdir($fp, $ftpbasedir .'members/'.$iid)) { > /*if(!ftp_site($fp, 'ch

[PHP] PHP5 interfaces?

2003-09-22 Thread Javier Muniz
Wondering if maybe someone famililar with php5 can respond to this. I am reading about PHP5 and it's interface support, and i have a concern. The purpose of interfaces is to handle multiple inheritance in a fashion that resolves a number of conflicts that arise when performing true multiple inher

Re: [PHP] speaking of php editors

2003-09-22 Thread Curt Zirzow
* Thus wrote Chris W. Parker ([EMAIL PROTECTED]): > Hey everyone. > > I am looking for an editor that will highlight the string > "{$array['index']['index']}" within a string. > > For example: > > +- gray + > | | >

RE: [PHP] Subcategories in php

2003-09-22 Thread Chris W. Parker
phpu on Saturday, September 20, 2003 7:41 AM said: > I have been trying to do this for weeks but i just cant figure this > out. I have categories that have subcategories and i want to insert > them into database. If you need more than two levels of classification I

[PHP] speaking of php editors

2003-09-22 Thread Chris W. Parker
Hey everyone. I am looking for an editor that will highlight the string "{$array['index']['index']}" within a string. For example: +- gray + | | | +-- red ---+ | | | |

RE: [PHP] PHP Editor - which to use?

2003-09-22 Thread Chris W. Parker
Binay on Monday, September 22, 2003 1:58 AM said: > Please suggest me a good PHP editor like ( Microsoft's Interdev for > ASP) to write my php programs/scripts and get a visual feel. Doesn't fit in the "visual feel" category but I really like HTML-Kit available at

Re: [PHP] PHP Editor - which to use?

2003-09-22 Thread Jason Sheets
PHP eclipse is also nice, you need eclipse from http://www.eclipse.org and then you install the PHP Eclipse module http://phpeclipse.sourceforge.net. Very easy to install, I am a big fan of Komodo, I also like Vim, Kate and Eclipse. I tried Zend Studio 1 and 2 but it didn't live up to the exp

RE: [PHP] Shopping Cart Solutions

2003-09-22 Thread Chris W. Parker
Henrik Hudson on Monday, September 22, 2003 3:09 PM said: > My 2 cents. OSCommerce is great if you want to use it out of the box, > but we tried to extend it and alter some of it's functions and the > code is very obtuse and making changes in one spot can lead to > p

Re: [PHP] Shopping Cart Solutions

2003-09-22 Thread Henrik Hudson
On Monday 22 September 2003 15:42, Adrian Teasdale wrote: > Charles > > Try oscommerce.org - it's an open source app written in PHP that has a > fantastic community and is incredibly feature-rich. I'm not associated > with the project, but I have used it My 2 cents. OSCommerce is great if you wan

RE: [PHP] Shopping Cart Solutions

2003-09-22 Thread Adrian Teasdale
Charles Try oscommerce.org - it's an open source app written in PHP that has a fantastic community and is incredibly feature-rich. I'm not associated with the project, but I have used it Best regards Ade Sourceguardian.com > -Original Message- > From: Charles Kline [mailto:[EMAIL PROTE

Re: [PHP] Shopping Cart Solutions

2003-09-22 Thread Ray Hunter
> Anyone have suggestions for open source shopping cart apps in PHP? Check out sourceforge.net...there are many there. Also try google and you will get tons of info. -- Ray -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] bugs.php.net

2003-09-22 Thread Amith Varghese
Can anyone tell me where I can download the bug tracking system used for bugs.php.net? I don't see any links on the PHP site (or i'm probably missing something quite obvious) Thanks Amith -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Shopping Cart Solutions

2003-09-22 Thread Charles Kline
Anyone have suggestions for open source shopping cart apps in PHP? Thanks, Charles -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Problem's addign a script to my web page.

2003-09-22 Thread Marek Kilimajer
Yes, it will get rid of the permission problems. Example of creating a directory: $fp=ftp_connect('localhost'); if(ftp_login($fp, $ftpuser, $ftppass)) { if(ftp_mkdir($fp, $ftpbasedir .'members/'.$iid)) { /*if(!ftp_site($fp, 'chmod 0777 '.$ftpbasedir .'members/'.$iid)) die('Could not change perm

Re: [PHP] POST Parameters

2003-09-22 Thread Chris Shiflett
--- Stephan Becker <[EMAIL PROTECTED]> wrote: > A special PHP CGI Script, let´s say 'phpscript.cgi' might be called > with GET or POST Parameters. Though I will never now which kind and > how many of such parameters will be passed to that script, I have to > do some work of mine with them and after

Re: [PHP] POST Parameters

2003-09-22 Thread Brent Baisley
All POST value are stored in the $_POST[] array, all GET values are stored in the $_GET[] array. Both POST and GET values are stored in the $_REQUEST[] array. So if you don't know whether it will be a post or a get, grab the data by accessing the $_REQUEST[] array. On Monday, September 22, 2003

[PHP] POST Parameters

2003-09-22 Thread Stephan Becker
Maybe my problem ist simple to solve, but I can´t. Here it is: A special PHP CGI Script, let´s say 'phpscript.cgi' might be called with GET or POST Parameters. Though I will never now which kind and how many of such parameters will be passed to that script, I have to do some work of mine with them

[PHP] Re: PHP Editor - which to use?

2003-09-22 Thread jsWalter
I use Homesite. It has plug-ins for PHP so you have tps and cose completion. I just modified another plug it has so I can see then entire list of methods a script has in a window, which can then jump to, scroll to, insert here. And I can hit F-12 and it will talk to my apache server and run the

[PHP] Re: Working with PHP Class Within Javascript

2003-09-22 Thread jsWalter
"Harry Yau" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > Hi all, > I am writing a HTML page to gather whole bunch of information > provided by user and pass it to the PHP script to generate a report base > on these information. Namely, user inputs data in textfields of a HTML >

Re: [PHP] Q on class failure...

2003-09-22 Thread Robert Cummings
On Mon, 2003-09-22 at 13:25, jsWalter wrote: > > "Raditha Dissanayake" <[EMAIL PROTECTED]> wrote in message > news:[EMAIL PROTECTED] > > hi, > > > > It's generaly considered that constructors are supposed return an > > instance of that class. Use a factory instead if you want to return nulls; > >

Re: [PHP] Classes Tutorials

2003-09-22 Thread jsWalter
<[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > Although i dont code for pear standards, i must recommend learning the pear > code, its how i taught myself classes. I concur. It is how I am learning this stuff. That and my stupid questions to this list (see previous posts just yes

Re: [PHP] Q on class failure...

2003-09-22 Thread jsWalter
"Curt Zirzow" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > The constructor should be as quick as possible and have as little > logic as possible. What kind of failure are you trying to catch? not really trying to 'catch' a failure. I have to parse the given string format and d

Re: [PHP] Q on class failure...

2003-09-22 Thread jsWalter
"Raditha Dissanayake" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > hi, > > It's generaly considered that constructors are supposed return an > instance of that class. Use a factory instead if you want to return nulls; A Factory? OK, I'll look that up, do some readng and try tha

Re: [PHP] problem with external command.

2003-09-22 Thread Brad Pauly
Jeremy Russell wrote: Everything seems to work fine with this function except that when the command runs and is to populate the "$scan_result" field. It doesn't Im not sure why either. I also get an "End of file unexepected" error in my apache logs as well. Anybody have any advice. Have you tr

Re: [PHP] problem with external command.

2003-09-22 Thread Robert Cummings
On Mon, 2003-09-22 at 13:14, Jeremy Russell wrote: > Hello list... Im fighting a losing battle here.. > > I'm needing help! > > Everything seems to work fine with this function except that when the > command runs and is to populate the "$scan_result" field. It doesn't Im > not sure why either.

[PHP] problem with external command.

2003-09-22 Thread Jeremy Russell
Hello list... Im fighting a losing battle here.. I'm needing help! Everything seems to work fine with this function except that when the command runs and is to populate the "$scan_result" field. It doesn't Im not sure why either. I also get an "End of file unexepected" error in my apache logs a

Re: [PHP] advise on new class of mine

2003-09-22 Thread jsWalter
Thanks Curt for your reply. It helped my head a bit. Walter -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Mail problem

2003-09-22 Thread Curt Zirzow
* Thus wrote Trevor Dowling ([EMAIL PROTECTED]): > PHP Version 4.3.2 > I am having problems sending a large number of emails from a mail list held > in a database. I don't belive that the database has anything to do with the > problem. > > I have about 9000 addresses and can only successfully send

Re: [PHP] Mail problem

2003-09-22 Thread Rob Adams
[snip] I have about 9000 addresses and can only successfully send about 2000 mails before the page say complete/done. [/snip] Depending on your error reporting level, instead of ending normally you should get a script timed out message. If you're not getting that message, it may be that your scri

Re: [PHP] Problem's addign a script to my web page.

2003-09-22 Thread Stratis Aftousmis
--- Marek Kilimajer <[EMAIL PROTECTED]> wrote: > Optionaly you can use ftp functions to create files > and directories. Will that get rid of the parmission's problem? Can you explain a little? __ Do you Yahoo!? Yahoo! SiteBuilder - Free, easy-to-use web site d

Re: [PHP] php with MsSql

2003-09-22 Thread Curt Zirzow
* Thus wrote João Cândido de Souza Neto ([EMAIL PROTECTED]): > I'm creating a site using php with Mssql and i have a problem. > > When i test im my in my conputer using Win XP with php 4.3.2RC4 it's all ok, > but when i use in server running linux and php 4.3.3 i can't save accented > words data i

RE: [PHP] Mail problem

2003-09-22 Thread chris . neale
Have you timed it? You might want to check it doesn't take longer than the max_execution_time directive in php.ini allows (you'll have to check if that's the correct name for it). I've also used set_time_limit(0) at the top of my scripts when I know it's going to take a while... Regards Chris -

RE: [PHP] Mail problem

2003-09-22 Thread Jay Blanchard
[snip] I have about 9000 addresses and can only successfully send about 2000 mails before the page say complete/done. [/snip] What is your PHP script execution time set to in the php.ini? Are you running this from the browser? If so you will also need to modify your browser timeout? Place this se

[PHP] Mail problem

2003-09-22 Thread Trevor Dowling
PHP Version 4.3.2 I am having problems sending a large number of emails from a mail list held in a database. I don't belive that the database has anything to do with the problem. I have about 9000 addresses and can only successfully send about 2000 mails before the page say complete/done. Below i

Re: [PHP] using a php variable in javascript

2003-09-22 Thread Erwin Kerk
have you tried: so = window.open('',''); ?? Erwin Kerk Web Developer Rich Fox wrote: I have a page with the following code: I have 'CompanyEdit' hardcoded, but what I want instead is something like:

[PHP] php with MsSql

2003-09-22 Thread João Cândido de Souza Neto
I'm creating a site using php with Mssql and i have a problem. When i test im my in my conputer using Win XP with php 4.3.2RC4 it's all ok, but when i use in server running linux and php 4.3.3 i can't save accented words data in MsSql database. When i try, i receive this message: Warning: mssql_

[PHP] using a php variable in javascript

2003-09-22 Thread Rich Fox
I have a page with the following code: I have 'CompanyEdit' hardcoded, but what I want instead is something like: so = window.open('','$callerWin'); This does not work, of course, but you get the ide

Re: [PHP] PHP Shell doesn't run on a system

2003-09-22 Thread weston
Curt Zirzow wrote: > * Thus wrote Weston Cann ([EMAIL PROTECTED]): > > A while back I wrote a small script that was designed to work as an > > interactive interpreter for PHP code, a la Python. The script itself is > > written in PHP, and is pretty basic: > > > > > > function readln() > > { >

[PHP] PHP setup differences (was: PHP Shell doesn't run on a system)

2003-09-22 Thread weston
> > > >>And while we're at it, has anyone written a tool that will tell you > >>what's different between server setups? > > > > I use diff on unix. > > > > You may like tkdiff, with its additional GUI to diff Hmmm. Diff on what? I suppose the INI files are prime candidates, as well as whatev

RE: [PHP] is it possible to have the following URL?

2003-09-22 Thread Susan Ator
Thank you so much. That worked perfectly. Don't know why I didn't think of trying the anchor tag there. susan -Original Message- From: Erwin Kerk [mailto:[EMAIL PROTECTED] Sent: Monday, September 22, 2003 11:48 AM To: [EMAIL PROTECTED] Subject: Re: [PHP] is it possible to have the followi

Re: [PHP] Re: PHP Editor - which to use?

2003-09-22 Thread Robert Cummings
I find having a virtual host for development to be best when viewing your handiwork as you develop it. It provides the convenience of actually running the PHP code, and makes it simple to preview the content in the most popular browsers to check for incompatibility issues. Then you can use any text

Re: [PHP] is it possible to have the following URL?

2003-09-22 Thread Erwin Kerk
This should work: https://url_locaion.org/prev_page.php?SID=$SID&uid=$uid&ELEM_ID=$id#tag Erwin Susan Ator wrote: I am passing 3 pieces of information on every URL. For example: https://url_location.org/page.php?SID=$SID&uid=$uid&ELEM_ID=$id I need to be able to return to a previous page usin

[PHP] Re: PHP Editor - which to use?

2003-09-22 Thread John Taylor-Johnston
I don't know if such an animal exists? I use Windows Wordpad as a text editor. Then I use Microweb from: http://www.indigostar.com/microweb.htm You might want to download a newer copy of PHP from http://www.php.net/downloads.php This is lilkely not what you are looking for, but will do a very nice

[PHP] is it possible to have the following URL?

2003-09-22 Thread Susan Ator
I am passing 3 pieces of information on every URL. For example: https://url_location.org/page.php?SID=$SID&uid=$uid&ELEM_ID=$id I need to be able to return to a previous page using an anchor tag like so: https://url_locaion.org/prev_page.php#tag?SID=$SID&uid=$uid&ELEM_ID=$id So far it doesn't

Re: [PHP] non-php issue

2003-09-22 Thread Pete James
Chris Shiflett wrote: There has been research to support that Linux is attacked more than three times as much as Windows (http://www.internetnews.com/dev-news/article.php/3076701). This makes sense, too, because Linux is more likely to be protecting important data. The argument that those who chos

RE: [PHP] non-php issue

2003-09-22 Thread Dan Anderson
Yes, it is possible to secure anything if you know what you are doing. But the average user doesn't know what he or she is doing. So they run their computer as the superuser because they don't want to have to log off and back on to install a program, and all of a sudden any virus that com

Re: [PHP] non-php issue

2003-09-22 Thread Robert Cummings
On Mon, 2003-09-22 at 11:22, Pete James wrote: > > Hey, look... yours IS bigger than mine. :-) And smaller than a lot of others, but I don't have the cash to go and get a new one or an enlargement. Besides, everyone tells me this one is perfect for my needs ;) Cheers, Rob. > > Seriously, though

Re: [PHP] non-php issue

2003-09-22 Thread Chris Shiflett
--- Peter James <[EMAIL PROTECTED]> wrote: > If Linux enjoyed the same type of (often less-than-computer-literate) > user base that Windows does, there'd be plenty for virus writers and > vulnerability exploiters to do. Those who are "less-than-computer-literate" are not protecting anything import

Re: [PHP] non-php issue

2003-09-22 Thread Pete James
Hey, look... yours IS bigger than mine. :-) Seriously, though, I think it's safe to say that "your mileage may vary". It certainly doesn't take 2 minutes to compile and install all of the dependencies along with PHP. It also doesn't take me 6 minutes to restart my version of Windows (2 minute

Re: [PHP] There is an error with SSL support.

2003-09-22 Thread Astron of BrOnX
Bravooo.. Thanks mate.. I havent any problem because, i would be crayz.. Astron.. "Marek Kilimajer" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > I should have mention it. ssl support is compiled directly into the dll, > so you must comment out extension=php_openssl.dll in php.in

RE: [PHP] using submit button and PHP-HELP

2003-09-22 Thread Angelo Zanetti
thanx for your help, Ive got flu and all these small things seem to be escaping my eyes. I just want to ask you a small question: If i want this page to submit to itself and I want to test for it, would I go about it like this: if my submit button code looks like this: or is there a better w

Re: [PHP] There is an error with SSL support.

2003-09-22 Thread Marek Kilimajer
I should have mention it. ssl support is compiled directly into the dll, so you must comment out extension=php_openssl.dll in php.ini Astron of BrOnX wrote: Thank you for helping me Marek, but it is like puzzle :) Now i got this errors :) Function registration failed - duplicate name - openssl_s

Re: [PHP] There is an error with SSL support.

2003-09-22 Thread Astron of BrOnX
Thank you for helping me Marek, but it is like puzzle :) Now i got this errors :) Function registration failed - duplicate name - openssl_seal in Unknown on line 0 PHP Warning: Function registration failed - duplicate name - openssl_open in Unknown on line 0 PHP Warning: Function registration fa

Re: [PHP] There is an error with SSL support.

2003-09-22 Thread Marek Kilimajer
Pretty new ;) Manuzhai suggested to use php4ts.dll from http://ftp.proventum.net/pub/php/win32/misc/openssl/ Astron of BrOnX wrote: himm 4.3.3 it is new version.? Thanks, Astron "Marek Kilimajer" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] What version of php do you have. ssl://

Re: [PHP] There is an error with SSL support.

2003-09-22 Thread Astron of BrOnX
So that, what can i do to connect SSL server in this version (4.3.3) Astron "Astron Of Bronx" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > himm 4.3.3 it is new version.? > > Thanks, > Astron > > "Marek Kilimajer" <[EMAIL PROTECTED]> wrote in message > news:[EMAIL PROTECTED] > > W

Re: [PHP] using submit button and PHP-HELP

2003-09-22 Thread Marek Kilimajer
Angelo Zanetti wrote: Hi, I have a form that has a submit button in it, when the button is pressed I want it to reload the same page, with the same URL, however when I click on the submit button, the URL that it produces is http://whatever.php? then the name of my submit button = value for exampl

Re: [PHP] Start php-script with exec()?

2003-09-22 Thread Victor Spång Arthursson
måndagen den 22 september 2003 kl 16.11 skrev Marek Kilimajer: Ask your hosting company. Are you sure they will allow you to execute commands? Check phpinfo - safe mode and disabled functions. Asked them and they told it was a mistake we had php on the server - according to them it was either ph

Re: [PHP] There is an error with SSL support.

2003-09-22 Thread Astron of BrOnX
himm 4.3.3 it is new version.? Thanks, Astron "Marek Kilimajer" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > What version of php do you have. ssl:// is available only since 4.3.0 > > Astron of BrOnX wrote: > > > Hi all, i have been trying to connect a server which has SSL support

[PHP] using submit button and PHP-HELP

2003-09-22 Thread Angelo Zanetti
Hi, I have a form that has a submit button in it, when the button is pressed I want it to reload the same page, with the same URL, however when I click on the submit button, the URL that it produces is http://whatever.php? then the name of my submit button = value for example: Request this ab

Re: [PHP] non-php issue

2003-09-22 Thread Robert Cummings
Time to shutdown, reboot, and log into admin account on windows on an AMD 2400+: 6 minutes 37 seconds Time to ./configure AND compile apache 1.3.28 under linux: 30 seconds Time to ./configure AND compile php 4.3.3 under linux: 2 minutes 16 seconds Time to ./configure AND compile mysql 4.0.15a un

Re: [PHP] Start php-script with exec()?

2003-09-22 Thread Marek Kilimajer
Ask your hosting company. Are you sure they will allow you to execute commands? Check phpinfo - safe mode and disabled functions. Victor Spång Arthursson wrote: Ok, it works fine on my development server with Mac OS X. But the hosting server seems to be WinNT, and on this it doesnt work. Anyon

Re: [PHP] Start php-script with exec()?

2003-09-22 Thread Victor Spång Arthursson
Ok, it works fine on my development server with Mac OS X. But the hosting server seems to be WinNT, and on this it doesnt work. Anyone who can help me with some standard paths to php.exe? "c:\php\" Doesnt work ;) Sincerely Victor -- PHP General Mailing List (http://www.php.net/) To unsubscrib

Re: [PHP] There is an error with SSL support.

2003-09-22 Thread Marek Kilimajer
What version of php do you have. ssl:// is available only since 4.3.0 Astron of BrOnX wrote: Hi all, i have been trying to connect a server which has SSL support.. I have enabled SSL support from php.ini which lines, extensition=extensitions/php_openssl.dll; When i looked up phpinfo() for inform

[PHP] There is an error with SSL support.

2003-09-22 Thread Astron of BrOnX
Hi all, i have been trying to connect a server which has SSL support.. I have enabled SSL support from php.ini which lines, extensition=extensitions/php_openssl.dll; When i looked up phpinfo() for information, It says, OpenSSL support is enable and seems to be okay.. But tyring to use this code;

Re: [PHP] Start php-script with exec()?

2003-09-22 Thread Victor Spång Arthursson
måndagen den 22 september 2003 kl 15.04 skrev Jay Blanchard: use & (not tested, but runs other processes as background processes) exec("/usr/local/php/bin/php process1.php &"); Think that works as well; my solution was "> /dev/null &"… Now the big question is if I will get it to work on a wind

Re: [PHP] non-php issue

2003-09-22 Thread Becoming Digital
> All security advantages aside, I prefer linux because everytime I > install a new program or service I don't need to reboot :) Yeah, but in the time you spend resolving RPM package dependencies, re-compiling the application, checking in and out of CVS, etc, all trying to install the damn thing

Re: [PHP] Re: forcing variable expansion

2003-09-22 Thread Rich Fox
Sorry, we have a Eugene Lee at my aikido school and it's such an unusual name I thought you might be him. "Eugene Lee" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > On Sun, Sep 21, 2003 at 03:01:41PM -0400, Rich Fox wrote: > : "Eugene Lee" <[EMAIL PROTECTED]> wrote: > : > > : > If

Re: [PHP] PHP Editor - which to use?

2003-09-22 Thread Becoming Digital
I'm a big fan of ActiveState Komodo, largely because it handles PHP, Perl, Python, and others. While most of my work is done in PHP, it's nice not having to switch editors when trying to port code to or from another language. I must agree with Ryan that there is no 1 app to use. Dreamweaver

Re: [PHP] XHTML / CSS

2003-09-22 Thread Lowell Allen
> First, excuse-me for this out of topic message. > > I am searching a good mailling-list for people trying to write standard > XHTML and CSS. css-discuss -- Lowell Allen -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit

Re: [PHP] Start php-script with exec()?

2003-09-22 Thread Marek Kilimajer
exec("/usr/local/php/bin/php process1.php & "); process executes in the background Victor Spång Arthursson wrote: måndagen den 22 september 2003 kl 14.52 skrev Jay Blanchard: As usual for *nix type 'which php' which will return the path to the PHP executable. For portability you could then do s

RE: [PHP] Start php-script with exec()?

2003-09-22 Thread Jay Blanchard
[snip] > As usual for *nix type 'which php' which will return the path to the > PHP executable. For portability you could then do something to the > effect of (not tested) which() doesn't resolve the path, but I found out it was /usr/local/php/bin/php. But how do I make the call

RE: [PHP] Session and Server variable problem

2003-09-22 Thread Stephen Schneider
Thanks, but no. On the page not setting the cookie and the php.ini isn't setting it to either. But the .ini isn't setting it at all. Could I put in there the .net address or .com address? Better yet, can I put 2 addresses, probably not. Stephen -Original Message- From: CPT John W. Holm

Re: [PHP] Start php-script with exec()?

2003-09-22 Thread Victor Spång Arthursson
måndagen den 22 september 2003 kl 14.52 skrev Jay Blanchard: As usual for *nix type 'which php' which will return the path to the PHP executable. For portability you could then do something to the effect of (not tested) which() doesn't resolve the path, but I found out it was /usr/local/php/bin

RE: [PHP] Start php-script with exec()?

2003-09-22 Thread Jay Blanchard
[snip] måndagen den 22 september 2003 kl 14.31 skrev Jay Blanchard: > exec("php script.php"); will run the script. How does this look on a OSX/UNIX system? Can the path to php be found in a system variable, for convinience and portability of the script? [/snip] As usual for *nix type 'which php

Re: [PHP] Start php-script with exec()?

2003-09-22 Thread Victor Spång Arthursson
måndagen den 22 september 2003 kl 14.31 skrev Jay Blanchard: exec("php script.php"); will run the script. How does this look on a OSX/UNIX system? Can the path to php be found in a system variable, for convinience and portability of the script? Sincerely Victor -- PHP General Mailing List (htt

RE: [PHP] Start php-script with exec()?

2003-09-22 Thread Jay Blanchard
[snip] Is it possible? I have a file that takes 5 minutes to run, and I would like to be able to start it when loading a page. But I can't include it because it forces the browser to timeout... exec("script.php") doesn't seem to work... [/snip] exec needs a little more information, and will th

[PHP] Re: fileowner function and Windows OS

2003-09-22 Thread Simon Thurtle
I use WINSyntax married with Dreamweaver MX. WINsyntax is free and superb I recommend that you have a quick look at before you look any where else! "ermelir" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > Hello list, > > I try to use fileower function on php 4.3.2 + Apache 2.047+ Xp

[PHP] Start php-script with exec()?

2003-09-22 Thread Victor Spång Arthursson
Is it possible? I have a file that takes 5 minutes to run, and I would like to be able to start it when loading a page. But I can't include it because it forces the browser to timeout… exec("script.php") doesn't seem to work… Sincerely Victor -- PHP General Mailing List (http://www.php.net/)

RE: [PHP] php|cruise

2003-09-22 Thread Jay Blanchard
[snip] Is anyone planning on going to this? http://www.phparch.com/cruise/ I'm trying to go. It would be nice to put a face to the name with a few people out there. Let me know. [/snip] I am trying to get the company to pay for it. The problem is I have added 2 more developers to the staff, so

[PHP] fileowner function and Windows OS

2003-09-22 Thread ermelir
Hello list, I try to use fileower function on php 4.3.2 + Apache 2.047+ Xp pro system. this function doesn't seem to work : for each existing files, function always returns 0. documentation doesn't notice some bugs on Windows OS, and I would share your experience about your use on these OS. th

[PHP] XHTML / CSS

2003-09-22 Thread Decapode Azur
First, excuse-me for this out of topic message. I am searching a good mailling-list for people trying to write standard XHTML and CSS. thanks -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] RE : [PHP] PHP Editor - which to use?

2003-09-22 Thread Duncan Hill
On Monday 22 Sep 2003 11:35, BENARD Jean-philippe wrote: > Not a "php-must-have-editors" but useful ones, for example, are phpEd > and Zend Studio (text completion, functions library, ...). I found that > Zend Studio is a good one because of internal CVS connexions, work on > UNIX & Windows systems

  1   2   >