Re: [PHP] Help using PHP 5.3.3 mail() with Apache James

2012-10-25 Thread Maciek Sokolewicz
On 23-10-2012 23:54, Steven Pogue wrote: Dan, I assume you meant to add a system() call into it...if so, here is what was presented. -rwxrwxrwx. 1 root root 3878 Sep 6 14:45 /opt/james-2.3.2/bin/sendmail.py -rwxrwxrwx. 1 root root 3878 Sep 6 14:45 /opt/james-2.3.2/bin/sendmail.py Steve

Re: [PHP] Help using PHP 5.3.3 mail() with Apache James

2012-10-25 Thread tamouse mailing lists
On Thu, Oct 25, 2012 at 5:32 AM, Maciek Sokolewicz maciek.sokolew...@gmail.com wrote: On 23-10-2012 23:54, Steven Pogue wrote: Dan, I assume you meant to add a system() call into it...if so, here is what was presented. -rwxrwxrwx. 1 root root 3878 Sep 6 14:45

Re: [PHP] Help using PHP 5.3.3 mail() with Apache James

2012-10-23 Thread Daniel Brown
On Tue, Oct 23, 2012 at 5:00 PM, Steven Pogue spo...@us.ibm.com wrote: Has anyone been successful at using the above on a RHEL 6.2 environment? I am able to use Postfix using the php.ini SENDMAIL_PATH but when I bring down PostFix, start Apache James and switch the sendmail_path value to point

Re: [PHP] Help using PHP 5.3.3 mail() with Apache James

2012-10-23 Thread Steven Pogue
To: Steven Pogue/Raleigh/IBM@IBMUS Cc: php-general@lists.php.net Date: 10/23/2012 05:24 PM Subject: Re: [PHP] Help using PHP 5.3.3 mail() with Apache James Sent by: paras...@gmail.com On Tue, Oct 23, 2012 at 5:00 PM, Steven Pogue spo...@us.ibm.com wrote: Has anyone been successful at using the above

Re: [PHP] Help with PHP processing form checkboxes needed :-(

2009-05-18 Thread Michael A. Peters
chris_pa...@danmangames.com wrote: Hi everyone, I'm having a major problem. I have an order system that allows you to add items with a checkbox, that works fine. If you add an item and go back to the product listing the items that are in your cart show up as checked on the products listing

Re: [PHP] Help with PHP processing form checkboxes needed :-(

2009-05-18 Thread Michael A. Peters
kranthi wrote: this depends much on the database implementation. obviously this is a one to many relationship. Probably easiest to do in the session database. You can store the session fields in an external database if you want the shopping cart to persist over multiple sessions. -- PHP

Re: [PHP] Help with PHP processing form checkboxes needed :-(

2009-05-18 Thread Paul M Foster
On Mon, May 18, 2009 at 06:51:32PM -0700, chris_pa...@danmangames.com wrote: Hi everyone, I'm having a major problem. I have an order system that allows you to add items with a checkbox, that works fine. If you add an item and go back to the product listing the items that are in your cart

Re: [PHP] Help with PHP processing form checkboxes needed :-(

2009-05-18 Thread Michael A. Peters
Paul M Foster wrote: When you say it sends its id, what do you mean? You're not talking about the ID attribute of the checkbox tag, are you? The way I handle something like this is to give the checkbox tag a value attribute. Like: input type=checkbox name=mixer value=ordered_mixer

Re: [PHP] Help with PHP processing form checkboxes needed :-(

2009-05-18 Thread chris_payne
- From: kranthi kranthi...@gmail.com To: Michael A. Peters mpet...@mac.com Cc: chris_pa...@danmangames.com; php-general@lists.php.net Sent: Monday, May 18, 2009 7:48 PM Subject: Re: [PHP] Help with PHP processing form checkboxes needed :-( 1. every time the form is submitted.. generate

Re: [PHP] Help with php server and sockets

2007-05-23 Thread Robert Cummings
On Wed, 2007-05-23 at 16:24 -0700, Adz07 wrote: i want to set up a php server that can communicate with a client (CLI PHP Script). I can setup the server socket fine. What i need to know is whether it is possible for the client to call a function in the servers php code and the server return

Re: [PHP] Help getting PHP and GPG to work

2006-01-09 Thread Jason Petersen
On 1/9/06, zedleon [EMAIL PROTECTED] wrote: Has anybody had success using PHP and GPG to send encripted email from a form? Yes. You're on the right track. The method I used was to create a temp file with my data, encrypt it with GPG, read it back into a string, then mail() it. (Of course

Re: [PHP] Help getting PHP and GPG to work

2006-01-09 Thread Jason Petersen
On 1/9/06, Support [EMAIL PROTECTED] wrote: quote for the book- PHP scripts will invoke the encryption process, and the public key has to be on the key ring of the user invoking the encryption. On the Web server, PHP usually runs as user nobody or www or as the user for your Web server.

Re: [PHP] help in php script

2004-11-04 Thread Klaus Reimer
Deepak Dhake wrote: But i am not getting any output if i follow the above procedure. Can you tell me how to do it? I have to have the script TimeRotateImage.php which calculates which image to print accoring to local time and i want to embed the file name in html tag to print it on screen. It's

Re: [PHP] help in php script

2004-11-04 Thread Deepak Dhake
PRINT is nothing but... TimeRotateImage.php ?php $curr_time = (localtime()); if ($curr_time[2] = 6 and $curr_time[2] = 17) { print img src='image1.jpg'; } else { print img src='image2.jpg'; } ? this script (something like this) should be called from another script like, ?PHP print img

Re: [PHP] help in php script

2004-11-04 Thread Klaus Reimer
Deepak Dhake wrote: ?PHP print img src='TimeRotateImage.php'; ? did you get what i am saying? please let me know if you have some solution. thanks No. I must admit, It don't understand it. Let me try: You have a script a.php which outputs this static content: img src=b.php b.php outputs the

Re: [PHP] help in php script

2004-11-04 Thread Klaus Reimer
Klaus Reimer wrote: This can't work. You browser tries to download an image with the name 'img src=c.jpeg'. Ah, I'm talking nonsense. I meant the browser tries to DISPLAY an image with the CONTENT 'img src=c.jpeg'. The browser can't do this. That's why you don't see anything. -- Bye, K

Re: [PHP] Help w/ PHP Sessions

2004-05-23 Thread Curt Zirzow
* Thus wrote Justin Kozuch ([EMAIL PROTECTED]): Hi All, ... Here is the code that I have on the login form, called index.php ?php require_once('Connections/verspeeten.php'); ? ?php Breaking in and out of php is pointless, and can cause potential problems with session_start(), headers

Re: [PHP] HELP PLEASE PHP

2004-01-29 Thread John Nichel
Hello Patrick. Where to start, where to start Patrick wrote: Hi, I have an situation on my hands I have a form that I am stuck using PHP for thanks to my friends choice of hosting company, I have no idea on how to setup a form in PHP other than HTML or in Flash, I need some one any one to

Re: [PHP] HELP PLEASE PHP

2004-01-29 Thread Jas
John Nichel wrote: Hello Patrick. Where to start, where to start Patrick wrote: Hi, I have an situation on my hands I have a form that I am stuck using PHP for thanks to my friends choice of hosting company, I have no idea on how to setup a form in PHP other than HTML or in Flash, I need

Re: [PHP] HELP PLEASE PHP

2004-01-29 Thread memoimyself
Hello Patrick, I have good news and even better news for you. The good news is that you can make all your form-related woes disappear in less than a day. The even better news is that everything you need to know in order to solve your problem can be found in one convenient location:

Re: [PHP] HELP PLEASE PHP

2004-01-29 Thread Jas
Man, you really are a card Erik. Fellow manual reader, Jas [EMAIL PROTECTED] wrote: Hello Patrick, I have good news and even better news for you. The good news is that you can make all your form-related woes disappear in less than a day. The even better news is that everything you need to

RE: [PHP] Help with php output to file

2003-12-18 Thread Sam Masiello
Anytime I need to do something similar to this I prefer to use lynx -source [[URL]] [[output_file]] HTH! --Sam Paul Godard wrote: Hi I have develop an online catalog in php/mysql. Now the client needs the web site on a cd. Of course without php or mysql... What is the fastes and

RE: [PHP] help with php

2003-07-29 Thread Chris W. Parker
Billy mailto:[EMAIL PROTECTED] on Tuesday, July 29, 2003 4:25 PM said: hi im new to php. but i need help with a form. ive made an html form but the thing is i needed it to send all the info from the boxes above to an e-mail. this is my first time with this type of web design could someone

RE: [PHP] Help with PHP and HTML

2002-09-26 Thread Jay Blanchard
[snip] I have a HTML form that has a session variable called $cost. Now I want to set the value to this table data input field. Anyone know how this is accomplished? tdinput value=$cost name=txtSubTotalAmount size=40 readonly/td [/snip] Ken, You question is not too clear, but I will try to

Re: [PHP] Help with PHP and HTML

2002-09-26 Thread skitum
PROTECTED] To: 'Ken' [EMAIL PROTECTED]; [EMAIL PROTECTED] Sent: Thursday, September 26, 2002 1:46 PM Subject: RE: [PHP] Help with PHP and HTML [snip] I have a HTML form that has a session variable called $cost. Now I want to set the value to this table data input field. Anyone know how

Re: [PHP] Help with PHP and HTML

2002-09-26 Thread Marek Kilimajer
name=cliemail type=text size=48 value=?echo htmlspecialchars($clil); ? readonly and it works ok. Peace Love skitum - Original Message - From: Jay Blanchard [EMAIL PROTECTED] To: 'Ken' [EMAIL PROTECTED]; [EMAIL PROTECTED] Sent: Thursday, September 26, 2002 1:46 PM Subject: RE: [PHP] Help

RE: [PHP] Help with PHP and HTML

2002-09-26 Thread Jay Blanchard
[snip] When we are at it let's don't forget htmlspecialchars input name=cliemail type=text size=48 value=?echo htmlspecialchars($clil); ? readonly skitum wrote: hey folks, don't forget quotes ;o) tdinput value=? echo $cost; ? name=txtSubTotalAmount size=40 readonly/td [/snip] Well now we

Re: [PHP] HELP - fwrite(...PHP code...)

2002-09-12 Thread Chris Wesley
On Thu, 12 Sep 2002, Hankley, Chip wrote: fwrite($fp, ? echo $LayerScale); If $LayerScale is defined, then fwrite outputs the value of $LayerScale to the target, NOT the string $LayerScale. How can I overcome this? fwrite($fp, ? echo \$LayerScale); g.luck, ~Chris -- PHP

Re: [PHP] Help! Configuring PHP with Personal Web Server

2002-06-04 Thread Brian Feliciano
[EMAIL PROTECTED] writes: So far I've found about five different ways to install PHP with PWS and none of them work. Can anyone who has done this please send detailed instructions about how to do it, or point me to instructions that work? Thanks very much in advance. any error msgs? it'll help

Re: [PHP] Help! Configuring PHP with Personal Web Server

2002-06-04 Thread Jesse Segovia
Brian Feliciano [EMAIL PROTECTED] writes: So far I've found about five different ways to install PHP with PWS and none of them work. Can anyone who has done this please send detailed instructions about how to do it, or point me to instructions that work? any error msgs? it'll help a lot. Yes

Re: [PHP] Help! Recent PHP security patch = high server load?

2002-03-27 Thread Rasmus Lerdorf
I don't really see how that patch could cause that. Any chance of an truss or a gdb backtrace or something on one of these guys to give us a clue? -Rasmus On Thu, 28 Mar 2002, Jason Murray wrote: Hi folks, Just curious to know if anyone has experienced a high server load since installing

Re: [PHP] Help on PHP vs JAVA

2002-02-21 Thread Krzysztof Dziekiewicz
On Thu, 21 Feb 2002, Berlina wrote: Hello to everybody, I need some help for writting a comparison of PHP vs JAVA, and of course, I need that PHP wins ;-D PHP and JAVA are different tools. It depends what you want to do. You can take advanteges from both. -- PHP General Mailing List

RE: [PHP] help with PHP global array

2002-02-07 Thread Wee Chua
Hi all, I have tried: global $myArray[] and it gives me an error 'the array expects semi-colon or comma'. Any helps would be appreciated! Thanks, Wee -Original Message- From: Bjorn Abt [mailto:[EMAIL PROTECTED]] Sent: Thursday, February 07, 2002 10:57 AM To: '[EMAIL PROTECTED]'

Re: [PHP] help with PHP global array

2002-02-07 Thread Jason Wong
On Thursday 07 February 2002 23:48, Wee Chua wrote: Hi all, I have tried: global $myArray[] and it gives me an error 'the array expects semi-colon or comma'. Any helps would be appreciated! Thanks, Wee -Original Message- From: Bjorn Abt [mailto:[EMAIL PROTECTED]] Sent:

Re: [PHP] help with PHP global array

2002-02-07 Thread Chris Boget
All variables in PHP are local to the scope in which it is defined. You cannot declare a variable as global (as such). To use a global variable: This is true. But I believe that the original question was actually the other way around... Make a local variable into a global one. The way to do

Re: [PHP] help on PHP from

2002-01-23 Thread Nick Wilson
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 * and then Wee Chua blurted Hi all, How can I get the whole string after submitting with Form? I don't see any variables and valuables in the address bar of the browser unless I manually create the link with ? and in form action column.

Re: [PHP] help on PHP from

2002-01-23 Thread Richard Baskett
You'll see all the variables if you post the form using GET instead of POST, but using POST it automatically sends those variables to the target page and you can access them directly using their same names. For example on your form you have a variable called $Name and it posts to form2.php you

Re: [PHP] help on PHP from

2002-01-23 Thread Nick Wilson
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 * and then Rudi Ahlers blurted User Method=GET, and not METHOD=POST I think maybe I missunderstood her mail! - -- Nick Wilson Tel:+45 3325 0688 Fax:+45 3325 0677 Web:www.explodingnet.com -BEGIN PGP SIGNATURE- Version:

Re: [PHP] help installing php

2002-01-18 Thread Miles Thompson
If I remember correctly, when you install MySQL and Apache from rpm you get the binary version and no source is installed on your system. It's been a while since I've looked for them, but there used to be a source rpm for MySQL at the MySQL site, and it took some digging to find it. Ditto

Re: [PHP] help installing php

2002-01-18 Thread R'twick Niceorgaw
: [EMAIL PROTECTED] Sent: Friday, January 18, 2002 2:09 PM Subject: Re: [PHP] help installing php On Thu, 17 Jan 2002, Anas Mughal wrote: |I haven't seen any RPMs for PHP. Yes there are RPMs for PHP (ftp.mirror.ac.uk) |However, I have installed using the source. It works |fine. |Try

Re: [PHP] help installing php

2002-01-18 Thread mike cullerton
hi juni, although i totally agree with the folks who recommended you compile php from source, maybe it's time you sat down :) compiling apache, mysql and php from source can tax even the greatest patience the first time it is tried. hopefully, here's a couple things to think about. create a

Re: [PHP] help installing php

2002-01-18 Thread Carl J Meyer
On Fri, 18 Jan 2002, Juni Adi wrote: Ok, I'm now in the middle of installing it from source code. But I'm not sure where the path to apache and mysql source code to fill in : ./configure --with apache=/path/to/apache_source_code --with mysql=/path/to/mysql_source_code I 'm even not I

Re: [PHP] help installing php

2002-01-17 Thread Anas Mughal
I haven't seen any RPMs for PHP. However, I have installed using the source. It works fine. Try to install the CGI version first. That is easier. Than, you could dive into the apache module stuff. --- Juni Adi [EMAIL PROTECTED] wrote: Hello, I'm new to PHP (actually I'm just about to

Re: [PHP] help installing php

2002-01-17 Thread Miles Thompson
Juni, Apache, MySQL and PHP are really well debugged when it comes to installation, and I found installation from source easier than messing with .rpms on RH systems and with dselect on Debian. The following article at DevShed has really good instructions:

Re: [PHP] help installing php

2002-01-17 Thread Juni Adi
On Thu, 17 Jan 2002, Anas Mughal wrote: |I haven't seen any RPMs for PHP. Yes there are RPMs for PHP (ftp.mirror.ac.uk) |However, I have installed using the source. It works |fine. |Try to install the CGI version first. That is easier. |Than, you could dive into the apache module stuff. Ok,

Re: [PHP] help with php mysql and images...

2001-08-22 Thread John Meyer
A couple of things: 1. ASP is not dumb. It was just written by Microsoft. Seriously, though I'd learn both, it would make you much more marketable. 2. First off, create the database. Then ask yourself what are the steps that you have to go through. What your probably looking at right now

Re: [PHP] Help with PHP/Oracle and serializing data

2001-06-26 Thread infoz
If the data will be less than ~4K, use 'varchar2', otherwise use 'long'. - Tim http://www.phptemplates.org - Original Message - From: Michael Champagne [EMAIL PROTECTED] To: PHP General Mailing List [EMAIL PROTECTED] Sent: Monday, June 25, 2001 2:42 PM Subject: [PHP] Help with

Re: [PHP] Help with PHP/Oracle and serializing data

2001-06-26 Thread Michael Champagne
Tim, Thanks for the response. I'm kind of confused though. You can use a 'long' type for a string of characters greater than 4k? Thanks, Mike If the data will be less than ~4K, use 'varchar2', otherwise use 'long'. - Tim http://www.phptemplates.org - Original Message - From:

Re: [PHP] Help with PHP/Oracle and serializing data

2001-06-26 Thread infoz
In Oracle, 'long' is a variable-length character data column up to 2GB in size. Roughly equivalent to 'text' in mysql, I think. You can also use 'blob', 'clob' and/or 'nclob' instead, but I think access to those types is less straightforward than the 'long' type. - Tim

Re: [PHP] Help with PHP/Oracle and serializing data

2001-06-26 Thread Thies C. Arntzen
On Mon, Jun 25, 2001 at 01:42:18PM -0500, Michael Champagne wrote: I'm developing a web application and would like to be able to store the state of the application in an Oracle table by serializing a bunch of variables and storing them in the database. Has anyone done this? What datatype

Re: [PHP] Help with PHP/Oracle and serializing data

2001-06-26 Thread Thies C. Arntzen
On Tue, Jun 26, 2001 at 06:42:00AM -0400, infoz wrote: If the data will be less than ~4K, use 'varchar2', otherwise use 'long'. do not use long as long are not fully supported in oracle (and never were). tc -- PHP General Mailing List (http://www.php.net/) To unsubscribe,

Re: [PHP] Help with PHP/Oracle and serializing data

2001-06-26 Thread infoz
I used them all over on a large PHP3 (and later PHP4) site for several years until we migrated to PostgreSQL in January, with no problems. What's the correct alternative...CLOB's? - Tim http://www.phptemplates.org - Original Message - From: Thies C. Arntzen [EMAIL PROTECTED] If the

RE: [PHP] Help with PHP/Oracle and serializing data

2001-06-26 Thread scott [gts]
:[EMAIL PROTECTED]] Sent: Tuesday, June 26, 2001 9:29 AM To: Michael Champagne Cc: PHP General Mailing List Subject: Re: [PHP] Help with PHP/Oracle and serializing data In Oracle, 'long' is a variable-length character data column up to 2GB in size. Roughly equivalent to 'text' in mysql, I

Re: [PHP] Help Please: Php configuration

2001-03-05 Thread archana sharma
Thanks a lot!!! Yes it is working now with both cgi as well as php4isapi.dll. I removed php4isapi.dll from filter, which was crashing my web server. From: "Phil Driscoll" [EMAIL PROTECTED] To: "archana sharma" [EMAIL PROTECTED], [EMAIL PROTECTED] Subject: Re: [P

Re: [PHP] Help Please: Php configuration

2001-03-04 Thread Michael Hall
I don't know a thing about IIS ... but the archives can be found at http://www.php.net/support.php Good Luck Michael On Sun, 4 Mar 2001, archana sharma wrote: Hi All, I am new in PHP world. I am trying to configure my php with IIS4. Here is the info what I downloaded and installed:

Re: [PHP] Help with PHP Shell Scripting

2001-01-19 Thread Brian Clark
Hello Justin, (JY == "Justin Yu") [EMAIL PROTECTED] writes: JY When I tried connecting to Postgres through a shell script that I JY wrote, I get the following error: JY "Fatal error: Call to undefined function: pg_connect()" Because you don't have pgsql (PostgreSQL) support built into your