Re: [PHP] Retreiving website contents

2002-03-23 Thread Jason Wong
On Saturday 23 March 2002 23:57, Liam wrote: Hi, I've asked this before but I'm still ost. How can I receive the contents of a remote website through PHP and only dis play one section of it? Someone said something about curl.  What is it, where could I get it? google curl -- Jason

Re: [PHP] Crypt Limitation?

2002-03-23 Thread Rasmus Lerdorf
Depends on the OS. I suggest using md() instead. On Sat, 23 Mar 2002, Steven Walker wrote: Is there a string length limitation to crypt()? It generates the same result for different input strings. I'm using crypt to store access codes that are generated using uniqid. For example, if I do

Re: [PHP] Jazz problem

2002-03-23 Thread Jason Wong
On Saturday 23 March 2002 05:38, Sanj wrote: template page at http://www.isbliss.co.nz/beta/mainpages/template.html disregard any linked pages. Is this a php question? -- Jason Wong - Gremlins Associates - www.gremlins.com.hk /* I can't decide whether to commit suicide or go bowling.

Re: [PHP] Re: Tool to remove comments??

2002-03-23 Thread heinisch
At 23.03.2002 00:05, you wrote: there's also two tools called sed and grep that are available on any unix system. and probably easily gettable on windblows. That can probably remove most comments. I know, and use these on LINUX, but I don´t want to spend time to develop something which is

[PHP] php does not understand -

2002-03-23 Thread Andy
Hi there, I did search for a class to validate e-mail adresses. I found one and tryed out the examplepage but there seems to be a prob with my php installation. Everything after the - ist just printed out to the screen. It just seems that php thinks the error is the same like ? Here is a bit of

php-general Digest 23 Mar 2002 12:11:05 -0000 Issue 1243

2002-03-23 Thread php-general-digest-help
php-general Digest 23 Mar 2002 12:11:05 - Issue 1243 Topics (messages 89765 through 89830): Re: FAQ 89765 by: J. Scott Johnson 89809 by: Demitrious S. Kelly Drawing graphs - opinions 89766 by: Lee P Reilly 89768 by: Lee P Reilly 89814 by: michael

[PHP] Superglobals....

2002-03-23 Thread David
Hi, Is there any way to emulate the super globals on PHP4.0.6. I've designed a system using $_GET, $_POST, etc, and I had it all running wonderfully, but I have been forced to change servers to some folks who do not seem to have an upgrade to 4.1.x in mind. What I would like to know is... is

[PHP] DNS

2002-03-23 Thread Liam
23/03/2002 11:26:39 PM Hi, err, I realise this has nothing to do with PHP but... I am in desperate need of a backup DNS host. I've scoured the internet and I can't find anyone who'll be my backup DNS. I'm willing to exchange the favour and be your backup DNS. If there's any place you know I

[PHP] Web Hosting control panel ported to freebsd

2002-03-23 Thread Charles Williams
yep, finally got it working. original linux based web hosting control panel, written in PHP, now works under freebsd 4.3 (tested), and should work on 4.4 as well. If interested in testing on a FreeBSD system just let me know, off list, at [EMAIL PROTECTED] I would like to get this compatible

[PHP] Development tools

2002-03-23 Thread Morten Nielsen
Hi, Does anyone know of a tool that can show how mySQL DB's are related and which PHP functions are being called. It should maybe be something like UML. Regards, Morten -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Create Email POP accounts with PHP

2002-03-23 Thread Julian
Hey Dan!!! This book is for sale I can't buy it! Can any body explain me how I can to create email POP accounts whith PHP without using vpopmail Thanks! Julian - Original Message - From: Dan Harrelson To: Julian ; [EMAIL PROTECTED] Sent: Friday, March 22, 2002 9:25 PM

[PHP] Re: Superglobals....

2002-03-23 Thread Jason Sheets
You might remind them that anything under PHP 4.1.2 has a security whole that can be exploited remotely, my web host refused to upgrade until they learned about the security implications of not doing so. Jason David [EMAIL PROTECTED] wrote in message [EMAIL PROTECTED]">news:[EMAIL

[PHP] Re: this mailing list

2002-03-23 Thread Jason Sheets
Quite a few, there are 3641 messages in the php-general archive for between 02-01-02 and 03-01-02 this month there are already 3147 messages. If you are concerned about transfer you could use a news client and connect to news.php.net, the news groups are interfaces to the mailing lists that way

[PHP] Form Validation Reg EX

2002-03-23 Thread John Fishworld
Hi I'm just trying to validate an url ! Without tracing or confiming it I just want www.whatever.max 4 letters This is what I had but its wrong ! :-)) function check_url($str) { if (ereg(w{3}.^[a-z0-9-]+(\.[a-z0-9-]+)*$, $str)) { return 1; } else { return 0; } } I just know that some RegEx

[PHP] Version 4.2 changes

2002-03-23 Thread Gaylen Fraley
Where can I find the changes coming in 4.2? -- Gaylen PHP KISGB v4.0.2 Guest Book http://www.gaylenandmargie.com/phpwebsite/ -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Version 4.2 changes

2002-03-23 Thread Rasmus Lerdorf
In the NEWS and ChangeLog files in CVS. See http://cvs.php.net/cvs.php/php4/NEWS and pay attention to the branch name. On Sat, 23 Mar 2002, Gaylen Fraley wrote: Where can I find the changes coming in 4.2? -- Gaylen PHP KISGB v4.0.2 Guest Book http://www.gaylenandmargie.com/phpwebsite/

Re: [PHP] Version 4.2 changes

2002-03-23 Thread Andrew Lopucki
On Saturday 23 March 2002 11:34 am, Gaylen Fraley wrote: Where can I find the changes coming in 4.2? There is a 'NEWS' file in the download of the RCx.tgz. You should download and extract it and read the top section which gives news on the 4.2 release. And since you've already gone to the

RE: [PHP] looking for tutorial on XML parsing of attributes...

2002-03-23 Thread J. Scott Johnson
If you use xml_parse_into_struct, it does split out the attributes into the array it creates. I tested this with the standard manual code, adding a single attribute to the sample data i.e. $simple = paranote attrib=\scott\simple note/note/para; $p = xml_parser_create();

[PHP] SafeArrays and Enumerations Doc Questions

2002-03-23 Thread Jason Lotito
In the ChangeLog 4.1.0 Added support for single dimensional SafeArrays and Enumerations. Added an is_enum() function to check if a component implements an enumeration. (Alan, Harald) Does anyone know about this or know where I can find documentation on this? I searched the manual, and frankly,

Re: [PHP] Does anybody use UltraDev?

2002-03-23 Thread [-^-!-%-
Ultradev is cool for quick dev, but the code is really messy. Unles you're creating something basic, you'll most likely have to clean up the code. Other than that, it's an excellent tool. It cuts down the development time, help (tremendously) with the layout, and take out takes care of

Re: [PHP] DNS

2002-03-23 Thread Jason Wong
On Sunday 24 March 2002 07:26, Liam wrote: 23/03/2002 11:26:39 PM Hi, err, I realise this has nothing to do with PHP but... I am in desperate need of a backup DNS host. I've scoured the internet and I can't find anyone who'll be my backup DNS. I'm willing to exchange the favour and be

Re: [PHP] Does anybody use UltraDev?

2002-03-23 Thread [-^-!-%-
PHAKT does support TABLE JOIN, but you have to edit the SQL statement (in Ultradev). To do this (in Ultradev), switch to 'Advance Mode' and modify your query. It should look something like: select table1.field1, table2.field2 from table1,table where table1.field1=table2.field2 *check

Re: [PHP] Create Email POP accounts with PHP

2002-03-23 Thread Jason Wong
On Saturday 23 March 2002 21:40, Julian wrote: Hey Dan!!! This book is for sale I can't buy it! Can any body explain me how I can to create email POP accounts whith PHP without using vpopmail It would depend on what mail system you're using -- sendmail, qmail, postfix etc --

[PHP] Include Error on PHP 4.1.2

2002-03-23 Thread Alberto Wagner
I can't include anything on my php scripts Failed opening 'Pagina_Inicial.php' for inclusion (include_path='c:\php4\pear') How to fix it? -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] Create Email POP accounts with PHP

2002-03-23 Thread Julian
Hi Jason!!! Explain me how to do it with qmail and sendmail, plese. Thank you! Julian - Original Message - From: Jason Wong To: [EMAIL PROTECTED] Sent: Saturday, March 23, 2002 4:00 PM Subject: Re: [PHP] Create Email POP accounts with PHP On Saturday 23 March 2002 21:40, Julian

[PHP] PHPTriad error in Windows XP.

2002-03-23 Thread Peter Ruan
Hi, I installed PHPTriad under Windows XP and I keep getting this error: -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] PHPTriad Error in Windows XP.

2002-03-23 Thread Peter Ruan
Hi, I installed PHPTriad under Windows XP and I keep gettting the following error: Warning: MySQL Connection Failed: Can't connect to MySQL server on 'localhost' (10061) in C:\apache\htdocs\phpmyadmin\lib.inc.php on line 255 It worked before under Windows ME. WinMySQLadmin1.0 works fine as

Re: [PHP] Drawing graphs - opinions

2002-03-23 Thread David Ford
Take a look at jpgraph, it's on freshmeat. David Lee P Reilly wrote: Hi, I see there a number of PHP scripts/libraries out there for the purpose of graphing data. Which one is considered to be the best, most powerful / easiest to use? I need to plot X/Y graphs for some data sets with vertical

[PHP] Caching problem...?

2002-03-23 Thread Adam Schlag
Hello, I'm having a problem with my Apache/PHP setup. I create a PHP page and test it in a browser, and the page loads and everything is fine. However, when I make a change to my PHP script and reload the page to see my changes, the same output from PHP is given to me. I have to save the page

[PHP] PHP Search Engine?

2002-03-23 Thread lmlweb
Hello, I've picked up a book called the PHP Developer's Cookbook, specifically for the search engine that was featured in it. It required the use of PEAR's File/Find.php, which my host hasn't installed, ..and very likely will not. Is there another way of coming up with a search engine in PHP

Re: [PHP] PHP Search Engine?

2002-03-23 Thread Rasmus Lerdorf
So just put that file in your own directory and use it from there. It is just a PHP script. On Sat, 23 Mar 2002, lmlweb wrote: Hello, I've picked up a book called the PHP Developer's Cookbook, specifically for the search engine that was featured in it. It required the use of PEAR's

[PHP] Re: Advice needed

2002-03-23 Thread Hugh Bothwell
Actually, it looks pretty straight-forward: ?php $points = array( 1, 2, 3, 5, 10, 15, 20, 25, 50, 100, 300, 500, 600, 10 ); $prices = array(); function init_prices() { global $points, $prices; foreach($points as $val) $prices[$val] = none; } function show_prices() {

[PHP] HELP!! New PHP not working

2002-03-23 Thread Christopher J. Crane
I just downloaded the new version of PHP. I installed it and I am using Omnicron HTTPD server version 2.09. The PHP that came with the server works, but when I installed the new version of PHP from PHP.NET, I got the following error. !--- Error Message Security Alert! PHP CGI cannot be accessed

RE: [PHP] looking for tutorial on XML parsing of attributes...

2002-03-23 Thread Scott Brown
Thanks - using xml_parse_into_struct does make parsing the document much easier... great suggestion. What I've ended up with is: // create parser $xp = xml_parser_create(); xml_parse_into_struct($xp,$xml,$vals,$index); xml_parser_free($xp); $found_domain = 0; $results = array(); for($ctr=0;

[PHP] Image Manipulation/GD support

2002-03-23 Thread Navid Yar
Hello, I just enabled GD support for PHP via the php.ini file. When I try to run a script that uses the functions included in the library, it gives me a dialog box asking me whether I want to save the php file to a specific location or not. I don't need to save it, I need PHP to run it. This is

Re: [PHP] Image Manipulation/GD support

2002-03-23 Thread Rasmus Lerdorf
Try image/jpeg as your content-type On Sat, 23 Mar 2002, Navid Yar wrote: Hello, I just enabled GD support for PHP via the php.ini file. When I try to run a script that uses the functions included in the library, it gives me a dialog box asking me whether I want to save the php file to a

RE: [PHP] Image Manipulation/GD support

2002-03-23 Thread Navid Yar
Rasmus, thanks so much! It's executing. I've run into another problem with this script, but I'll try to figure this one out as best I can first before posting it. Thanks again! :) -Original Message- From: Rasmus Lerdorf [mailto:[EMAIL PROTECTED]] Sent: Saturday, March 23, 2002 4:41 PM

[PHP] Select then update

2002-03-23 Thread Jen Downey
Hi all! Just wondering, If I have a query like: $query = SELECT name FROM users; $ret = mysql_query($query); while(list($name) = mysql_fetch_row($ret)) or die(Error: .mysql_error()); print (your name is $name); $query_update [name] = (UPDATE my_other_table set name = $name); $result =

Re: [PHP] Select then update

2002-03-23 Thread Alberto Wagner
You need to put {} in the while function like this while { do this } $query = SELECT name FROM users; $ret = mysql_query($query); while(list($name) = mysql_fetch_row($ret)) or die(Error: .mysql_error()) { print (your name is $name); $query_update[name] = (UPDATE my_other_table set name =

Re: [PHP] Trap CR or Enter possible?

2002-03-23 Thread Miguel Cruz
On Fri, 22 Mar 2002, Erik Price wrote: I have noticed that pressing enter in IE does achieve the same effect as pressing the submit button for my forms. But I have also heard that it's not really the same, especially if there are more than one submit-style inputs for the given form. What

[PHP] Russian encoding problems

2002-03-23 Thread Lauri Vain
Hello, I have some problems related to a site in Russian (I don't speak Russian myself, so I can't consult tutorials in Russian). The encoding, passed via HTML, is koi8-r. Then the form will be submitted and PHP will send out an e-mail with the encoding koi8-r. Everything seems to work fine

php-general Digest 24 Mar 2002 00:13:09 -0000 Issue 1244

2002-03-23 Thread php-general-digest-help
php-general Digest 24 Mar 2002 00:13:09 - Issue 1244 Topics (messages 89831 through 89865): Superglobals 89831 by: David 89836 by: Jason Sheets DNS 89832 by: Liam 89845 by: Jason Wong Web Hosting control panel ported to freebsd 89833 by:

[PHP] PHP Developer's Cookbook, Second Edition

2002-03-23 Thread Craig Westerman
Is the second edition much different from the 1st? If one has 1st Edition, is it worth $39.95 to get the second? Thanks Craig [EMAIL PROTECTED]

[PHP] Still REG EX

2002-03-23 Thread John Fishworld
I'm still playing about trying to validate an url www(dot)something(dot)something ! I thought this would work but know if (ereg(^(w{3})(\\.)([a-zA-Z]+)(\\.)([a-z]{2,4})$, $str)) can anyone explain why not ??? ^(w{3}) = three w at start of string ?? (\\.) = literal dot ?? ([a-zA-Z]+) match

Re: [PHP] Still REG EX

2002-03-23 Thread Miguel Cruz
On Sun, 24 Mar 2002, John Fishworld wrote: I'm still playing about trying to validate an url www(dot)something(dot)something ! I thought this would work but know if (ereg(^(w{3})(\\.)([a-zA-Z]+)(\\.)([a-z]{2,4})$, $str)) First of all, web server hostnames don't need to start with www.

Re: [PHP] Still REG EX

2002-03-23 Thread John Fishworld
Okay good point but still why doesn't it work ? thanks john On Sun, 24 Mar 2002, John Fishworld wrote: I'm still playing about trying to validate an url www(dot)something(dot)something ! I thought this would work but know if (ereg(^(w{3})(\\.)([a-zA-Z]+)(\\.)([a-z]{2,4})$, $str))

[PHP] Adding Text Input in a SELECT drop-down list

2002-03-23 Thread Andre Dubuc
I have written, in an html form, a drop-downlist that uses SELECT: i.e. SELECT NAME=state OPTION SELECTEDState OPTIONAL OPTIONAZ OPTION// and so on I would like a text input as the last option so that a user

Re: [PHP] Adding Text Input in a SELECT drop-down list

2002-03-23 Thread Miguel Cruz
On Sat, 23 Mar 2002, Andre Dubuc wrote: I have written, in an html form, a drop-downlist that uses SELECT: i.e. SELECT NAME=state OPTION SELECTEDState OPTIONAL OPTIONAZ OPTION// and so on I would like a text

Re: [PHP] Adding Text Input in a SELECT drop-down list

2002-03-23 Thread Andre Dubuc
On Saturday 23 March 2002 19:45, you wrote: On Sat, 23 Mar 2002, Andre Dubuc wrote: I have written, in an html form, a drop-downlist that uses SELECT: i.e. SELECT NAME=state OPTION SELECTEDState OPTIONAL OPTIONAZ OPTION

Re: [PHP] Double quotes in form fields and submitting them

2002-03-23 Thread Miguel Cruz
On Fri, 22 Mar 2002, webapprentice wrote: I have a form with a text field, say userName. I put a value in that has double quotes (i.e. foobar) and submit this form. On output I have this: ?php echo $HTTP_POST_VARS[userName]; ? The output ends up being a \. The quotes go away, or they

Re: [PHP] PHP Developer's Cookbook, Second Edition

2002-03-23 Thread Thalis A. Kalfigopoulos
Don't have 1st, but 2nd looks pretty good. It functions both as a manual and as a reference and most of the recipes have pieces that I'd say correspond to real life problems. not much help I guess :-) cheers, --t. On Sat, 23 Mar 2002, Craig Westerman wrote: Is the second edition much

Re: [PHP] Adding Text Input in a SELECT drop-down list

2002-03-23 Thread Justin French
If you've seen it on other sites (I can't see how, since there's no support for it in the HTML spec), then why not just look at the source? Too bad, since a few sites seem to have that capability. Oh well . . Regards, Andre -- -- PHP General Mailing List (http://www.php.net/) To

Re: [PHP] Still REG EX

2002-03-23 Thread Miguel Cruz
On Sun, 24 Mar 2002, John Fishworld wrote: On Sun, 24 Mar 2002, John Fishworld wrote: I'm still playing about trying to validate an url www(dot)something(dot)something ! I thought this would work but know if (ereg(^(w{3})(\\.)([a-zA-Z]+)(\\.)([a-z]{2,4})$, $str)) First of all, web server

Re: [PHP] Adding Text Input in a SELECT drop-down list

2002-03-23 Thread Senih
JavaScript is there to do that. Senih I have written, in an html form, a drop-downlist that uses SELECT: i.e. SELECT NAME=state OPTION SELECTEDState OPTIONAL OPTIONAZ OPTION // and so on I would like a text input as the last option so that a user can type in a state (non-USA) and have

Re: [PHP] Double quotes in form fields and submitting them

2002-03-23 Thread webapprentice
Hi, foobar becomes simply \ I've lost foobar AND the double quotes. Is there a way to keep them all? --Stephen - Original Message - From: Miguel Cruz [EMAIL PROTECTED] To: webapprentice [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Sent: Saturday, March 23, 2002 7:49 PM Subject: Re: [PHP]

Re: [PHP] Double quotes in form fields and submitting them

2002-03-23 Thread Miguel Cruz
That's a little odd; something else must be going on. Can you provide some more code, and, preferably, a pointer to a live example? miguel On Sat, 23 Mar 2002, webapprentice wrote: Hi, foobar becomes simply \ I've lost foobar AND the double quotes. Is there a way to keep them all?

Re: [PHP] Adding Text Input in a SELECT drop-down list

2002-03-23 Thread Andre Dubuc
On Saturday 23 March 2002 19:57, you wrote: If you've seen it on other sites (I can't see how, since there's no support for it in the HTML spec), then why not just look at the source? Too bad, since a few sites seem to have that capability. Oh well . . Regards, Andre --

[PHP] The infamous HTML quotes Re: [PHP] Double quotes in form fields and submitting them

2002-03-23 Thread webapprentice
Sorry Miguel, it's the HTML entities nonsense again. It displayed as \ on my browser, but the HTML source code indicated otherwise. Thus, if I entered foobar, it shows up as \ but the HTML source shows. input type=text name=realName value=\foobar\ So value=\ was the culprit, so you're original

Re: [PHP] PHP Developer's Cookbook, Second Edition

2002-03-23 Thread Egon Schmid
From: Craig Westerman [EMAIL PROTECTED] Is the second edition much different from the 1st? If one has 1st Edition, is it worth $39.95 to get the second? I hope so. Sterling got a list of errors from two German translators for his 1st edition. Sterling haven´t said a word about the second

[PHP] Using EditPlus with PHP

2002-03-23 Thread Luca Grossi
I'm sorry if this question has been asked before but could anyone give me instructions on how to debug and interpret php scripts using Edit Plus ? I download the php modules for edit plus so it recognise the syntax. But how do I setup the user tools , so I can check for

[PHP] shell_exec() or passthru()

2002-03-23 Thread Douglas
Hi, I have a bash script I need to run. I have tried all the various program execution commands. My script never completes. It only get 1/4 of the way through. I have tried running the script in the background. Any ideas? -- PHP General Mailing List (http://www.php.net/) To unsubscribe,

Re: [PHP] Create Email POP accounts with PHP

2002-03-23 Thread Jason Wong
On Sunday 24 March 2002 03:52, Julian wrote: Hi Jason!!! Explain me how to do it with qmail and sendmail, plese. How do you usually do it? ie from the command line? Use php to execute whatever you usually execute from the command line using the functions in Program Execution functions.

Re: [PHP] Still REG EX

2002-03-23 Thread Jim Lucas [php]
what are you trying to do? Jim Lucas www.bend.com - Original Message - From: John Fishworld [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Saturday, March 23, 2002 4:33 PM Subject: [PHP] Still REG EX I'm still playing about trying to validate an url www(dot)something(dot)something !

[PHP] Trouble with mysql_pconnect unable to connect to database?

2002-03-23 Thread Jim Hankins
I'm doing a simple database connection using the follow syntax: html head titleBook-O-Rama Search Results/title /head body h1Book-O-Rama Search Results/h1 ? if (!$searchtype || !$searchterm) { echo You have not entered search details. Please go back and try again.; exit; }

Re: [PHP] Trouble with mysql_pconnect unable to connect to database?

2002-03-23 Thread Rasmus Lerdorf
Figure out where your mysql.sock file is and provide the path right in your mysql_connect() call. mysqladmin version tells you the path. -Rasmus On Sat, 23 Mar 2002, Jim Hankins wrote: I'm doing a simple database connection using the follow syntax: html head titleBook-O-Rama Search

[PHP] Re: assert in php.ini setting.

2002-03-23 Thread CC Zona
In article Pine.LNX.4.20.0203231339370.28994-10@Larry, [EMAIL PROTECTED] (S.Murali Krishna) wrote: can any one tell me what is this ;assert.active= On ; assert(expr); active by default ;assert.warning = On ; issue a PHP warning for each failed ;assert.bail=

Re: [PHP] Image Manipulation/GD support

2002-03-23 Thread Michael A. Peters
On the topic of gd support but a slightly different topic- I was using php 4.0.5 gd 1.8.3 patched for gif support (using libungif for libgif which I *think* is OK) FreeType 1.3.1 (compiled myself in /usr/local ) t1lib 1.3.1 (compiled myself in /usr/local ) I was using gd to draw pictures and

Re: [PHP] Trouble with mysql_pconnect unable to connect to database?

2002-03-23 Thread Jim Hankins
Can you give me a syntax example. I've found my sock file but seem to be having trouble getting it right on the mysql_pconnect line, my sock is /var/lib/mysql/mysql.sock Thanks in advance! So close but yet so far. :) My first MySql project. Rasmus Lerdorf [EMAIL PROTECTED] wrote in message

[PHP] shell_exec() or passthru()

2002-03-23 Thread Douglas
Hi, I have a bash script I need to run. I have tried all the various program execution commands. My script never completes. It only get 1/4 of the way through. I have tried running the script in the background. Any ideas? -- PHP General Mailing List (http://www.php.net/) To unsubscribe,

Re: [PHP] Image Manipulation/GD support

2002-03-23 Thread Rasmus Lerdorf
reading the ./configure -h I see that they CHANGED what the configure options mean. now --with-freetype=dir refers to freetype 2 Untrue, it only refers to freetype2 when you are building against GD2. phpinfo() says I have FreeType linkage. But both ImageFtText and ImageTTFText fail to do

Re: [PHP] shell_exec() or passthru()

2002-03-23 Thread Andrew Lopucki
You may need to redirect output (both stderr and stdout) atleast that helped me with a similar problem. My system is Linux. On Saturday 23 March 2002 11:06 pm, Douglas wrote: Hi, I have a bash script I need to run. I have tried all the various program execution commands. My script never

Re: [PHP] shell_exec() or passthru()

2002-03-23 Thread Andrew Lopucki
And by redirect I mean to /dev/null possibly if you don't want to capture output. On Saturday 23 March 2002 03:52 pm, Douglas wrote: Hi, I have a bash script I need to run. I have tried all the various program execution commands. My script never completes. It only get 1/4 of the way

Re: [PHP] Trouble with mysql_pconnect unable to connect to database?

2002-03-23 Thread Jim Hankins
never mind got it localhost:/pathto/mysql.sock duh? :) Thanks a million, I'm up and running. - Original Message - From: Rasmus Lerdorf [EMAIL PROTECTED] To: Jim Hankins [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Sent: Saturday, March 23, 2002 10:50 PM Subject: Re: [PHP] Trouble with

Re: [PHP] Trouble with mysql_pconnect unable to connect to database?

2002-03-23 Thread Gerard Samuel
Is that supposed to be - $db = mysql_pconnect(localhost, bookorama, bookorama123); Jim Hankins wrote: I'm doing a simple database connection using the follow syntax: html head titleBook-O-Rama Search Results/title /head body h1Book-O-Rama Search Results/h1 ? if (!$searchtype ||

RE: [PHP] PHP Search Engine?

2002-03-23 Thread lmlweb
I don't think my server even has PEAR installed, so even if I just put the script on my own directory, it still needs the PEAR.php - will I need to do that too? -Original Message- From: Rasmus Lerdorf [mailto:[EMAIL PROTECTED]] Sent: Saturday, March 23, 2002 1:56 PM To: lmlweb Cc:

RE: [PHP] PHP Search Engine?

2002-03-23 Thread lmlweb
My correction - there is a Pear, and it was just a matter of finding the location (/root/php-4.1.2/pear/File/Find.php) - so I tried to use the full path - owrked, but then the Find.php required the PEAR.php, which was one level. So what I've done so far is to put the Find.php in my directory, and

[PHP] Re: Superglobals....

2002-03-23 Thread David
Jason Sheets said something on 24 Mar 2002, in php.general: You might remind them that anything under PHP 4.1.2 has a security whole that can be exploited remotely, my web host refused to upgrade until they learned about the security implications of not doing so. Jason The are running

[PHP] Php Application Techniques...

2002-03-23 Thread Arik Ashepa
Someone knows a site, or a tutorial article something that would teach advanced techniques, like suppose using themes, languages, API... ? Any help is appreciated Sincerely Arik -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php