[PHP] Where Are Security Updates Announced?

2011-10-20 Thread Jon Watson
Hi All, I subscribed to this list thinking that this is where I would get security update notices, but this appears to be more of a general list. I've looked at all the lists available on PHP.net and I don't see one specifically about security. Can someone tell me which list I should sub to in

Re: [PHP] Where Are Security Updates Announced?

2011-10-20 Thread Jon Watson
Hi, On Thu, Oct 20, 2011 at 1:54 PM, Daniel Brown danbr...@php.net wrote: On Thu, Oct 20, 2011 at 08:02, Jon Watson jon.wat...@teamspace.ca wrote: Hi All, I subscribed to this list thinking that this is where I would get security update notices, but this appears to be more of a general

[PHP] Questions Regarding Recent Ubuntu PHP5 Security Announcement

2011-10-19 Thread Jon Watson
numbers so I am having trouble understanding what needs to be done. Thanks. -- Jon Watson Systems Engineer Teamspace Canada Suite 304 Bedford Tower 1496 Bedford Highway, Bedford, NS, Canada B4A 1E5 Phone: 902.444.3490 x | Fax: 902.444.3495 email: jon.wat...@teamspace.ca http

Re: [PHP] Questions Regarding Recent Ubuntu PHP5 Security Announcement

2011-10-19 Thread Jon Watson
On Wed, Oct 19, 2011 at 11:54 AM, Jim Lucas li...@cmsws.com wrote: On 10/19/2011 7:00 AM, Jon Watson wrote: Hello All, I am trying to make some sense of this PHP5 security vulnerability notice from 18 October 2011: http://comments.gmane.org/gmane.linux.ubuntu.security.announce/1478

[PHP] Pulling from Multiple Databases

2011-02-01 Thread Jon Hood
- what is the preferred method of pulling data from multiple locations in parallel? Thanks, Jon

Re: [PHP] Pulling from Multiple Databases

2011-02-01 Thread Jon Hood
if there's a reason). Most is financial data that needs ordered. I'm going to explore the pcntl_fork option some more... Thanks! Jon

Re: [PHP] Pulling from Multiple Databases

2011-02-01 Thread Jon Hood
Bah, forgot to reply-all On Tue, Feb 1, 2011 at 11:59 AM, Jon Hood squink...@gmail.com wrote: Using pcntl_fork mostly accomplished what I wanted (I had to go back and create the actual connection in each of the forked processes, otherwise, the first process that ended would destroy

[PHP] Building SoapClient as an extension

2010-09-20 Thread Jon Drukman
Is it possible to build SoapClient as a loadable extension? For various reasons, I don't want to have to recompile PHP from scratch. It would be much simpler to just distribute another .so and .ini file. How would I do that, if it's possible? -jsd- -- PHP General Mailing List

[PHP] Re: Building SoapClient as an extension

2010-09-20 Thread Jon Drukman
Phpster phpster at gmail.com writes: It's already done http://wso2.com/products/web-services-framework/php/ I don't know what that has to do with what I asked. I found the answer on my own: ./configure --enable-soap=shared Produces a modules/soap.so file that can be loaded in to php

RE: [PHP] Dear Lazy Web: Pseudo Randomisation Strategies on Listing Websites

2010-08-20 Thread Jon Haworth
randomness to the client (OK, see how you're in ninety-third place today? Well, check again tomorrow and you should be somewhere else on the list). Hopefully food for thought anyway. Cheers Jon -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] Text editor

2010-07-27 Thread Jon Haworth
Hi Jordan, Do you somebody know some simple text editor with buttons for bold italic etc. TinyMCE is worth a look: http://tinymce.moxiecode.com/ HTH Jon -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] mysql cache query as xml

2009-07-10 Thread Jon Tamayo
On Fri, 10 Jul 2009 13:29:31 -0400 Bastien Koert phps...@gmail.com wrote: On Fri, Jul 10, 2009 at 1:23 PM, workerho...@studysite.euworkerho...@studysite.eu wrote: hmm, the infrastructure ist good, this is just this query so to solve my problem i could run mysql on the application server

[PHP] Encoding problems on IIS7 + FastCGI on windows server 2008

2009-07-02 Thread Jon Lau
Hi, The php scripts works OK on windows 2000 server ( it supports chinese, english japanese - UTF-8 encoding) but it shows ??? ( non-english chars ) when copied to IIS7 + Fastcgi on windows 2008. Is there some settings to change in php.ini ? Regards, Jon Lau -- PHP General Mailing List

[PHP] Re: header modify errors

2008-12-15 Thread Jon Drukman
Terion Miller wrote: *Warning*: Cannot modify header information - headers already sent by (output started at C:\Inetpub\Xampp\htdocs\SNLeader\WOSystem\Welcome.php:31) in *C:\Inetpub\Xampp\htdocs\SNLeader\WOSystem\inc\dbconn_openTest.php* on line *3* Line 32-36 are: ?php If

[PHP] Making array to string

2008-09-17 Thread Hunt Jon
Hi, I'm new to PHP. I have an array that I would like to convert into a string. For example, I have array( 0 = Good morning, 1 = Good afternoon, 2 = Good evening, 3 = Good night ); Now I would like to convert the array to something like: Good morning Good afternoon Good evening Good night.

Re: [PHP] Making array to string

2008-09-17 Thread Hunt Jon
Wow! Thanks all. It seems `implode` is what I wanted. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: Incrementing variables based on database data

2008-08-12 Thread Jon Drukman
Vinny Gullotta wrote: Well, what I need to be able to do is then take the numbers of each count and figure out which is used the most. We use this database to log actions taken on servers in our network. What my boss wants me to come up with is a list of which commands are issued the most,

[PHP] Re: Execute command line as a different user

2008-07-01 Thread Jon Drukman
Matt Palermo wrote: I'm using the following command and I'm not getting any feedback: exec(echo 'adminPass' | sudo -u adminAccount -S whoami, $f, $r); Both $f and $r don't contain any data. This leads me to believe that the command is not being run for whatever reason. Is there something

[PHP] Re: V4 Vs V5 Issue

2008-07-01 Thread Jon Drukman
Neil wrote: Hi Thanks I have tested the path, that works fine. I set up a dummy file on the same path just to check that, it found that and printed out some echo'd text from that file. I can see the content of core_js.php file in the the IE view source view. debugging javascript in IE

[PHP] Re: class as default property

2008-06-23 Thread Jon Drukman
Chetan Rane wrote: But this does not work: ?php class Foo { } class Bar { function __construct() { public $f = new Foo(); } } ? do this: ?php class Foo { } class Bar { public $f; function __construct() { $this-f = new Foo(); } } $x =

[PHP] Re: PHP and Apache

2008-06-23 Thread Jon Drukman
R B wrote: Hello, I´m developing a PHP system that needs one of these lines in the .htaccess, depending of the server configuration: AddHandler application/x-httpd-php .xyz or AddHandler application/x-httpd-php4 .xyz or AddHandler application/x-httpd-php5 .xyz How can i detect on the fly

Re: [PHP] Re: Search like php.net's URL thingy

2008-06-18 Thread Jon Drukman
On Wed, Jun 18, 2008 at 9:19 AM, Nate Tallman [EMAIL PROTECTED] wrote: Not to beat a dead horse, but why would you *not* want to preserve the 404? If it's a bad url anyways, you probably *want* to return a 404 (albeit prettier) and you probably *don't* want search engines indexing it. the

[PHP] Re: Search like php.net's URL thingy

2008-06-17 Thread Jon Drukman
Ryan S wrote: Hey! Thanks for replying. Digging a bit more i found IfModule mod_rewrite.c RewriteEngine On RewriteRule ^([a-z][0-9][A-Z][aA0-zZ0])$ jj.php?show=$1 /IfModule But it does not work :( do you see any fault with the above? this is an apache issue, not a php issue, so you'll

[PHP] Re: Search like php.net's URL thingy

2008-06-17 Thread Jon Drukman
Nate Tallman wrote: Why is an ErrorDocument insufficient or not the elegant way? It accomplishes the goal in a clean way, no? It's *WRONG*. ErrorDocument still preserves the 404 error code, it just gives it a prettier face. If the page really is there, returning a 404 for it is not

[PHP] Re: Password Protecting a page and email notification

2008-06-17 Thread Jon Drukman
R.C. wrote: I'm going to ask you PHP gurus if someone can give me a hand in trying to get this resolved. I'm fairly new to PHP and learning as I go. I've got two page login.php and video.php. Video.php is supposed to be protected i.e. if someone clicks on the direct link or brings up the page

Re: [PHP] the Y2K38 BUG

2008-05-07 Thread Jon L.
Another possibility... Port the Date object implementation from ECMA/Javascript. It has a range of +/-8.64e15, or Tue, 20 Apr -271821 00:00:00 GMT to Sat, 13 Sep 275760 00:00:00 GMT. You know...just to have a little extra time to find something else. ;) - Jon L. On Wed, May 7, 2008 at 12:56 AM

Re: [PHP] Regex to catch ps (weird result)

2008-05-07 Thread Jon L.
') s = treat as single line - Jon L. On Wed, May 7, 2008 at 1:51 PM, Ryan S [EMAIL PROTECTED] wrote: clip http://www.ezee.se/tests/para_regex2.php.txt Yep, sorry... Just add the s preg_match_all('|p[^]*(.*)/p|Uis', $myText, $myArray); /clip Swett! It works! If you _do get time_

Re: [PHP] web based chat app

2008-05-04 Thread Jon L.
up, since questions about using Jabber in PHP generally belong on their JDev list. - Jon L. On Sun, May 4, 2008 at 12:46 PM, Richard Heyes [EMAIL PROTECTED] wrote: well, good example. but, it is not very convenient. i saw the code, it used iframe and refreshing the page using meta tags

Re: [PHP] Any Running Simple Ajax Sample for Php

2008-05-02 Thread Jon L.
); creditsCheck(pe); // first check }); /script /body /html - Jon L. On Fri, May 2, 2008 at 4:13 AM, Heysem KAYA [EMAIL PROTECTED] wrote: Hi, I would like to check each minute whether the user credit is finished and update the relevant place on page. So I have downloaded however

Re: [PHP] Question About PHP Includes

2008-04-03 Thread Jon Wynacht
Whoopssorry abut the reply ;-( Thanks for the advice...I'll start making the changes in the path. Cheers, Jon On Apr 3, 2008, at 8:56 AM, Daniel Brown wrote: On Thu, Apr 3, 2008 at 11:42 AM, Jon Wynacht [EMAIL PROTECTED] wrote: Hi Dan, I just tried that and didn't see any errors

[PHP] Simple RegEx to pull out content between 2 markers

2008-03-29 Thread Jon Bennett
the contents of left, right and main individually so I can place them in separate form fields. Any help greatly appreciated. I'm certain this is a cinch for people who use regex often. Thanks, Jon -- jon bennett w: http://www.jben.net/ iChat (AIM): jbendotnet Skype: jon-bennett -- PHP General

[PHP] One more data formatting question

2007-11-29 Thread Jon Westcot
wrapping my head around them at this early hour. Any help you all can provide will be extremely appreciated! Thanks, Jon

Re: [PHP] One more data formatting question [SOLVED]

2007-11-29 Thread Jon Westcot
Hi: Thanks for the answer! That worked exactly as I needed it to work! Jon - Original Message - From: T.Lensselink [EMAIL PROTECTED] To: Jon Westcot [EMAIL PROTECTED] Cc: PHP General php-general@lists.php.net Sent: Thursday, November 29, 2007 8:17 AM Subject: Re: [PHP] One

[PHP] Quick question on data formatting

2007-11-28 Thread Jon Westcot
that there's some technique -- or possibly a deeply buried function -- available to me now that would be faster and easier to implement. Any help you can provide will, as always, be greatly appreciated! Thanks, Jon

Re: [PHP] Quick question on data formatting [SOLVED]

2007-11-28 Thread Jon Westcot
Thanks, Rob! I can see that it's going to be important for me to get familiar with the POSIX regular expressions. Jon - Original Message - On Wed, 2007-11-28 at 22:19 -0700, Jon Westcot wrote: Hi all: Since I'm relatively new to PHP, I'm not familiar with all of the shortcuts

Re: [PHP] Performance question for table updating (SOLVED)

2007-11-24 Thread Jon Westcot
Hi Rob, et al.: - Original Message - From: Andrés Robinet [EMAIL PROTECTED] -Original Message- From: Jon Westcot [mailto:[EMAIL PROTECTED] :: gigantic snip here:: So, long story short (oops -- too late!), what's the concensus among the learned assembly here

[PHP] Performance question for table updating

2007-11-23 Thread Jon Westcot
regardless of the fact that maybe only one or two out of 75 or more fields changed versus testing each one of those 75 fields to try and figure out which ones actually changed and then only update those? I look forward to reading all of your thoughts. Sincerely, Jon

[PHP] Looking for a navigation recommendation

2007-11-17 Thread Jon Westcot
for a similar page I could view and learn from? Thanks so much for any help you can send my way. Jon

Re: [PHP] Looking for a navigation recommendation

2007-11-17 Thread Jon Westcot
a recommendation for a similar page I could view and learn from? Thanks so much for any help you can send my way. Jon Jon: Do you mean something like this: http://webbytedd.com/bbb/proof Please note the page thing at the bottom. If so, I'll work up a demo for you. Cheers

Re: [PHP] Looking for a navigation recommendation (SOLVED)

2007-11-17 Thread Jon Westcot
Hi Tedd: YES! Exactly! Something like that would be very nice to have. MUCH appreciated! Jon Jon: Here it is: http://webbytedd.com/bbb/paging I'm assuming that you know how to establish communication with your database; how to set up your database; and how

[PHP] I need help handling form posting

2007-11-15 Thread Jon Westcot
not thinking clearly, and I've been doing data conversions all day, which is a sure-fire way to get me emulating some Romero zombies. Any help you can spare will be greatly appreciated. Jon

Re: [PHP] Newbie question - current date - time

2007-11-14 Thread Jon Westcot
to h:i:s -- the m in question related to the month in the date, not minutes in the time. And thanks to everyone for being so willing to help and generous with their time. I really appreciate it! Jon -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http

Re: [PHP] Problem retrieving $_POST values

2007-11-13 Thread Jon Westcot
! Jon

Re: [PHP] Problem retrieving $_POST values

2007-11-13 Thread Jon Westcot
as deadly to the output. Thanks for the great tips! Jon -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Quick questions -- how do I place the cursor (i.e., set focus) to a field on page load?

2007-11-13 Thread Jon Westcot
, how are these other pages doing this? Knowing how to move from page to page this way would really be helpful. Thanks so much. Jon

Re: [PHP] Quick questions -- how do I place the cursor (i.e., set focus) to a field on page load?

2007-11-13 Thread Jon Westcot
for me. Do I need to change any of the code you provided or should it work as you wrote it? Thanks, though, for the code snippet. I'll look up its pieces to see if I can figure out what isn't working for me. Jon -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit

Re: [PHP] Quick questions -- how do I place the cursor (i.e., set focus) to a field on page load?

2007-11-13 Thread Jon Westcot
Hi Mike, Chris, et al.: Thanks for the info. I'm not certain if I'll be needing jquery, or what benefits it might afford me with my meager little project, but I will check it out. In the meantime, Chris's snippet worked like a charm! Thanks! Jon -- PHP General Mailing List (http

Re: [PHP] Quick questions -- how do I place the cursor (i.e., set focus) to a field on page load?

2007-11-13 Thread Jon Westcot
guess these will help explain things. Thanks. Greatly appreciated! Jon -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Problem retrieving $_POST values

2007-11-12 Thread Jon Westcot
a syntax error exists if one does instead of just giving me a blank page? Is there some (free g) way to test a php script outside of a web page? Thanks! Jon

[PHP] What to do when flush() doesn't?

2007-11-11 Thread Jon Westcot
mollification? Thanks, Jon

Re: [PHP] More info on timeout problem, with code

2007-11-06 Thread Jon Westcot
under 30,000. When I don't build the $insert_query string, I am able to read through the CSV file completely. As odd as this sounds, should I put in some type of delay? Could the system be thinking it's getting flooded by all of the inserts? Jon -- PHP General Mailing List (http

Re: [PHP] More info on timeout problem, with code

2007-11-06 Thread Jon Westcot
something like usleep(15000), I seem to be able to process more records than when I don't have it at all. ::shrug:: Just clutching at straws. Thanks again for your comments. I appreciate them all! Jon -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http

Re: [PHP] Looking for ways to prevent timeout

2007-11-05 Thread Jon Westcot
Hi Nathan: No, I'm not familiar with Ajax. Where can I read up on it? More important, how can I find out if Ajax is implemented on the server? Or is it something I can add myself? Thanks again, Jon - Original Message - From: Nathan Nobbe [EMAIL PROTECTED] To: Jon

Re: [PHP] Looking for ways to prevent timeout

2007-11-05 Thread Jon Westcot
, say every 100 records? I'm really struggling with this concept here, and I appreciate the help that everyone is giving me! Jon - Original Message - From: Jochem Maas [EMAIL PROTECTED] To: Jon Westcot [EMAIL PROTECTED] Cc: PHP General php-general@lists.php.net Sent: Sunday, November

[PHP] More info on timeout problem

2007-11-05 Thread Jon Westcot
! And please don't argue over best ways to solve my problem -- ALL suggestions are welcome! (Even if I don't know thing one about CLI or even how to access it. g) Jon

Re: [PHP] More info on timeout problem

2007-11-05 Thread Jon Westcot
! Jon -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] More info on timeout problem

2007-11-05 Thread Jon Westcot
instead; at least I seem to have some control over that file. I'm really starting to hate shared servers. Jon - Original Message - From: Wolf [EMAIL PROTECTED] To: Jon Westcot [EMAIL PROTECTED] Cc: PHP General php-general@lists.php.net Sent: Monday, November 05, 2007 2:20 PM

Re: [PHP] More info on timeout problem

2007-11-05 Thread Jon Westcot
(or at least I haven't seen the pattern yet), and that just makes me ill. Jon -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] More info on timeout problem

2007-11-05 Thread Jon Westcot
. Any ideas on how to find out the value currently set for this directive? Or how I can override it? Can I override it within my own .htaccess file? Thanks for the suggestion! Jon -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] More info on timeout problem, with code

2007-11-05 Thread Jon Westcot
Hi all: As requested, here's the code: ?php if(isset($_POST['process'])){ $old_session_gc_maxlifetime = ; $old_max_execution_time = ; $old_max_input_time = ; $old_session_gc_maxlifetime = ini_set(session.gc_maxlifetime,1800); $old_max_execution_time =

[PHP] How do I specify a local file for fopen()?

2007-11-04 Thread Jon Westcot
, Jon

[PHP] Question about php.ini file

2007-11-04 Thread Jon Westcot
max_execution_time max_input_time If anyone knows of upper limits for these, I'd appreciate learning about them. As always, any help you can send my way will be greatly appreciated! Thanks, Jon

Re: [PHP] Question about php.ini file

2007-11-04 Thread Jon Westcot
trying to increase this size, not decrease it. Could it be the line-ending characters that are causing the problem? Could PHP be seeing the new file but not realizing how to process it, which would cause the values to flop over to their defaults? Thanks, Jon - Original Message

Re: [PHP] Question about php.ini file

2007-11-04 Thread Jon Westcot
Hi Nathan: I'm not certain if I have all of the items you've mentioned, but I'll look into it. And thanks for the link; I'll check that out, too. Jon - Original Message - From: Nathan Nobbe To: Jon Westcot Cc: PHP General Sent: Sunday, November 04, 2007 5:05 PM Subject: Re

[PHP] Looking for ways to prevent timeout

2007-11-04 Thread Jon Westcot
! Jon

Re: [PHP] Question about php.ini file

2007-11-04 Thread Jon Westcot
to place in the full value? Thanks again; this solution may be exactly what we need! Jon - Original Message - From: Nathan Nobbe To: Jon Westcot Cc: PHP General Sent: Sunday, November 04, 2007 5:05 PM Subject: Re: [PHP] Question about php.ini file On 11/4/07, Jon Westcot

[PHP] Can a PHP script process a file on a remote computer?

2007-10-24 Thread Jon Westcot
will be GREATLY appreciated! Thanks, Jon

Re: [PHP] Can a PHP script process a file on a remote computer?

2007-10-24 Thread Jon Westcot
Thanks, Wolf. I'm going to have to do a lot of long processes -- uploads, queries, and the like -- and I appreciate knowing that I can adjust that. Now if I can just find the PHP.INI file (Stupid GoDaddy-shared-domains; can't find anything on 'em.) Jon - Original Message - From

Re: [PHP] Can a PHP script process a file on a remote computer?

2007-10-24 Thread Jon Westcot
to it? Also, can I adjust the allow_url_fopen setting from within a PHP script, or do I need to manually set it in the PHP.INI file? The server I'm using -- not my own; this is for a friend -- is a shared server with GoDaddy and they make it so incredibly hard to find anything. Thanks! Jon

Re: [PHP] Can a PHP script process a file on a remote computer?

2007-10-24 Thread Jon Westcot
and it appears that the allow_url_fopen setting is set to On, which I take is a good thing. How, then, do I specify the filename at the server so that it points back to the file that is on my computer (or whatever computer is trying to initiate the process)? Thanks again for your help, Jon

Re: [PHP] Need help adding dBase support to PHP

2007-10-12 Thread Jon Westcot
indicated any dBase settings whatsoever. I'm fearing that I'm going to have to find some other way to handle the extraction of data from DBF files if I can't get this to work. Thanks again for your help. Jon - Original Message - From: Nathan Nobbe To: Jon Westcot Cc: PHP

Re: [PHP] Need help adding dBase support to PHP

2007-10-12 Thread Jon Westcot
the help you've given. I'll just have to wait and see if the person who owns the site is able to get anywhere with the GoDaddy tech support. Thanks again, Jon - Original Message - From: Nathan Nobbe [EMAIL PROTECTED] To: Jon Westcot [EMAIL PROTECTED] Cc: PHP General php-general

[PHP] Need help adding dBase support to PHP

2007-10-11 Thread Jon Westcot
out there help me out? All help will be greatly appreciated! Thanks, Jon

Re: [PHP] Need help adding dBase support to PHP

2007-10-11 Thread Jon Westcot
Hi Nathan: I have no idea. Where would I look to find this out? Will phpinfo() give me this? And, if so, where would I find it? Jon - Original Message - From: Nathan Nobbe To: Jon Westcot Cc: PHP General Sent: Thursday, October 11, 2007 5:00 PM Subject: Re: [PHP] Need

Re: [PHP] Need help adding dBase support to PHP

2007-10-11 Thread Jon Westcot
Hi again, Nathan: I'm not certain how to get to a command line. The server is a shared server provided by GoDaddy, if that's any help. They told me that I needed to change something in the .htaccess file, but that didn't sound right at all. Thanks again for your help. Jon

Re: [PHP] Need help adding dBase support to PHP

2007-10-11 Thread Jon Westcot
Hi again: Thanks for the info. From what I can see, GoDaddy does NOT provide access to ssh. Any other thoughts? Or is there some way to tell me, in general terms, how to configure PHP to allow the dbase functions to be used? Jon - Original Message - From: Nathan Nobbe

Re: [PHP] Alternate Colors in Rows

2007-10-03 Thread Jon Anderson
Steve Marquez wrote: I am attempting to alternate the colors of the container DIV. Anyone know how to do this? I've used variants of this: ?php while ($condition): ? div style=background-color: #?= ($i++%2) ? 'ff' : 'ee' ?; ?php endwhile ? jon -- PHP General Mailing List (http

Re: [PHP] Secure Image Storage

2007-10-01 Thread Jon Anderson
, which you can't do. You need to link to the image (which may be an image fetcher script), for example: img src=image.php?img=123456 / And have a corresponding image.php script that does the header and binary output. jon -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit

Re: [PHP] Strategy for Secure File Storage

2007-09-24 Thread Jon Anderson
make sure that the /path/to/secure/ (as in the example above) is not readable by web users by some means. jon -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] PHP 5.2.3 - Segmentation fault (core dumped)

2007-09-12 Thread Jon Anderson
if it was built as a FreeBSD port - they should probably know that their default port builds are segfaulting. I think Stut's advice for troubleshooting is a good path to take as well. jon -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] UTF-8 support

2007-08-03 Thread Jon Anderson
pasted into a string, and it did exactly what I'd expect. jon -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Premature Ajax-ulation

2007-08-03 Thread Jon Anderson
framework users beware! jon -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Strategy when working with designer(s)?

2007-07-23 Thread Jon Anderson
don't like the work the designer has done, you can hire another and plug-in different style sheets. Depending on the calibre of designer, I think that integration may be a bit of a headache in the end though. jon -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http

Re: [PHP] Re: PHP Brain Teasers

2007-07-12 Thread Jon Anderson
it is. :-) jon -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] how PHP is batter?

2007-07-03 Thread Jon Anderson
: http://msdn.microsoft.com/vstudio/express/support/faq/ *4.**Can I use Express Editions for commercial use?* Yes, there are no licensing restrictions for applications built using the Express Editions. jon -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http

Re: [PHP] A Guide to running Apache 2, PHP 4 PHP 5 on Windows XP

2007-05-17 Thread Jon Anderson
environment. Argumentum ad populum doesn't apply in the usage-for-development case. It's not asking If everyone else jumped off a bridge would you jump too? It's asking If everyone else jumped off a bridge, would you design your bridge with a soft fluffy landing spot? jon -- PHP General Mailing

Re: [PHP] Blocking the direct download of a file

2007-05-07 Thread Jon Anderson
'); readfile('/path/to/real/jarfile.jar'); exit(0); } There are probably lots of other ways to do that kind of thing. jon -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Blocking the direct download of a file

2007-05-07 Thread Jon Anderson
Greg Donald wrote: $_SERVER['HTTP_REFERER'] is unreliable. http://us2.php.net/manual/en/reserved.variables.php#reserved.variables.server So? In the context, I think the only thing that matters is that other people don't link to his jar file from other websites. jon -- PHP General

Re: [PHP] Blocking the direct download of a file

2007-05-07 Thread Jon Anderson
. If the browser doesn't support it, then it works anyway. jon -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] sorting multi array

2007-04-25 Thread Jon Bennett
/38) [quantity] = 1 ) [2552] = Array ( [name] = Havaianas Flash White [size] = 5 (37/38) [quantity] = 1 ) ) I need to keep the indexes if poss. Many thanks, jon -- jon bennett t: +44 (0) 1225 341 039 w: http://www.jben.net

Re: [PHP] Keep-Alive problem

2007-03-23 Thread Jon Anderson
() or similar. *I think there is no php functions/way to do so, so isn't it a bug? (missing important feature). IMO, it's expected behavior. jon -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Re: CONTENT-type for sending HTML attachments

2007-03-20 Thread Jon Anderson
application/octet-stream for the content type - mail readers should treat them as binary. Whatever mime class you're using should hopefully take care of any encoding that may or may not be necessary. jon -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net

[PHP] APC errors - realpath failed to canonicalize

2007-03-16 Thread Jon Drukman
I've been trying to smoke out some problems with APC under high load. We're using PHP 4.4.6 and APC 3.0.13. We are finding loads of this in our error log: realpath failed to canonicalize PEAR.php - bailing I know APC prefers you to use absolute paths but lots of PEAR modules just do

Re: [PHP] different and logic between PHP4 and PHP5

2007-03-13 Thread Jon Anderson
is what you want according to the above paragraph? jon -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Back to security

2007-03-13 Thread Jon Anderson
per vhost. :-) jon -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Launch a seperate process

2007-03-06 Thread Jon Anderson
request from PHP. You could likely also do it with JavaScript/AJAX. There are probably lots of other ways, in fact there may have been a discussion here some time ago about it though I don't remember the outcome. jon -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit

Re: [PHP] operational musings

2007-02-27 Thread Jon Anderson
for the store_xyz database(s). Network disconnect? No problem! Network reconnect? Easy! In-store machine failure? No problem! Just update the tables from the central master! Work? Almost none! And since this is a PHP list... ?= 'jon' ? Jay Blanchard wrote: Howdy cats and kittens! I had an interesting

Re: [PHP] can this be fone with PHP?

2007-02-22 Thread Jon Anderson
/ref.pdf.php jon -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] php and .net webservice

2007-02-21 Thread Jon Anderson
structure.) jon -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] PDO database drivers

2007-02-20 Thread Jon Anderson
on installing it, and there is no configure script. Why use pecl? It's built-in to PHP. jon -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

  1   2   3   4   5   6   7   8   9   10   >