Re: [PHP] how to provide download of files mow in documentroot

2010-03-28 Thread Devendra Jadhav
Then you can do file_get_contents within PHP. or any file handling mechanism. On Mon, Mar 29, 2010 at 11:49 AM, ebhakt wrote: > No i don't want to create any soft links > that primarily rejects all the benefits of putting a file outside of > document root > > i want some solution similar to pri

Re: [PHP] how to provide download of files mow in documentroot

2010-03-28 Thread ebhakt
No i don't want to create any soft links that primarily rejects all the benefits of putting a file outside of document root i want some solution similar to private file downloads provided by drupal' so that the php webserver provides the download and not apache in realtime On Mon, Mar 29, 2010

Re: [PHP] how to provide download of files mow in documentroot

2010-03-28 Thread Devendra Jadhav
Hey.. Try creating soft link to the destination folder from doc root. I haven't tried it but give it a try... On Mon, Mar 29, 2010 at 1:00 AM, ebhakt wrote: > Hi > i am writing a web application in php > this webapp primarily focuses on file uploads and downloads > the uploaded files will be s

Re: [PHP] Re: Allowing multiple, simultaneous, non-blocking queries.

2010-03-28 Thread Adam Richardson
Hi Nathan, By factoring each data providing source (which could even be a single sql > query) in to scripts of their own, with their own URIs - it allows you to > implement static caching of results via the web server on a case by case > basis. My web framework automatically builds in REST-ful c

Re: [PHP] Converting funky characters

2010-03-28 Thread Nilesh Govindarajan
On 03/29/2010 07:22 AM, solo hsi wrote: i think you just need function urldecode() On Mon, Mar 29, 2010 at 8:05 AM, Skip Evans wrote: Hey all, What's the best way to filter/convert characters that don't translate properly from say news stories to HTML? For example, I have a form that peo

Re: [PHP] Converting funky characters

2010-03-28 Thread solo hsi
i think you just need function urldecode() On Mon, Mar 29, 2010 at 8:05 AM, Skip Evans wrote: > Hey all, > > What's the best way to filter/convert characters that don't > translate properly from say news stories to HTML? > > For example, I have a form that people cut and paste the lead > in p

Re: [PHP] Re: Allowing multiple, simultaneous, non-blocking queries.

2010-03-28 Thread Nathan Rixham
Phpster wrote: > I am interested in how you are handling security in this process. How > are you managing sessions with the restful interface? This is the one > thing that really interests me with the whole restful approach. one doesn't do sessions with rest :) http://www.ics.uci.edu/~fielding/pu

Re: [PHP] Converting funky characters

2010-03-28 Thread Nilesh Govindarajan
On 03/29/2010 05:35 AM, Skip Evans wrote: Hey all, What's the best way to filter/convert characters that don't translate properly from say news stories to HTML? For example, I have a form that people cut and paste the lead in paragraph from news stories they want to link to from their sites to

Re: [PHP] Re: Allowing multiple, simultaneous, non-blocking queries.

2010-03-28 Thread Phpster
On Mar 28, 2010, at 2:45 PM, Nathan Rixham wrote: Adam Richardson wrote: "Threading" is only realistically needed when you have to get data from multiple sources; you may as well get it all in parallel rather than sequentially to limit the amount of time your application / script is sit

Re: [PHP] Please guide in selection of Framework: according to your experience

2010-03-28 Thread Vishal Rewari
Thank you, I will go forward with the way you guys suggested. See you around On Sat, Mar 27, 2010 at 4:54 PM, Andre Polykanine wrote: > Hello Vishal, > > Why don't you want to write raw code, without any frameworks?) It's > good for lots of objectives... > -- > With best regards from Ukraine,

[PHP] Converting funky characters

2010-03-28 Thread Skip Evans
Hey all, What's the best way to filter/convert characters that don't translate properly from say news stories to HTML? For example, I have a form that people cut and paste the lead in paragraph from news stories they want to link to from their sites to the original. And of course things like lon

[PHP] how to provide download of files mow in documentroot

2010-03-28 Thread ebhakt
Hi i am writing a web application in php this webapp primarily focuses on file uploads and downloads the uploaded files will be saved in a folder which is not in document root and my query is how will i be able to provide download to such files not located in document root via php -- Bhaskar Tiw

Re: [PHP] Re: Allowing multiple, simultaneous, non-blocking queries.

2010-03-28 Thread Nathan Rixham
Adam Richardson wrote: >> "Threading" is only realistically needed when you have to get data from > > multiple sources; you may as well get it all in parallel rather than > > sequentially to limit the amount of time your application / script is > > sitting stale and not doing any processing. >

Re: [PHP] Re: Web Design

2010-03-28 Thread Andre Polykanine
Hello Nathan, Parham and all, Actually, I confirm that you can code if you're blind. Parham, you have probably seen me on the other accessibility-related lists, so no need to say that I'

Re: [PHP] Re: Allowing multiple, simultaneous, non-blocking queries.

2010-03-28 Thread Adam Richardson
> > "Threading" is only realistically needed when you have to get data from multiple sources; you may as well get it all in parallel rather than sequentially to limit the amount of time your application / script is sitting stale and not doing any processing. > In the CLI you can leverage forki

[PHP] Re: Web Design

2010-03-28 Thread Nathan Rixham
Hi Parham, Long term, I would suggest viewing this as an ideal opportunity to move to strictly back end PHP only; thus negating and skirting around the visual issues; it is often more fun this way any way! Jobs such as web service integrations; payment service provider integrations and similar pr

Re: [PHP] Allowing multiple, simultaneous, non-blocking queries.

2010-03-28 Thread Per Jessen
Richard Quadling wrote: > Hi. > > As I understand things, one of the main issues in the "When will PHP > grow up" thread was the ability to issue multiple queries in parallel > via some sort of threading mechanism. > > Due to the complete overhaul required of the core and extensions to > support

Re: [PHP] bug tracking system

2010-03-28 Thread Nathan Rixham
shiplu wrote: > I want to add with Andre. > I am looking for a free hosted bug tracking solution. I can not afford > to host it in my web server. > So is there any free one?? > It should not be public. Only me and my clients will be able to see it. > > Thanks > yes, for all cases, commercial or

Re: [PHP] bug tracking system

2010-03-28 Thread shiplu
I want to add with Andre. I am looking for a free hosted bug tracking solution. I can not afford to host it in my web server. So is there any free one?? It should not be public. Only me and my clients will be able to see it. Thanks -- Shiplu Mokaddim My talks, http://talk.cmyweb.net Follow me, h

[PHP] Re: Allowing multiple, simultaneous, non-blocking queries.

2010-03-28 Thread Nathan Rixham
Richard Quadling wrote: > Hi. > > As I understand things, one of the main issues in the "When will PHP > grow up" thread was the ability to issue multiple queries in parallel > via some sort of threading mechanism. > > Due to the complete overhaul required of the core and extensions to > support

[PHP] Re: optimizing PHP for microseconds

2010-03-28 Thread Nathan Rixham
mngghh, okay, consider me baited. Daevid Vincent wrote: >> Per Jessen wrote: >>> Tommy Pham wrote: >>> (I remember a list member, not mentioning his name, does optimization of PHP coding for just microseconds. Do you think how much more he'd benefit from this?) >>> Anyone who optim

Re: [PHP] Server-side postscript-to-PDF on-the-fly conversion

2010-03-28 Thread Paul M Foster
On Sat, Mar 27, 2010 at 08:57:02PM +0100, Frank Arensmeier wrote: > > If your webserver runs on MacOSX, look out for a binary called > 'pstopdf'. From the man page: > > [...] > pstopdf is a tool to convert PostScript input data into a PDF > document. The input data may come from a file > o

Re: [PHP] bug tracking system

2010-03-28 Thread Nilesh Govindarajan
On 03/28/2010 07:25 PM, ebhakt wrote: Use drupal with the bug tracking system http://drupal.org/project/project_issue On Sun, Mar 28, 2010 at 7:22 PM, Nilesh Govindarajan mailto:li...@itech7.com>> wrote: On 03/28/2010 06:58 PM, Andre Polykanine wrot

Re: [PHP] bug tracking system

2010-03-28 Thread ebhakt
Use drupal with the bug tracking system http://drupal.org/project/project_issue On Sun, Mar 28, 2010 at 6:58 PM, Andre Polykanine wrote: > Hello everyone, > > Can you recommend a bug tracking system to be installed on the site? > Requirements: written in PHP (or maybe Perl); tickets system; e-ma

Re: [PHP] bug tracking system

2010-03-28 Thread Nathan Rixham
Ashley Sheridan wrote: > On Sun, 2010-03-28 at 16:28 +0300, Andre Polykanine wrote: >> >> Can you recommend a bug tracking system to be installed on the site? >> Requirements: written in PHP (or maybe Perl); tickets system; e-mail >> notifications. >> > > I think your best option is Mantis. It's

Re: [PHP] bug tracking system

2010-03-28 Thread Nilesh Govindarajan
On 03/28/2010 06:58 PM, Andre Polykanine wrote: Hello everyone, Can you recommend a bug tracking system to be installed on the site? Requirements: written in PHP (or maybe Perl); tickets system; e-mail notifications. http://www.google.co.in/search?aq=0&oq=php+bug&sourceid=chrome&ie=UTF-8&q=php

Re: [PHP] bug tracking system

2010-03-28 Thread Ashley Sheridan
On Sun, 2010-03-28 at 16:28 +0300, Andre Polykanine wrote: > Hello everyone, > > Can you recommend a bug tracking system to be installed on the site? > Requirements: written in PHP (or maybe Perl); tickets system; e-mail > notifications. > -- > With best regards from Ukraine, > Andre > Http://oi

[PHP] bug tracking system

2010-03-28 Thread Andre Polykanine
Hello everyone, Can you recommend a bug tracking system to be installed on the site? Requirements: written in PHP (or maybe Perl); tickets system; e-mail notifications. -- With best regards from Ukraine, Andre Http://oire.org/ - The Fantasy blogs of Oire Skype: Francophile; Wlm&MSN: arthaelon @ y