|
Neohapsis is currently accepting applications for employment. For more information, please visit our website www.neohapsis.com or email hr@neohapsis.com |
php-general-digest-help_at_lists.php.net
Date: Mon Nov 04 2002 - 18:32:52 CST
php-general Digest 5 Nov 2002 00:32:52 -0000 Issue 1685
Topics (messages 122656 through 122718):
Re: Images retrieved from MYSQL database using PHP becoming corrupted.
122656 by: Marek Kilimajer
How to send mail with authentification?
122657 by: Martin Thoma
122659 by: Manuel Lemos
122665 by: Martin Thoma
122692 by: Edward Marczak
Re: Battling with highlighting search criteria
122658 by: David Russell
122717 by: rija
php's saxon:output equivalent
122660 by: Pierre Vaudrey
finding a value in an array
122661 by: Craig
122662 by: Erwin
Re: Session cookies
122663 by: Chris Kay
Re: Add content thru e-mail
122664 by: Chris Kay
122668 by: Michael Geier
Php "Ready-to-go"
122666 by: Martin Thoma
122667 by: Alexander Kuznetsov
122691 by: Paul Nicholson
HELP COOKIES !
122669 by: Shaun
122674 by: Erwin
Re: Your opinion on globals/reference
122670 by: Gerard Samuel
fsockopen fails if port blocked by firewall - PHP 4.0.6 / Apache / Linux
122671 by: neil smith
122672 by: Neil Smith
Re: Been looking for a tutorial on how to create themes in general
122673 by: Marek Kilimajer
122687 by: Jonathan Sharp
storing cc details in mysql
122675 by: adrian murphy.2020tourism.com
122676 by: adrian murphy.2020tourism.com
122677 by: SED
122678 by: 1LT John W. Holmes
122679 by: Justin French
image submit buttons
122680 by: John Meyer
122682 by: 1LT John W. Holmes
Session on PHP 4.3.0
122681 by: Marcel
PHP and Apache Cocoon???
122683 by: HA, Hai
PHP Installation problem - httpd.conf issue?
122684 by: Lee Philip Reilly
Does anyone know if this is possible?
122685 by: Raymond Lilleodegard
122708 by: Joel Boonstra
122714 by: Raymond Lilleodegard
122715 by: rija
Bizzare mime-type header() problem
122686 by: Chris Boget
122690 by: Chris Boget
122718 by: Chris Shiflett
Re: Address array?
122688 by: Hugh Danaher
Strange error!
122689 by: Daniele Baroncelli
$_FILES
122693 by: Salvador Ramirez
122694 by: 1LT John W. Holmes
122695 by: Salvador Ramirez
122697 by: 1LT John W. Holmes
122699 by: Salvador Ramirez
mysql_query maximum size
122696 by: kevin
122698 by: 1LT John W. Holmes
Re: Cookies disabled, new session ID each click!
122700 by: Steve Fatula
Re: Am I blind? simple 15 line code producing error - SOLUTION FOUND! - tks
122701 by: Paul
122716 by: David Freeman
Authentication with PHP and HTTP
122702 by: Phillip Erskine
PHP crypto extension news
122703 by: J Smith
randomly select file
122704 by: ROBERT MCPEAK
122709 by: John Nichel
122711 by: rija
PHP/Flash
122705 by: Clint Tredway
122710 by: rija
Need info about upload to a FTP
122706 by: Cyclone Médias
122707 by: John Nichel
OSX compile problem (TSRM libs)
122712 by: Kristopher Yates
4.2.3 compile problem on OSX
122713 by: Kristopher Yates
Administrivia:
To subscribe to the digest, e-mail:
php-general-digest-subscribe
lists.php.net
To unsubscribe from the digest, e-mail:
php-general-digest-unsubscribe
lists.php.net
To post to the list, e-mail:
php-general
lists.php.net
----------------------------------------------------------------------
attached mail follows:
Works for me, tr putting some echo mysql_error on your page
Darren McPhee wrote:
>I have spent the last 3 days trying to figure this out. And will probably
>give up very soon. I have written 2 programs (which are very common PHP
>programs) that A) Allows me to upload image files into a MYSQL database
>using a simple form. And B) Allows me to retrieve and display the image
>using a PHP script. This is my problem:-
>
>I can upload the images ok. I store the binary code, image type, name, and
>size within the MYSQL database. On checking the database directly using
>DBTools, I can see that the files have uploaded. The file sizes reflect
>exactly what was originally on the hard disk of my PC (not sure if this is a
>correct gauge).
>
>When I run my PHP program to display the images, maybe only 1 out of 10
>actually displays correctly. The rest are broken up or non displayable
>images. One image even made a prompt window appear and somehow now causes
>Windows paint to load the image instead of the browser. God only knows how
>that occurred !!
>
>Below are my (designed by others) 2 programs. The first program is the
>upload form. This seems to work ok.
>
><HTML>
><HEAD><TITLE>Store binary data into SQL Database</TITLE></HEAD>
><BODY>
>
><?php
>// code that will be executed if the form has been submitted:
>
>if ($submit) {
>
> // connect to the database
>
> require_once('../../Connections/TestServer.php');
> mysql_select_db($database_TestServer, $TestServer);
>
> $data = addslashes(fread(fopen($form_data, "r"), filesize($form_data)));
>
> $result=MYSQL_QUERY("INSERT INTO master_products
>(image_thumbnail,image_thumbnail_name,image_thumbnail_size,image_thumbnail_t
>ype) ".
> "VALUES
>('$data','$form_data_name','$form_data_size','$form_data_type')");
>
> $id= mysql_insert_id();
> print "<p>This file has the following Database ID: <b>$id</b>";
>
> MYSQL_CLOSE();
>
>} else {
>
> // else show the form to submit new data:
>?>
>
> <form method="post" action="<?php echo $PHP_SELF; ?>"
>enctype="multipart/form-data">
> <INPUT TYPE="hidden" name="MAX_FILE_SIZE" value="1000000">
> <br>File to upload/store in database:<br>
> <input type="file" name="form_data" size="40">
> <p><input type="submit" name="submit" value="submit">
> </form>
>
><?php
>
>}
>
>?>
>
></BODY>
></HTML>
>
>Here is the code to display the image:-
>
><?php
>if($id) {
> require_once('../Connections/TestServer.php');
> mysql_select_db($database_TestServer, $TestServer);
> $query = "select image_thumbnail,image_thumbnail_type from
>master_products where item_id=$id";
> $result =
MYSQL_QUERY($query);
> $data =
MYSQL_RESULT($result,0,"image_thumbnail");
> $type =
MYSQL_RESULT($result,0,"image_thumbnail_type");
> Header( "Content-type: $type");
> echo $data;
>};
>?>
>
>I run the above program in the following way:
>http://192.168.0.11/htdocs/displayimage2.php?id=9 The ID is the item_id
>primary key field for whichever record I want to display.
>
>I have tried these programs on a test server here in my room to a test
>Apache server and MYSQL test database, and also from my ISP to a MYSQL
>database at a server at my ISP. I get exactly the same problem. When I run
>the display image program, the images being displayed are always being
>displayed the same. Which points the problem towards the upload process
>(maybe). If anybody can tell me what the heck is wrong here, I'll give them
>a medal !! There is basically some kind of binary corruption going on (it
>looks like)
>
>For added information, below is my database table structure. At the moment,
>the only part I am actually using relates to the image_thumbnail sections.
>
>Darren.
>
>
>
>CREATE TABLE master_products (
> item_id SMALLINT UNSIGNED NOT NULL PRIMARY KEY AUTO_INCREMENT,
> item_code VARCHAR (10) UNIQUE,
> item_dateadded DATETIME DEFAULT '0000-00-00 00:00:00',
> item_datemodified DATETIME DEFAULT '0000-00-00 00:00:00',
>
> category ENUM ("none","single herbs","general
>vitality","ageing","arthritis","eyesite","prostate","ahlzheimers",
> "weight
>loss","menopause","depression","fatigue","headaches","insomnia","colds and
>flues","allergies",
> "healthy heart","cancer prevention","aphrodisiacs","sexual herbs","for
>women","for men","books"),
>
> name VARCHAR (30),
> name_dateadded DATETIME DEFAULT '0000-00-00 00:00:00',
> name_datemodified DATETIME DEFAULT '0000-00-00 00:00:00',
> INDEX idx_name (name),
>
> desc_brief VARCHAR (255),
> desc_brief_dateadded DATETIME DEFAULT '0000-00-00 00:00:00',
> desc_brief_datemodified DATETIME DEFAULT '0000-00-00 00:00:00',
> INDEX idx_desc_brief (desc_brief),
>
> desc_long TEXT,
> desc_long_dateadded DATETIME DEFAULT '0000-00-00 00:00:00',
> desc_long_datemodified DATETIME DEFAULT '0000-00-00 00:00:00',
>
> price DECIMAL (7,2),
> price_dateadded DATETIME DEFAULT '0000-00-00 00:00:00',
> price_datemodified DATETIME DEFAULT '0000-00-00 00:00:00',
>
> image LONGBLOB,
> image_name VARCHAR (50),
> image_size INT UNSIGNED,
> image_type VARCHAR (50),
> image_dateadded DATETIME DEFAULT '0000-00-00 00:00:00',
> image_datemodified DATETIME DEFAULT '0000-00-00 00:00:00',
>
> image_thumbnail LONGBLOB,
> image_thumbnail_name VARCHAR (50),
> image_thumbnail_size INT UNSIGNED,
> image_thumbnail_type VARCHAR (50),
> image_thumbnail_dateadded DATETIME DEFAULT '0000-00-00 00:00:00',
> image_thumbnail_datemodified DATETIME DEFAULT '0000-00-00 00:00:00'
> );
>
>
>
>
>
attached mail follows:
Hello!
Our SMTP-Server has changed to authentification. Now we cannot send
mails anymore using mail(). How can I set the password in mail?
Martin
attached mail follows:
Hello,
On 11/04/2002 09:54 AM, Martin Thoma wrote:
> Hello!
>
> Our SMTP-Server has changed to authentification. Now we cannot send
> mails anymore using mail(). How can I set the password in mail?
Not with mail(). You may want to try this class that comes with a
wrapper function named smtp_mail() that emulates the mail() function. It
has some variables for setting the autentication credentials:
http://www.phpclasses.org/mimemessage
You also need this:
http://www.phpclasses.org/smtpclass
--Regards, Manuel Lemos
attached mail follows:
Thanx, I will try this.
attached mail follows:
On 11/4/02 6:54 AM, "Martin Thoma" <martin
radiok2r.de> tapped the keys:
> Hello! > > Our SMTP-Server has changed to authentification. Now we cannot send > mails anymore using mail(). How can I set the password in mail?
The built in mail command cannot handle authentication. There is a class on phpclasses, though, that can. I forget which one it is, but you can start your search here:
http://phpclasses.php-start.de/browse.html/class/2.html
Looks like you have a little re-coding ahead of you.
-- Ed Marczak marczakusa.net
attached mail follows:
Hi Erwin,
Great thanx, my brain is cleared <grin>. Well, a little more...
Where would I be able to find more info about regexp's?
TIA
David Russell
IT Support Manager
Barloworld Optimus (Pty) Ltd
Tel: +2711 444-7250
Fax: +2711 444-7256
e-mail: DavidR
BarloworldOptimus.com
web: www.BarloworldOptimus.com
-----Original Message-----
From: Erwin [mailto:erwin
isiz.com]
Sent: 04 November 2002 12:08 PM
To: php-general
lists.php.net
Subject: Re: [PHP] Re: Battling with highlighting search criteria
> How can I get the return in the same case as it was originally? > > Ie if I have $string = "Forward" , and $search = "for", I want > <span....>Forward</span>, not <span...>forward</span>.
Read my reply to your previous reply ;-))
But...some more explanation:
$result = preg_replace( '/(' . $search . ')/i', "<span class=\"highlight\">\$1</span>", $result );
The first argument is the pattern, which is '/(for)/i' in the case of searching for "for". That will match every occurence of "for", "For", "fOr", and so on. The case insensitivy is reached by the "i" modifier at the end of the pattern. The second argument is the replace string. The $1 is an backward reference to the first item between brackets. That'll mean that the from the word Forward, the $1 parameter will contain "For". So, the "For" -part from "Forward" will be replaced with <span class="highlight">For</span> and that's exactly what you want (right?)...
Hope this clears your brain up ;-)))
Grtz Erwin
-- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php
- application/x-pkcs7-signature attachment: smime.p7s
attached mail follows:
$result = eregi_replace("($search)","<span class=hightlight>\\0</span>",$result) ;
I use it, and I work fine for me.
----- Original Message -----
From: "David Russell" <DavidR
BarloworldOptimus.com>
To: <php-general
lists.php.net>
Sent: Monday, November 04, 2002 7:27 PM
Subject: [PHP] Battling with highlighting search criteria
> Hi there,
>
> My brain has just gone very fuzzy...
>
> I have a search string ($search) and a result ($result). I need to
> highlight every occurance of $search in $result.
>
> I know that it means that I need to change (for example)
>
> $result = "This is a test, isn't it?"
> $search = "is"
>
> Into
>
> $result = "th<span class="highlight">is</span> <span
> class="highlight">is</span> a test, <span class="highlight">is</span>'nt
> it"
>
> Now I can easily see how to change the FIRST occurrence of the word, but
> how can I change every occurance?
>
> Thanks
>
>
>
> David Russell
> IT Support Manager
> Barloworld Optimus (Pty) Ltd
> Tel: +2711 444-7250
> Fax: +2711 444-7256
> e-mail: DavidR
BarloworldOptimus.com
> web: www.BarloworldOptimus.com
>
attached mail follows:
Has anybody an equivalent for java saxon:output in a php library ? The port I would make follow :
<xsl:template match="/">
<xsl:for-each select="*/INDI">
<saxon:output file="{$dir}/{
ID}.html">
<xsl:apply-templates select="."/>
</saxon:output>
</xsl:for-each>
<saxon:output file="{$dir}/index.html">
<xsl:call-template name="make-index"/>
</saxon:output>
</xsl:template>
Thanks for your help .
Pierre Vaudrey
email pierre.vaudrey
wanadoo.fr
attached mail follows:
I have a database table that holds the values of IDs in the format 1,2,3,4,5,67,x,x,x,x,x,x
I am using a dynamic select list menu that displays a list of items from a 2nd table with the values set to their unique ids eg <option vaue =1>item 1</option> <option vaue =2>item2</option> <option vaue =3>item 3</option> <option vaue =4>item 4</option> <option vaue =5>item 5</option>
i am trying to use an array search that will highlight the item if the option value is in the array of the IDs, but with no luck, either all the ids are highlighted or none at all
Does any one have any suggestions into how to do this
Thanks
Craig
attached mail follows:
Craig wrote: > I have a database table that holds the values of IDs in the format > 1,2,3,4,5,67,x,x,x,x,x,x > > I am using a dynamic select list menu that displays a list of items > from a 2nd table with the values set to their unique ids > eg > <option vaue =1>item 1</option> > <option vaue =2>item2</option> > <option vaue =3>item 3</option> > <option vaue =4>item 4</option> > <option vaue =5>item 5</option> > > i am trying to use an array search that will highlight the item if the > option value is in the array of the IDs, but with no luck, either all > the ids are highlighted or none at all
$ids = '1,2,3,4,5,6,7'; // This value represents the database value
$array_ids = explode( ',', $ids ); // This will give you an array with all the id's $amount = 10; // Amount of options
for ( $i = 0; $i < $amount; $i++ ) { print '<option value=' . $i; if ( in_array( $i, $array_ids ) ) // If the value is in the id's array, then print selected print ' selected'; print '>' . $i . '</option>'; }
Something like that?
Grtz Erwin
attached mail follows:
I don't use cookies when I use sessions.. Saves hassles
Regards Chris Kay
> -----Original Message-----
> From: Erwin [mailto:erwin
isiz.com]
> Sent: Monday, 4 November 2002 6:50 PM
> To: php-general
lists.php.net
> Subject: [PHP] Re: Session cookies
>
>
> > When the user logs in , i create a session with session varialbles,
> > the session cookie is saved on clients computer.
> >
> > When i log off i say
> >
> > session_unset();
> > session_destroy();
> > setcookie(session_name());
> >
> > The session in the tmp is deleted , but the cookie is still
> there , i
> > know this because when i login , the same session id is
> used ! Why is
> > that ?
>
> Because you use the same session to connect from client to
> server. You don't close your browser, don't wait 20 minutes
> (or something like that), so the webserver knows you are the
> same. The session between the client and server is not yet gone.
>
> It's also possible that you need to set your cookie in the
> past. You're just setting a cookie with
> setcookie(session_name()). If you want it destroyed, set it
> some time ago, like setcookie(session_name(),-3600).
>
>
> > The session id changes when you close the browser , as the
> default is
> > 0.
>
> Not because default is 0, but because there isn't any session yet.
>
> HTH
> Erwin
>
>
> --
> PHP General Mailing List (http://www.php.net/)
> To unsubscribe, visit: http://www.php.net/unsub.php
>
attached mail follows:
Could you not put a .forward to a php script?
Correct me if I am wrong or even point me in the right direction Cause I am thinking of doing this soon.
Regards Chris Kay
> -----Original Message-----
> From: Timothy Hitchens (HiTCHO) [mailto:phplists
hitcho.com.au]
> Sent: Monday, 4 November 2002 12:59 PM
> Cc: php-general
lists.php.net
> Subject: Re: [PHP] Add content thru e-mail
>
>
> The simplest way to do this to setup a pop3 account and have
> a php script check this account at intervals via cron.
>
> Or you could write a pipe script via aliases.
>
>
> Timothy Hitchens (HiTCHO)
> tim
hitcho.com.au
>
>
> On Sun, 3 Nov 2002, Rodrigo de Oliveira Costa wrote:
>
> > Hi people, i'd like to know if there is a way to add content to a
> > database thru sending an e-mail, and if there is how it
> would be done.
> > Thanks, Rodrigo
> >
>
>
> --
> PHP General Mailing List (http://www.php.net/)
> To unsubscribe, visit: http://www.php.net/unsub.php
>
attached mail follows:
/etc/aliases foo: "|/path/to/script.php"
script.php <? $fp = fopen("php://stdin","r") ; $buffer = "" ; while (!feof($fp)) { $buffer .= fgetc($fp); }
$email_parts = explode("\n\n",preg_replace("/\r/","",$buffer)); $headers = $email_parts[0]; $body = $email_parts[1]; /* ...etc... */ ?>
Quoting Chris Kay <chris
eleet.com.au>:
>
> Could you not put a .forward to a php script?
>
> Correct me if I am wrong or even point me in the right direction
> Cause I am thinking of doing this soon.
>
> Regards
> Chris Kay
>
> > -----Original Message-----
> > From: Timothy Hitchens (HiTCHO) [mailto:phplists
hitcho.com.au]
> > Sent: Monday, 4 November 2002 12:59 PM
> > Cc: php-general
lists.php.net
> > Subject: Re: [PHP] Add content thru e-mail
> >
> >
> > The simplest way to do this to setup a pop3 account and have
> > a php script check this account at intervals via cron.
> >
> > Or you could write a pipe script via aliases.
> >
> >
> > Timothy Hitchens (HiTCHO)
> > tim
hitcho.com.au
> >
> >
> > On Sun, 3 Nov 2002, Rodrigo de Oliveira Costa wrote:
> >
> > > Hi people, i'd like to know if there is a way to add content to a
> > > database thru sending an e-mail, and if there is how it
> > would be done.
> > > Thanks, Rodrigo
> > >
> >
> >
> > --
> > PHP General Mailing List (http://www.php.net/)
> > To unsubscribe, visit: http://www.php.net/unsub.php
> >
>
>
> --
> PHP General Mailing List (http://www.php.net/)
> To unsubscribe, visit: http://www.php.net/unsub.php
>
=======================================
Michael Geier
CDM Sports, Inc. Systems Administration
email: operations
cdmsports.com
phone: 314.991.1511 x 6505
----------------------------------------------- This email sent using CDM Sports Webmail v3.1 [ http://webmail.cdmsports.com ]
attached mail follows:
Hello!
Is there a way to run a php-script on a pc/windows-computer which hasn't php-installed? I thought of somekind of compiler which creates an .exe, which embeds the script and the php-environment.
Martin
attached mail follows:
Hello Martin,
Monday, November 04, 2002, 2:53:48 PM, you wrote:
MT> Hello!
MT> Is there a way to run a php-script on a pc/windows-computer which hasn't MT> php-installed? I thought of somekind of compiler which creates an .exe, MT> which embeds the script and the php-environment.
MT> Martin
On win32 I use PHP-GTK and I've solved this problem:
php-gtk need php executable and some dlls all what I've done - I've created with Install Shield an instalation package which contains php executable and its own dlls and php-gtk files
InstallShield during install my package copy some dlls and php.ini into %windir% and creates shortcut to my main programm file: "php_gtk main.php"
if you don't need gtk - I think you should dig around a shortcut some like this "php.exe your_script.php"
-- Best regards, Alexander Kuznetsov
attached mail follows:
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1
http://pear.php.net/bcompiler ? ~Paul
On Monday 04 November 2002 08:09 am, Alexander Kuznetsov wrote: > Hello Martin, > > Monday, November 04, 2002, 2:53:48 PM, you wrote: > > MT> Hello! > > MT> Is there a way to run a php-script on a pc/windows-computer which > hasn't MT> php-installed? I thought of somekind of compiler which creates > an .exe, MT> which embeds the script and the php-environment. > > MT> Martin > > On win32 I use PHP-GTK and I've solved this problem: > > php-gtk need php executable and some dlls > all what I've done - I've created with Install Shield an > instalation package which contains php executable and its own dlls > and php-gtk files > > InstallShield during install my package copy some dlls and php.ini > into %windir% and creates shortcut to my main programm file: > "php_gtk main.php" > > if you don't need gtk - I think you should dig around a shortcut some > like this "php.exe your_script.php"
- --
~Paul Nicholson
Design Specialist
WebPower Design
"The web....the way you want it!"
paul
webpowerdesign.net
"It said uses Windows 98 or better, so I loaded Linux!" Registered Linux User #183202 using Register Linux System # 81891 -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.0.6 (GNU/Linux) Comment: For info see http://www.gnupg.org
iD8DBQE9xtHTDyXNIUN3+UQRAtxaAKCan2IXOu+irl0ti21jHDrhiqlvRQCePk86 FxH6Qm00KYpqhsES5okk9VY= =MdQC -----END PGP SIGNATURE-----
attached mail follows:
Hi,
I tried some advice you gave , i tried to destroy the session cookie wiht setcookie(session_name()); and setcookie(session_name(),-3600); but the cookie is still there . Instead , there are now 2 cookies with the same name , the one has the session id , the other has no contents! HOW CAN I DELETE THESE THINGS !!!
Thanks alot Shaun
attached mail follows:
Shaun wrote: > Hi, > > I tried some advice you gave , i tried to destroy the session cookie > wiht setcookie(session_name()); and setcookie(session_name(),-3600); > but the cookie is still there . Instead , there are now 2 cookies > with the same name , the one has the session id , the other has no > contents! HOW CAN I DELETE THESE THINGS !!!
Heh...LOL My mistake...at first you destroy the session, then you are using session_name(). The session_name() function will then (of course) return an empty string. Try setting the cookie (with -3600) before session_destroy().
First question: why are you using a cookie??? If you use session_start(), a cookie is automaticaly send to the client.
Grtz Erwin
attached mail follows:
That is true. Didn't think about it like that. Thanks for your input..
rolf vreijdenberger wrote:
>but what if you decide later you want more objects or globals in your
>function??
>your parameter list could get quit long!
>
>--
>Rolf Vreijdenberger
>De Pannekoek en De Kale
>W: www.depannekoekendekale.nl
>"Gerard Samuel" <gsam
trini0.org> schreef in bericht
>news:3DC54436.2090803
trini0.org...
>
>
>>Something I just thought of about using global in a function.
>>Mostly I global objects in a function like ->
>>
>>function foo()
>>{
>> global $bar_object;
>> $bar_object->do_something();
>>}
>>
>>Is it better, more effiecient, if I pass it by reference, like ->
>>function foo(&$bar_object)
>>{
>> $bar_object->do_something();
>>}
>>
>>Thanks for your thoughts...
>>
>>--
>>Gerard Samuel
>>http://www.trini0.org:81/
>>http://dev.trini0.org:81/
>>
>>
>>
>>
>
>
>
>
>
-- Gerard Samuel http://www.trini0.org:81/ http://dev.trini0.org:81/
attached mail follows:
Hello List -
I am having a problem with fsockopen since my ISP upgraded their linux server. The same function works just fine on another linux server and PHP version (using a different ISP).
This fsockopen function previously worked as expected, returning within the specified timeout (2 sec) if a socket connection attempt to client is rejected, eg by a firewall. For connection to port 1720, (then immediate close of socket if fsockopen returns true) I use :
$fsock=fsockopen( $address, 1720 , &$errno, &$errmesg , 2);
I have also tried 2.0 (float) rather than 2 as per PHP manual, this makes no difference. http://www.php.net/manual/en/function.fsockopen.php
The specific symptoms :
No listener on client port 1720 : Succeeds Listening client socket on port 1720 Succeeds Client firewall configured to allow connections Succeeds Client firewall configured to deny connections Fails
The fail mode is that fsockopen does *not* return after the specified timeout, and the script itself eventually times out at the default 30 sec.
Working configuration : PHP 4.1.2, Linux Redhat 2.2.20, Apache 1.3.22 Http Env vars :i386-redhat-linux-gnu
Non-working configuration : PHP 4.0.6, Linux Redhat 2.4.9-21smp i686, Apache 1.3.27 Http Env vars : i386-slackware-linux-gnu
Anybody able to offer any help or point me at a way to step round this problem ? I thought of setting up an XML feed by HTTP Post from one machine to another - they are on diffrent networks so I worry about latency.
Thanks for any help or suggestions to fix this problem, or any anecdotal evidence I can use to fix it !!
Neil Smith.
attached mail follows:
Hello List -
I am having a problem with fsockopen since my ISP upgraded their linux server. The same function works just fine on another linux server and PHP version (using a different ISP).
This fsockopen function previously worked as expected, returning within the specified timeout (2 sec) if a socket connection attempt to client is rejected, eg by a firewall. For connection to port 1720, (then immediate close of socket if fsockopen returns true) I use :
$fsock=fsockopen( $address, 1720 , &$errno, &$errmesg , 2);
I have also tried 2.0 (float) rather than 2 as per PHP manual, this makes no difference. http://www.php.net/manual/en/function.fsockopen.php
The specific symptoms :
No listener on client port 1720 : Succeeds Listening client socket on port 1720 Succeeds Client firewall configured to allow connections Succeeds Client firewall configured to deny connections Fails
The fail mode is that fsockopen does *not* return after the specified timeout, and the script itself eventually times out at the default 30 sec.
Working configuration : PHP 4.1.2, Linux Redhat 2.2.20, Apache 1.3.22 Http Env vars :i386-redhat-linux-gnu
Non-working configuration : PHP 4.0.6, Linux Redhat 2.4.9-21smp i686, Apache 1.3.27 Http Env vars : i386-slackware-linux-gnu
Anybody able to offer any help or point me at a way to step round this problem ? I thought of setting up an XML feed by HTTP Post from one machine to another - they are on diffrent networks so I worry about latency.
Thanks for any help or suggestions to fix this problem, or any anecdotal evidence I can use to fix it !!
Neil Smith.
attached mail follows:
My way: take a theme that most suits your needs and change it
Kevin Myrick wrote:
>Ok, like I stated in my last message, I am using >PHPWebsite as my portal system. > >However, I would like to learn how to do custom >themes, because like sooo many aspiring web >designers/programmers, I got an imagination a mile >long and deep. > >So, anyone want to point me in the right direction on >a theme creation tutorial, seeing as Sourceforge >doesn't want to help me out? > >Thanks, >Kevin Myrick >www.ultimatealchemy.com > >__________________________________________________ >Do you Yahoo!? >HotJobs - Search new jobs daily now >http://hotjobs.yahoo.com/ > > >
attached mail follows:
look at smarty (smarty.php.net) as it does templates, and i am accomplishing 'themes' on a current project by just changing the template directory.
-js
Marek Kilimajer wrote: > My way: take a theme that most suits your needs and change it > > Kevin Myrick wrote: > >> Ok, like I stated in my last message, I am using >> PHPWebsite as my portal system. >> >> However, I would like to learn how to do custom >> themes, because like sooo many aspiring web >> designers/programmers, I got an imagination a mile >> long and deep. >> >> So, anyone want to point me in the right direction on >> a theme creation tutorial, seeing as Sourceforge >> doesn't want to help me out? >> >> Thanks, >> Kevin Myrick >> www.ultimatealchemy.com >> >> __________________________________________________ >> Do you Yahoo!? >> HotJobs - Search new jobs daily now >> http://hotjobs.yahoo.com/ >> >> >> > >
attached mail follows:
Hi, I know this is an old chestnut and i am going thru archives and googling as well. anyhoo, my small company recently decided that live cc processing was too expensive for our needs (this has to do with us being based in ireland where there is a problem with the banks -they only deal with one irish company to process and its too expensive for us - don't really know the details but thats what i was told). so we're going to store the cc numbers and process manually(we're a small company at present so we're not talking 1000's of numbers just yet). i'd appreciate anyones experience or advice regarding storing in a mysql db - articles etc.. i also have the option of using postgres (haven't used it before) if anyone thinks i should. as a side note - i notice that phpshop stores cc numbers in mysql.any thoughs on that - i.e. is it a good example of how it should be done.
many thanx, adrian murphy
attached mail follows:
Message-ID: <002e01c28420$f95e9360$1a8f43d9
ADE2>
From: "adrian murphy
2020tourism.com" <adrian.murphy
2020tourism.com>
To: "adrian murphy
2020tourism.com" <adrian.murphy
2020tourism.com>,
<php-general
lists.php.net>
Date: Mon, 4 Nov 2002 16:41:03 -0000
MIME-Version: 1.0
Content-Type: text/plain;
charset="iso-8859-1"
Content-Transfer-Encoding: 7bit
Subject: Re: [PHP] storing cc details in mysql
Sorry forgot to say we do have a secure server.
----- Original Message -----
From: "adrian murphy
2020tourism.com" <adrian.murphy
2020tourism.com>
To: <php-general
lists.php.net>
Sent: Monday, November 04, 2002 4:37 PM
Subject: [PHP] storing cc details in mysql
Hi, I know this is an old chestnut and i am going thru archives and googling as well. anyhoo, my small company recently decided that live cc processing was too expensive for our needs (this has to do with us being based in ireland where there is a problem with the banks -they only deal with one irish company to process and its too expensive for us - don't really know the details but thats what i was told). so we're going to store the cc numbers and process manually(we're a small company at present so we're not talking 1000's of numbers just yet). i'd appreciate anyones experience or advice regarding storing in a mysql db - articles etc.. i also have the option of using postgres (haven't used it before) if anyone thinks i should. as a side note - i notice that phpshop stores cc numbers in mysql.any thoughs on that - i.e. is it a good example of how it should be done.
many thanx, adrian murphy
attached mail follows:
Rule no. 1 => Never save the cc-numbers in an online database.
Regards, Sumarlidi E. Dadason
SED - Graphic Design
_________________________________
Tel: 896-0376, 461-5501
E-mail: sed
sed.is
website: www.sed.is
-----Original Message-----
From: adrian murphy
2020tourism.com
[mailto:adrian.murphy
2020tourism.com]
Sent: 4. nóvember 2002 16:41
To: adrian murphy
2020tourism.com; php-general
lists.php.net
Subject: Re: [PHP] storing cc details in mysql
Sorry forgot to say we do have a secure server.
----- Original Message -----
From: "adrian murphy
2020tourism.com" <adrian.murphy
2020tourism.com>
To: <php-general
lists.php.net>
Sent: Monday, November 04, 2002 4:37 PM
Subject: [PHP] storing cc details in mysql
Hi, I know this is an old chestnut and i am going thru archives and googling as well. anyhoo, my small company recently decided that live cc processing was too expensive for our needs (this has to do with us being based in ireland where there is a problem with the banks -they only deal with one irish company to process and its too expensive for us - don't really know the details but thats what i was told). so we're going to store the cc numbers and process manually(we're a small company at present so we're not talking 1000's of numbers just yet). i'd appreciate anyones experience or advice regarding storing in a mysql db - articles etc.. i also have the option of using postgres (haven't used it before) if anyone thinks i should. as a side note - i notice that phpshop stores cc numbers in mysql.any thoughs on that - i.e. is it a good example of how it should be done.
many thanx, adrian murphy
-- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php
attached mail follows:
There are AES_Encrypt/Decrypt and DES_Encrypt/Decrypt functions in MySQL.
Quote from Manual: AES_ENCRYPT() and AES_DECRYPT() were added in version 4.0.2, and can be considered the most cryptographically secure encryption functions currently available in MySQL.
http://www.mysql.com/doc/en/Miscellaneous_functions.html
You can also compile PHP with different encryption modules and use those.
---John Holmes...
----- Original Message -----
From: "adrian murphy
2020tourism.com" <adrian.murphy
2020tourism.com>
To: <php-general
lists.php.net>
Sent: Monday, November 04, 2002 11:37 AM
Subject: [PHP] storing cc details in mysql
Hi, I know this is an old chestnut and i am going thru archives and googling as well. anyhoo, my small company recently decided that live cc processing was too expensive for our needs (this has to do with us being based in ireland where there is a problem with the banks -they only deal with one irish company to process and its too expensive for us - don't really know the details but thats what i was told). so we're going to store the cc numbers and process manually(we're a small company at present so we're not talking 1000's of numbers just yet). i'd appreciate anyones experience or advice regarding storing in a mysql db - articles etc.. i also have the option of using postgres (haven't used it before) if anyone thinks i should. as a side note - i notice that phpshop stores cc numbers in mysql.any thoughs on that - i.e. is it a good example of how it should be done.
many thanx, adrian murphy
attached mail follows:
Really quick answer:
1. consider storing them OFF the server as soon as possible... having minimal (if any) numbers stored on the live (net connected server) will: a) make the server a less desireable hack b) result in less risk in case of a hack c) be more responsible to your customers
2. install the mcrypt library, do a heap of reading about how to store keys etc etc and encrypt anything that you store
3. yes, use SSL, but as you are aware, this only encrypts the data during transit from the user to the server... you need to consider a) how the numbers are stored b) where they are stored c) how the #'s are transferred from the server to you (SSL or encrypt again!)
Cheers,
J
on 05/11/02 2:37 AM, adrian murphy
2020tourism.com
(adrian.murphy
2020tourism.com) wrote:
> Hi, > I know this is an old chestnut and i am going thru archives > and googling as well. > anyhoo, my small company recently decided that live cc processing was too > expensive for our needs (this has to do with us being based in ireland where > there is a problem with the banks -they only deal with one irish company to > process and its too expensive for us - don't really know the details but thats > what i was told). > so we're going to store the cc numbers and process manually(we're a small > company at present so we're not talking 1000's of numbers just yet). > i'd appreciate anyones experience or advice regarding storing in a mysql db - > articles etc.. > i also have the option of using postgres (haven't used it before) if anyone > thinks i should. > as a side note - i notice that phpshop stores cc numbers in mysql.any thoughs > on that - i.e. is it a good example of how it should be done. > > many thanx, > adrian murphy >
attached mail follows:
(isset($_POST["Submit"])) is this the way to check a submission image to see if it's been set?
attached mail follows:
> (isset($_POST["Submit"])) is this the way to check a submission image to > see > if it's been set?
Nope. Try the manual:
IMAGE SUBMIT variable names When submitting a form, it is possible to use an image instead of the standard submit button with a tag like:
<input type="image" src="image.gif" name="sub"> When the user clicks somewhere on the image, the accompanying form will be transmitted to the server with two additional variables, sub_x and sub_y. These contain the coordinates of the user click within the image. The experienced may note that the actual variable names sent by the browser contains a period rather than an underscore, but PHP converts the period to an underscore automatically.
So you'll have $_POST['Submit_x'] and $_POST['Submit_y'] and you can check for either to see if the image was clicked.
---John Holmes...
attached mail follows:
Hi,
I'm having some problems with session on version 4.3.0. On 4.1.1 it was working perfectly. Here are the sources of login.php and logout.php:
login.php
session_start(); $GLOBALS["SID"] = "PHPSESSID=".session_id(); $GLOBALS["var1"] = $HTTP_SESSION_VARS["var1"];
logout.php
session_start(); $GLOBALS["SID"] = "PHPSESSID=".session_id(); session_destroy(); setcookie(session_name(),"","","/");
When user clicks to logout.php, the session must be destroyed, with no need to close the browser.
Thanks,
-- Marcel Peruch Web Developer www.viaconnect.com.br marcelviaconnect.com.br Linux User #271282
attached mail follows:
Hello experts,
I am hoping to build a website to host a sizeable document and add functionality to allow readers to submit comments and general feedback. The main document is currently stored as a series of XML pages and I have succeeded in publishing these documents in HTML with Apache Cocoon. Now that I have the XML and XLST parts in place I am looking towards adding that comment functionality that I mentioned. My question for you is does anyone know how well PHP integrates with Cocoon as I was hoping to use that as the mechanism to accept and store user comments in a MySQL database.
If anyone out there has any ideas (or even better, knows how this is done!) then any pointers would be much appreciated.
Thanks in advance,
Hai
_________________________________________________________ This email is confidential and intended solely for the use of the individual to whom it is addressed. Any views or opinions presented are solely those of the author and do not necessarily represent those of SchlumbergerSema. If you are not the intended recipient, be advised that you have received this email in error and that any use, dissemination, forwarding, printing, or copying of this email is strictly prohibited.
If you have received this email in error please notify the SchlumbergerSema Helpdesk by telephone on +44 (0) 121 627 5600. _________________________________________________________
attached mail follows:
Hi there,
I recently upgraded from PHP version 4.0-ish to 4.2.3 on my Linux/Apache machine. AFAIK, Apache is setup correctly (it serves HTML) and PHP works, but only from the command line. If I type "php -q php.php > test.html" the output of phpinfo() is stored in test.html. When I try and look at test.html running on localhost it display sfine, but when I try and view php.php, as "save as" window pops up. I am not too familar with Linux. If it was a Windows installation then I would make sure the Action application (path to php.exe) line was correct, but I can't find this in the Linux httpd.conf. Does this issue sound familar to anyone. Could anyone point me in the right direction?
Thanks very much.
- Best regards, Lee Reilly
attached mail follows:
Hi!
I have made a website with a webshop and the orders are written down in txtfiles and a faxserver is scanning a directory for txtfiles and sends them as faxes.
So I am trying to write the txtfile like I should have written the order in a table. Or you can say I am trying to make some columns in the txtfile.
Something like this:
1 pizza cheese, beef, tomato, 5,- ham, bacon etc........ 2 burgers cheese, bacon 2,-
Best regards Raymond
attached mail follows:
Hi Raymond,
> I have made a website with a webshop and the orders are written down in > txtfiles and a faxserver is scanning a directory for txtfiles and sends them > as faxes. > > So I am trying to write the txtfile like I should have written the order in > a table. Or you can say I am trying to make some columns in the txtfile. > > Something like this: > > 1 pizza cheese, beef, tomato, 5,- > ham, bacon etc........ > 2 burgers cheese, bacon 2,-
I *think* if you're committed to doing this in PHP, you'll need to look at the sprintf() or printf() functions:
http://www.php.net/manual/en/function.sprintf.php
You're given some level of control over the output of your program. I don't know if you can get what you describe above, though.
If you're not adverse to looking to another language, Perl was built to do exactly this. Perl Formats do what you need -- they provide a method for generating "simple, formatted reports and charts", according to the camel book. I know of no analagous capability of PHP (although I may very well be wrong).
If you can't use perl for the whole thing, perhaps you could have PHP do all your logic, and then pass the data to a perl script to format and save it to a file. Or maybe sprintf() does everything you need...
Joel
(more on perl formats: http://www.perl.com/doc/manual/html/pod/perlform.html)
-- [ joel boonstra | jboonstragospelcom.net ]
attached mail follows:
Ok! I think I will try a little more to get it work with php first, but it is a good idea you have here.
Thanks! : )
Raymond
"Joel Boonstra" <jboonstra
gospelcom.net> wrote in message
news:Pine.LNX.4.44.0211041703230.11800-100000
amos.gf.gospelcom.net...
> Hi Raymond,
>
> > I have made a website with a webshop and the orders are written down in
> > txtfiles and a faxserver is scanning a directory for txtfiles and sends
them
> > as faxes.
> >
> > So I am trying to write the txtfile like I should have written the order
in
> > a table. Or you can say I am trying to make some columns in the txtfile.
> >
> > Something like this:
> >
> > 1 pizza cheese, beef, tomato, 5,-
> > ham, bacon etc........
> > 2 burgers cheese, bacon 2,-
>
> I *think* if you're committed to doing this in PHP, you'll need to look
> at the sprintf() or printf() functions:
>
> http://www.php.net/manual/en/function.sprintf.php
>
> You're given some level of control over the output of your program. I
> don't know if you can get what you describe above, though.
>
> If you're not adverse to looking to another language, Perl was built to
> do exactly this. Perl Formats do what you need -- they provide a method
> for generating "simple, formatted reports and charts", according to the
> camel book. I know of no analagous capability of PHP (although I may
> very well be wrong).
>
> If you can't use perl for the whole thing, perhaps you could have PHP do
> all your logic, and then pass the data to a perl script to format and
> save it to a file. Or maybe sprintf() does everything you need...
>
> Joel
>
> (more on perl formats:
> http://www.perl.com/doc/manual/html/pod/perlform.html)
>
> --
> [ joel boonstra | jboonstra
gospelcom.net ]
>
attached mail follows:
It depends on where the textfile are going to be store If you store them into unauthorized directory that php does not have the right (or permission) to write in, I think it cannot be done, but if you put down the file into allowed directory, why not?
to make column into your text file I think \t is good-
----- Original Message -----
From: "Raymond Lilleodegard" <raymol
online.no>
To: <php-general
lists.php.net>
Sent: Tuesday, November 05, 2002 5:28 AM
Subject: [PHP] Does anyone know if this is possible?
> Hi! > > I have made a website with a webshop and the orders are written down in > txtfiles and a faxserver is scanning a directory for txtfiles and sends them > as faxes. > > So I am trying to write the txtfile like I should have written the order in > a table. Or you can say I am trying to make some columns in the txtfile. > > Something like this: > > 1 pizza cheese, beef, tomato, 5,- > ham, bacon etc........ > 2 burgers cheese, bacon 2,- > > Best regards Raymond > > > > -- > PHP General Mailing List (http://www.php.net/) > To unsubscribe, visit: http://www.php.net/unsub.php > >
attached mail follows:
Ok, so I've a script that outputs HTML. If a particular argument is passed to that script, it sends the following header commands before it echoes out any HTML:
header( "Content-Disposition: inline; filename=policy.doc" ); header( "Content-type: application/msword" );
so that it opens up and displays the HTML in ms-word. That should be all I need to make it open up properly in Word. However, it's not working.
One of the very first things that the script does is some validation and if it fails, echoes out some javascript to force the user back to the previous page - history.back(). The relevant code is:
if( myValidationFunctionsFakeName()) { echo "<script language=\"javascript\">history.back();</script>\n"; exit(); }
So unless that check fails, the javascript *never* gets echoed out.
What's happening is that when I try to output the HTML to Word (by using the header() functions), the only thing in the document (after it opens up) is the javascript. I can remove the header calls and the HTML displays just fine in the browser. Add them back in, the javascript is the only thing that shows up in Word.
But why? Why is PHP echoing out something it should not be echoing? The validation doesn't fail so as such, the text should never be sent to stdout (the browser). Or am I misunderstanding something?
Chris
attached mail follows:
> But why? Why is PHP echoing out something it should > not be echoing? The validation doesn't fail so as such, > the text should never be sent to stdout (the browser). > Or am I misunderstanding something?
Ok, I figured out what my problem was and I'd very much appreciate if someone who was intimately knowledgable with the inner workings of PHP (Rasmus, Zeev..?) could let me know why it's doing this.
One thing I didn't mention in my initial post (mainly because I didn't think it was relevant to my problem) was that I am using Sessions and my validation function uses the Session ID as part of it's validation.
Now, in my validation function, it's declaring $PHPSESSID as global so it can use it's value. We have enable_trans_sid turned on and whatever other option (if there is one) so that if the session ID isn't passed via a GET, PHP pulls the ID from the cookie. And that's what happens on almost every page - the session ID is pulled from the cookie variable and it's working no problem.
Ok, so the make up of the script that I'm having issues with looks like this:
(pseudocode) ------------------------- validation function { global $PHPSESSID; validate using $PHPSESSID;
}
process and define output
switch( $action ) { case "msword": word headers();
case "html": echo output; break;
} -------------------------
Now, when $action is "html", everything works fine. In the validation function, $PHPSESSID is pulled from the cookie variable, is checked against and validation passes. However, when $action is "msword", in the validation function, $PHPSESSID isn't pulled from the cookie and as such, validation fails. The only difference between the two actions is the for "msword", I'm sending the appropriate headers so that the output is opened up in Word.
Now my question, with $PHPSESSID coming from a cookie as input, why would the output ( header() functions ) dictate whether or not that input is read correctly. IOW, why is the session ID not read from the cookie space when I use the header functions to specify that the browser should open up Word? That part of the code (reading PHPSESSID from the cookie) is executed and processed long before I send the header() function calls. It makes no sense to me and it must have something to do with how PHP parses and executes the script.
Any ideas as to what exactly is going on would be very much appreciated!
Chris
attached mail follows:
Your pseudocode is incomplete, because you do not show us where you call this mysterious function that "validates using $PHPSESSID."
Also, if that is really all your switch consists of, you're not really gaining anything over using a simple if construct:
if ($action == "msword") { word_headers(); } echo $output;
Chris Boget wrote:
>Ok, so the make up of the script that I'm having issues with >looks like this: > >(pseudocode) >------------------------- >validation function { > global $PHPSESSID; > > validate using $PHPSESSID; > >} > >process and define output > >switch( $action ) { > case "msword": > word headers(); > > case "html": > echo output; > break; > >} >------------------------- >
attached mail follows:
Stephen, after your line:
>$query = "SELECT * FROM orders WHERE orderid = '$orderid'";
you should add:
mysql_query($query);
in your code line you've just set your variable--you haven't asked mysql to do anything.
Hope this helps. Hugh
----- Original Message -----
From: "Steve Jackson" <stephen.jackson
violasystems.com>
To: "PHP General" <php-general
lists.php.net>
Sent: Monday, November 04, 2002 12:42 AM
Subject: [PHP] Address array?
> I want to display an address from my database based on an orderid. Where
> am I going wrong? I am still unsure how Php interacts with mySQL but am
> I right in assuming it should be an array?
>
> My code...
>
> function get_shipping_address($address_array)
> {
> $conn = db_connect();
> $orderid = get_order_id($orderid);
> $query = "SELECT * FROM orders WHERE orderid = '$orderid'";
> $row = mysql_fetch_array($query);
> foreach ($address_array as $row)
> {
> $ship_name = $row["ship_name"];
> $ship_address = $row["ship_address"];
> $ship_city = $row["ship_city"];
> $ship_zip = $row["ship_zip"];
> $ship_country = $row["ship_country"];
> }
> }
>
> Steve Jackson
> Web Developer
> Viola Systems Ltd.
> http://www.violasystems.com
> stephen.jackson
violasystems.com
> Mobile +358 50 343 5159
>
>
> --
> PHP General Mailing List (http://www.php.net/)
> To unsubscribe, visit: http://www.php.net/unsub.php
>
attached mail follows:
Hi guys,
I have very weird problem.
I have installed the PHP version 4.2.3 on the LINUX virtual server of my web project. Previously I had the PHP version 4.0.6.
The error I get is very weird. When I insert a record with the phpMyAdmin, the first 4 characters of each field don't get saved. Same thing happened with some data entry interfaces I coded!
The only difference I can see in the two installation (provided the php.ini file is in the same location):
The old version 4.0.6 was installed by the server provider and my virtual server space I can only see the .so file. The new version 4.2.3 is actually inside my virtual server space. Hence, the path I provided in the php configuration is different (I don't have idea if this can influence something).
NEW VERSION (4.2.3) configuration run by me './configure' '--with-apxs=/usr/local/apache/1.3/bin/apxs' '--prefix=/usr/home/rockit/usr/local' '--with-mysql=/usr/home/rockit/usr/local/mysql' '--with-xml' '--enable-xslt' '--with-xslt-sablot=/usr/home/rockit/usr/local' '--with-regex=system' '--with-expat-dir=/usr/home/rockit/usr/local' '--with-iconv=/usr/home/rockit/usr/local' '--enable-inline-optimization' '--disable-debug' '--enable-memory-limit' '--enable-sigchild' '--without-pear' '--enable-mbstring' '--enable-mbstr-enc-trans' '--with-gdbm=/usr/local' '--enable-sockets' '--enable-versioning' '--with-ttf=/usr/local' '--enable-ftp' '--with-gd=/usr/local' '--with-zlib' '--enable-gd-native-ttf'
OLD VERSION (4.0.6) configuration run by the server provider './configure' '--enable-inline-optimization' '--with-apxs=/usr/local/apache/1.3/bin/apxs' '--with-config-file-path=/usr/local/lib' '--disable-debug' '--enable-memory-limit' '--enable-sigchild' '--with-gettext' '--without-pear' '--with-regex=system' '--enable-mbstring' '--enable-mbstr-enc-trans' '--with-iconv=/usr/local' '--with-gdbm=/usr/local' '--with-dbm=/usr/local' '--enable-sockets' '--enable-versioning' '--with-freetype-dir=/usr/local' '--with-ttf=/usr/local' '--enable-ftp' '--with-curl=/usr/local/curl' '--with-openssl=/usr/local/openssl' '--with-gd=/usr/local' '--with-freetype-dir=/usr/local' '--with-ttf=/usr/local' '--with-jpeg-dir=/usr/local' '--with-png-dir=/usr/local' '--with-t1lib=/usr/local' '--with-zlib' '--enable-gd-native-ttf' '--with-imap' '--with-mcrypt=/usr/local' '--with-mhash=/usr/local' '--with-dom=/usr/local' '--with-mysql=/usr/local/mysql' '--with-zlib' '--with-zlib'
I must admit that I didn't not include all parameter as the old installation, as I didn't know most options and thought is not needed. In the new installation I instead provided additional XML parameter (after installing the correspond modules, which all seem to work fine).
Hints on problem are very well welcome!
Daniele
attached mail follows:
Hi,
I hope somebody could help me with a problem I have with the $_FILES variable.
I'm trying to make a PHP script which could have access to an uploaded remote file. The piece of HTML is:
---------------- <html> <body>
<form action="ll.php" method="post" enctype="multipart/form-data"> <input name="userfile" size=48 type="file"> <input type="submit" name="attach" value="Add"><br> </form>
</body> </html> ----------------
and the ll.php script is:
---------------- <?php printf("file=(%s)<br>", $_FILES['userfile']['name']); print_r(array_values($_FILES)); phpinfo(); ?> ----------------
but the variable $_FILES is not set at all, because the printf doesn't print the name of the uploaded file nor the second line, the print_r() print anything for that array variable. So the question is: what could be happening that the variable $_FILES is not set?
The phpinfo() function returns PHP 4.2.3, and I compiled it with the following configure line:
'./configure' '--with-mysql' '--with-apxs=/server/www/apache-1.3.26/bin/apxs' '--with-imap' '--with-imap-ssl' '--enable-track-vars' '--enable-dbase' '--with-pgsql=/server/postgresql'
over an apache 1.3.26.
Any help will be very appreciated.
Thanks in advance.
---sram
"Don't listen to what I say; listen to what I mean!" --Feynman
Salvador Ramirez Flandes PROFC, Universidad de Concepcion, CHILE
http://www.profc.udec.cl/~sram mailto:sram
profc.udec.cl
attached mail follows:
How about just
print_r($_FILES);
Does that return anything?
---John Holmes...
----- Original Message -----
From: "Salvador Ramirez" <sram
profc.udec.CL>
To: "PHP General" <php-general
lists.php.net>
Sent: Monday, November 04, 2002 3:50 PM
Subject: [PHP] $_FILES
> Hi,
>
> I hope somebody could help me with a problem I have with the $_FILES
> variable.
>
> I'm trying to make a PHP script which could have access to an uploaded
> remote file. The piece of HTML is:
>
> ----------------
> <html>
> <body>
>
> <form action="ll.php" method="post" enctype="multipart/form-data">
> <input name="userfile" size=48 type="file">
> <input type="submit" name="attach" value="Add"><br>
> </form>
>
> </body>
> </html>
> ----------------
>
> and the ll.php script is:
>
> ----------------
> <?php
> printf("file=(%s)<br>", $_FILES['userfile']['name']);
> print_r(array_values($_FILES));
> phpinfo();
> ?>
> ----------------
>
> but the variable $_FILES is not set at all, because the printf doesn't
> print the name of the uploaded file nor the second line, the print_r()
> print anything for that array variable.
> So the question is: what could be happening that the variable $_FILES is
> not set?
>
> The phpinfo() function returns PHP 4.2.3, and I compiled it with the
> following configure line:
>
> './configure' '--with-mysql'
> '--with-apxs=/server/www/apache-1.3.26/bin/apxs' '--with-imap'
> '--with-imap-ssl' '--enable-track-vars' '--enable-dbase'
> '--with-pgsql=/server/postgresql'
>
> over an apache 1.3.26.
>
> Any help will be very appreciated.
>
> Thanks in advance.
>
> ---sram
> "Don't listen to what I say; listen to what I mean!" --Feynman
> Salvador Ramirez Flandes PROFC, Universidad de Concepcion, CHILE
> http://www.profc.udec.cl/~sram mailto:sram
profc.udec.cl
>
>
>
> --
> PHP General Mailing List (http://www.php.net/)
> To unsubscribe, visit: http://www.php.net/unsub.php
>
attached mail follows:
On Mon, 4 Nov 2002, 1LT John W. Holmes wrote:
>How about just > >print_r($_FILES); > >Does that return anything?
It just return the same as before, i.e. "Array ( )"
---sram
>---John Holmes...
>
>----- Original Message -----
>From: "Salvador Ramirez" <sram
profc.udec.CL>
>To: "PHP General" <php-general
lists.php.net>
>Sent: Monday, November 04, 2002 3:50 PM
>Subject: [PHP] $_FILES
>
>
>> Hi,
>>
>> I hope somebody could help me with a problem I have with the $_FILES
>> variable.
>>
>> I'm trying to make a PHP script which could have access to an uploaded
>> remote file. The piece of HTML is:
>>
>> ----------------
>> <html>
>> <body>
>>
>> <form action="ll.php" method="post" enctype="multipart/form-data">
>> <input name="userfile" size=48 type="file">
>> <input type="submit" name="attach" value="Add"><br>
>> </form>
>>
>> </body>
>> </html>
>> ----------------
>>
>> and the ll.php script is:
>>
>> ----------------
>> <?php
>> printf("file=(%s)<br>", $_FILES['userfile']['name']);
>> print_r(array_values($_FILES));
>> phpinfo();
>> ?>
>> ----------------
>>
>> but the variable $_FILES is not set at all, because the printf doesn't
>> print the name of the uploaded file nor the second line, the print_r()
>> print anything for that array variable.
>> So the question is: what could be happening that the variable $_FILES is
>> not set?
>>
>> The phpinfo() function returns PHP 4.2.3, and I compiled it with the
>> following configure line:
>>
>> './configure' '--with-mysql'
>> '--with-apxs=/server/www/apache-1.3.26/bin/apxs' '--with-imap'
>> '--with-imap-ssl' '--enable-track-vars' '--enable-dbase'
>> '--with-pgsql=/server/postgresql'
>>
>> over an apache 1.3.26.
>>
>> Any help will be very appreciated.
>>
>> Thanks in advance.
>>
>> ---sram
>> "Don't listen to what I say; listen to what I mean!" --Feynman
>> Salvador Ramirez Flandes PROFC, Universidad de Concepcion, CHILE
>> http://www.profc.udec.cl/~sram mailto:sram
profc.udec.cl
>>
>>
>>
>> --
>> PHP General Mailing List (http://www.php.net/)
>> To unsubscribe, visit: http://www.php.net/unsub.php
>>
>
attached mail follows:
Do you have file uploads enabled in php.ini?
---John Holmes...
----- Original Message -----
From: "Salvador Ramirez" <sram
profc.udec.CL>
To: "1LT John W. Holmes" <holmes072000
charter.net>
Cc: "PHP General" <php-general
lists.php.net>
Sent: Monday, November 04, 2002 4:04 PM
Subject: Re: [PHP] $_FILES
> On Mon, 4 Nov 2002, 1LT John W. Holmes wrote:
>
> >How about just
> >
> >print_r($_FILES);
> >
> >Does that return anything?
>
> It just return the same as before, i.e. "Array ( )"
>
> ---sram
>
> >---John Holmes...
> >
> >----- Original Message -----
> >From: "Salvador Ramirez" <sram
profc.udec.CL>
> >To: "PHP General" <php-general
lists.php.net>
> >Sent: Monday, November 04, 2002 3:50 PM
> >Subject: [PHP] $_FILES
> >
> >
> >> Hi,
> >>
> >> I hope somebody could help me with a problem I have with the $_FILES
> >> variable.
> >>
> >> I'm trying to make a PHP script which could have access to an
uploaded
> >> remote file. The piece of HTML is:
> >>
> >> ----------------
> >> <html>
> >> <body>
> >>
> >> <form action="ll.php" method="post" enctype="multipart/form-data">
> >> <input name="userfile" size=48 type="file">
> >> <input type="submit" name="attach" value="Add"><br>
> >> </form>
> >>
> >> </body>
> >> </html>
> >> ----------------
> >>
> >> and the ll.php script is:
> >>
> >> ----------------
> >> <?php
> >> printf("file=(%s)<br>", $_FILES['userfile']['name']);
> >> print_r(array_values($_FILES));
> >> phpinfo();
> >> ?>
> >> ----------------
> >>
> >> but the variable $_FILES is not set at all, because the printf doesn't
> >> print the name of the uploaded file nor the second line, the print_r()
> >> print anything for that array variable.
> >> So the question is: what could be happening that the variable $_FILES
is
> >> not set?
> >>
> >> The phpinfo() function returns PHP 4.2.3, and I compiled it with the
> >> following configure line:
> >>
> >> './configure' '--with-mysql'
> >> '--with-apxs=/server/www/apache-1.3.26/bin/apxs' '--with-imap'
> >> '--with-imap-ssl' '--enable-track-vars' '--enable-dbase'
> >> '--with-pgsql=/server/postgresql'
> >>
> >> over an apache 1.3.26.
> >>
> >> Any help will be very appreciated.
> >>
> >> Thanks in advance.
> >>
> >> ---sram
> >> "Don't listen to what I say; listen to what I mean!" --Feynman
> >> Salvador Ramirez Flandes PROFC, Universidad de Concepcion, CHILE
> >> http://www.profc.udec.cl/~sram mailto:sram
profc.udec.cl
> >>
> >>
> >>
> >> --
> >> PHP General Mailing List (http://www.php.net/)
> >> To unsubscribe, visit: http://www.php.net/unsub.php
> >>
> >
>
attached mail follows:
On Mon, 4 Nov 2002, 1LT John W. Holmes wrote:
>Do you have file uploads enabled in php.ini?
No, sorry. I changed that and all worked fine.
I wonder why that is not mentioned on the section of uploads of the PHP documentation.
Thanks a lot.
---sram
>---John Holmes...
>
>----- Original Message -----
>From: "Salvador Ramirez" <sram
profc.udec.CL>
>To: "1LT John W. Holmes" <holmes072000
charter.net>
>Cc: "PHP General" <php-general
lists.php.net>
>Sent: Monday, November 04, 2002 4:04 PM
>Subject: Re: [PHP] $_FILES
>
>
>> On Mon, 4 Nov 2002, 1LT John W. Holmes wrote:
>>
>> >How about just
>> >
>> >print_r($_FILES);
>> >
>> >Does that return anything?
>>
>> It just return the same as before, i.e. "Array ( )"
>>
>> ---sram
>>
>> >---John Holmes...
>> >
>> >----- Original Message -----
>> >From: "Salvador Ramirez" <sram
profc.udec.CL>
>> >To: "PHP General" <php-general
lists.php.net>
>> >Sent: Monday, November 04, 2002 3:50 PM
>> >Subject: [PHP] $_FILES
>> >
>> >
>> >> Hi,
>> >>
>> >> I hope somebody could help me with a problem I have with the $_FILES
>> >> variable.
>> >>
>> >> I'm trying to make a PHP script which could have access to an
>uploaded
>> >> remote file. The piece of HTML is:
>> >>
>> >> ----------------
>> >> <html>
>> >> <body>
>> >>
>> >> <form action="ll.php" method="post" enctype="multipart/form-data">
>> >> <input name="userfile" size=48 type="file">
>> >> <input type="submit" name="attach" value="Add"><br>
>> >> </form>
>> >>
>> >> </body>
>> >> </html>
>> >> ----------------
>> >>
>> >> and the ll.php script is:
>> >>
>> >> ----------------
>> >> <?php
>> >> printf("file=(%s)<br>", $_FILES['userfile']['name']);
>> >> print_r(array_values($_FILES));
>> >> phpinfo();
>> >> ?>
>> >> ----------------
>> >>
>> >> but the variable $_FILES is not set at all, because the printf doesn't
>> >> print the name of the uploaded file nor the second line, the print_r()
>> >> print anything for that array variable.
>> >> So the question is: what could be happening that the variable $_FILES
>is
>> >> not set?
>> >>
>> >> The phpinfo() function returns PHP 4.2.3, and I compiled it with the
>> >> following configure line:
>> >>
>> >> './configure' '--with-mysql'
>> >> '--with-apxs=/server/www/apache-1.3.26/bin/apxs' '--with-imap'
>> >> '--with-imap-ssl' '--enable-track-vars' '--enable-dbase'
>> >> '--with-pgsql=/server/postgresql'
>> >>
>> >> over an apache 1.3.26.
>> >>
>> >> Any help will be very appreciated.
>> >>
>> >> Thanks in advance.
>> >>
>> >> ---sram
>> >> "Don't listen to what I say; listen to what I mean!" --Feynman
>> >> Salvador Ramirez Flandes PROFC, Universidad de Concepcion, CHILE
>> >> http://www.profc.udec.cl/~sram mailto:sram
profc.udec.cl
>> >>
>> >>
>> >>
>> >> --
>> >> PHP General Mailing List (http://www.php.net/)
>> >> To unsubscribe, visit: http://www.php.net/unsub.php
>> >>
>> >
>>
>
>
attached mail follows:
Hi there,
Just wondering if there is a maximum size to the sql that can be passed as a mysql_query, either from mysql itself or from the php side of things?
I ask only cause I have a limiting clause on my select and I have no idea how big it will grow and I would prefer to write it in such a way that I don't have to worry about it.
Thanks for any help
Kevin
attached mail follows:
> Just wondering if there is a maximum size to the sql that can be passed as a > mysql_query, either from mysql itself or from the php side of things? > > I ask only cause I have a limiting clause on my select and I have no idea how > big it will grow and I would prefer to write it in such a way that I don't > have to worry about it.
There's no practical limit, I imagine. If you're talking MB size queries, then you may run into some kind of problem, but then if you've got query strings that size, you've got other issues to worry about.
---John Holmes..
attached mail follows:
What you describe is what SHOULD happen and does on that web site, that does NOT happen on my web site, with the exact same code I posted in the original message.
So, the question remains, what would cause the SID to be blank every other click?
Yes, I have also used Netscape on Linux to connect to the same machine without cookies, same result.
Steve
Jason Wong wrote:
> On Monday 04 November 2002 10:24, Steve Fatula wrote: > >>If you want to see a site where the small program works (and be SURE and >>turn cookies off), click here: >>http://www.thewebmakerscorner.com/snapmods_new/default_test.php >> >> >>So, can anyone tell me why it does not work on MY site(s)? Any ideas? >>Surely this is a PHP configuration issue/bug perhaps? Logically, I don't >>see any settings that could possibly affect the outcome using this >> > > Have you tried any browsers other than IE 5.5? > > First time I go into that page, my URL shows this > > http://www.thewebmakerscorner.com/snapmods_new/default_test.php > > Clicking on the link appends the session id to the URL. As does clicking on > the link again (same session id). Ad infinitum. > > So basically it works? > >
attached mail follows:
To those of you that helped me with this problem I have spent time eliminating lines of code.. the problem was in the following line: if ($_SESSION["first_name"])
the line should be like this if (ISSET($_SESSION["first_name"]))
Seems like ISSET made a difference in eliminating warning: Cannot add header information. The code worked before but I guess it was broken once Global Vars were turned off in the resent version of PHP
Thank you to all the replies
Paul
attached mail follows:
> To those of you that helped me with this problem I have spent time > eliminating lines of code.. the problem was in the following line: > if ($_SESSION["first_name"]) > > the line should be like this > if (ISSET($_SESSION["first_name"]))
The change that would induce this error is likely to be related to error reporting. What you'll probably find if you delve into it is that in the first case above, if the var wasn't set there was an error notifying you of that. In the second case above, using isset() would avoid that error message being displayed.
The error you were having was because your code was displaying an error message to the browser which would automatically mean that something had been sent to the browser and it would no longer be possible to add header information.
If you couldn't see the error relating to checking the var it's likely something to do with display settings for your html - eg. displaying white text on a white background.
CYA, Dave
attached mail follows:
I have a site that uses PHP/MySQL authentication for one section and Apache/HTTP authentication for another. Eventually I would like to use only PHP and MySQL for authenticating users, but in the meantime, I have to use both.
First, users will log in to the main section of the site and I will use PHP session variables to maintain state for that section. What I would like to be able to do is allow users to click a link that would redirect them to the other section of the site and automatically log them in.
The section of the site that users will be redirected to uses .htaccess and .htpassword files to enforce HTTP authentication.
Is this possible? If so, how?
========================= http://www.pverskine.com/
_________________________________________________________________ Protect your PC - get McAfee.com VirusScan Online http://clinic.mcafee.com/clinic/ibuy/campaign.asp?cid=3963
attached mail follows:
Since I just finished a pretty major source overhaul of the cryptopp-php extension, I figured I should make a little announcement, as this is oh-so-exciting news.
Recently, Wei Dai released Crypto++ 5.0, which was pretty much a complete re-write of the public domain Crypto++ cryptography suite. In turn, I updated the cryptopp-php extension, hopefully for the better.
The changes to this version, 0.0.9, are numerous, but the highlights are...
- new padding schemes on block ciphers. In previous versions of cryptopp-php, you didn't get to choose your padding scheme -- you were stuck with whatever the default was for the block cipher mode. Now you can pick from PKCS#5, zeroes, one and zeroes or no padding at all. New functions to control this new ability were added: cryptopp_set_padding(), cryptopp_get_padding() and cryptopp_get_padding_name().
- keyed hash message authentication code algorithms were added. Basically, a HMAC is just a hash that uses a secret key. New HMAC algorithms include MD5-HMAC, RIPEMD-160-HMAC, etc. New functions to set HMAC keys were thusly added: cryptopp_set_hmac_key(), *get_hmac_key(), *set_hmac_key_length() and *get_hmac_key_length().
- a modified ARC4 algorithm was added.
- the MD4 hash algorithm was added, although it should only be used when you really, really need it, such as for compatbility with other programs, as it is known to be cryptographically weak.
- changes in the Crypto++ library itself have forced me to remove the Sapphire stream cipher and hash algorithms, but since I doubt they were used much, that shouldn't be much of a problem.
- everything is for the most part backwardly and forwardly compatible with previous versions of cryptopp-php, with exceptions being noted in the manual. The only real differences you need to worry about are the block cipher padding schemes you're using and the SKIPJACK changes and SAFER-* changes.
As always, cryptopp-php works on most UNIX-like systems as well as Microsoft Windows systems, and has been tested with Linux (kernel 2.4.18 and 2.4.9), Solaris 8 (SPARC) and Windows 2000 Professional. Source code and Windows DLLs are available under a BSD-like license at
http://www.tutorbuddy.com/software/
This version should be considered somewhat unstable, so if you're worried about that, use version 0.0.8. There are a few known bugs in Crypto++ 5.0 that have been fixed in CVS -- they shouldn't affect cryptopp-php in any way, but there may be bugs in my code that haven't been weeded out yet, as this version hasn't been tested and is a near-total re-write from 0.0.8.
Any bugs reports or comments would be appreciated.
J
attached mail follows:
Could someone suggest some php for randomly selecting a file from a directory and then displaying the contents of the file?
Thanks in advance!
attached mail follows:
Dump the files in the directory into an array, then randomly select on from that.
ROBERT MCPEAK wrote: > Could someone suggest some php for randomly selecting a file from a directory and then displaying the contents of the file? > > Thanks in advance! > >
attached mail follows:
Why don't you cope with opendir / readdir () and array_rand () I tried it and I look ok-
But, I wonder if there are noble another way to do it?
----- Original Message -----
From: "ROBERT MCPEAK" <RMCPEAK
jhuccp.org>
To: <php-general
lists.php.net>
Sent: Tuesday, November 05, 2002 8:40 AM
Subject: [PHP] randomly select file
Could someone suggest some php for randomly selecting a file from a directory and then displaying the contents of the file?
Thanks in advance!
-- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php
attached mail follows:
I have a small example of using Flash/PHP if anyone wants it..
Clint
attached mail follows:
Me :-) I wonder if you can post me these scripts
----- Original Message -----
From: "Clint Tredway" <ctredway
fishermenstudios.com>
To: <php-general
lists.php.net>
Sent: Tuesday, November 05, 2002 8:46 AM
Subject: [PHP] PHP/Flash
> I have a small example of using Flash/PHP if anyone wants it.. > > Clint > > > > -- > PHP General Mailing List (http://www.php.net/) > To unsubscribe, visit: http://www.php.net/unsub.php > >
attached mail follows:
hi everyone.
Who knows about to create a upload function to a ftp...
I have a server with many Web_Users, I know that we can create a command that make a upload field on each folder of the ftp... Is is a .upload file or a php script?
Please help!
Thanks!
attached mail follows:
Manual -> FTP Functions
Cyclone Médias wrote: > hi everyone. > > Who knows about to create a upload function to a ftp... > > I have a server with many Web_Users, I know that we can create a command > that make a upload field on each folder of the ftp... Is is a .upload file > or a php script? > > Please help! > > Thanks! > >
attached mail follows:
Hello,
I'm trying to compile PHP4.2.3 for Mac OSX 10.2 (Jaguar). Has anyone else had this problem (see below)?
#./configure --with-apxs=/usr/sbin/apxs #make
ld: multiple definitions of symbol _virtual_stat TSRM/.libs/libtsrm.al(tsrm_virtual_cwd.lo) definition of _virtual_stat in sectio n (__TEXT,__text) TSRM/.libs/libtsrm.al(tsrm_virtual_cwd.lo) definition of _virtual_stat in sectio n (__TEXT,__text) ld: multiple definitions of symbol _virtual_unlink TSRM/.libs/libtsrm.al(tsrm_virtual_cwd.lo) definition of _virtual_unlink in sect ion (__TEXT,__text) TSRM/.libs/libtsrm.al(tsrm_virtual_cwd.lo) definition of _virtual_unlink in sect ion (__TEXT,__text) ld: multiple definitions of symbol _virtual_utime TSRM/.libs/libtsrm.al(tsrm_virtual_cwd.lo) definition of _virtual_utime in secti on (__TEXT,__text) TSRM/.libs/libtsrm.al(tsrm_virtual_cwd.lo) definition of _virtual_utime in secti on (__TEXT,__text) /usr/bin/libtool: internal link edit command failed make[1]: *** [libphp4.la] Error 1 make: *** [all-recursive] Error 1
I have done this countless times on i386 boxes under RedHat and FreeBSD. Unfortunately, I have never encountered this problem before, as this is my first attempt on OSX.
Just FYI, before attempting to compile/install PHP, I successfully compiled/installed Apache 1.3.27, which seems to work as expected. I also upgraded to the latest Apple Developers Kit, and related update patches.
Any ideas?
Thanks,
Kris
attached mail follows:
Hello,
I'm trying to compile PHP4.2.3 for Mac OSX 10.2 (Jaguar). Has anyone else had this problem (see below)?
./configure --with-apxs=/usr/sbin/apxs make
ld: multiple definitions of symbol _virtual_stat TSRM/.libs/libtsrm.al(tsrm_virtual_cwd.lo) definition of _virtual_stat in sectio n (__TEXT,__text) TSRM/.libs/libtsrm.al(tsrm_virtual_cwd.lo) definition of _virtual_stat in sectio n (__TEXT,__text) ld: multiple definitions of symbol _virtual_unlink TSRM/.libs/libtsrm.al(tsrm_virtual_cwd.lo) definition of _virtual_unlink in sect ion (__TEXT,__text) TSRM/.libs/libtsrm.al(tsrm_virtual_cwd.lo) definition of _virtual_unlink in sect ion (__TEXT,__text) ld: multiple definitions of symbol _virtual_utime TSRM/.libs/libtsrm.al(tsrm_virtual_cwd.lo) definition of _virtual_utime in secti on (__TEXT,__text) TSRM/.libs/libtsrm.al(tsrm_virtual_cwd.lo) definition of _virtual_utime in secti on (__TEXT,__text) /usr/bin/libtool: internal link edit command failed make[1]: *** [libphp4.la] Error 1 make: *** [all-recursive] Error 1
Forgive my ignorance but HUH? WTF?
I have done this countless times on i386 boxes under RedHat and FreeBSD. Unfortunately, I have never encountered this problem before.
Just FYI, before attempting to compile/install PHP, I successfully compiled/installed Apache 1.3.27, which seems to work as expected. I also upgraded to the latest Apple Developers Kit, and related update patches.
Any ideas?
Thanks,
Kris
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]