Re: [nyphp-talk] Designer Advice

2009-07-22 Thread Eddie Drapkin
On Thu, Jul 23, 2009 at 1:41 AM, Justin Dearing wrote: > Hi, > > I've only ever worked with a designer once, and all he gave me was > photoshop files that I used as references, and some flash stuff for > this weird flash heavy site. However, I was thinking about a designer > for my three websites I

[nyphp-talk] Designer Advice

2009-07-22 Thread Justin Dearing
Hi, I've only ever worked with a designer once, and all he gave me was photoshop files that I used as references, and some flash stuff for this weird flash heavy site. However, I was thinking about a designer for my three websites I just launched, lmsotfy.com, lmsutfy.com and lmsftfy.com. Since I

Re: [nyphp-talk] JSON and MVC

2009-07-22 Thread Tim Lieberman
On Jul 22, 2009, at 1:23 PM, Mitch Pirtle wrote: Agreed - and Joomla does it by allowing you to assign the view as the document type. For example, you can create different views for html, rss, json output. As well, you can just output directly from the controller and exit. Been too busy with wo

Re: [nyphp-talk] JSON and MVC

2009-07-22 Thread Brian D.
> Time for another framework folks :) This technically is not a framework, but it's interesting: http://www.persvr.org/ - Brian D. realm3 web applications [realm3.com] Information architecture, application development. phone: (917) 512-3594 fax: (440) 744-3559 On Mon, Jul 20, 2009 at 8:21 AM

Re: [nyphp-talk] JSON and MVC

2009-07-22 Thread y2rob
i believe this can be done with codeigniter and kohana (it's been a while since i've done this, fyi), but the view is set with the associated data from the called controller method, you probably could leave the set view out and set a header for this call. i hope this makes sense, if not i can c

Re: [nyphp-talk] PHP Fileupload problem

2009-07-22 Thread Jeff Siegel
Tom (et al.), The client could NOT upload a 3.8meg file to stashbox. So...we're investigating their connectivity issues. Thank you and everyone on the list for your suggestions. Jeff From: Tom Sartain To: NYPHP Talk Sent: Wednesday, July 22, 2009 2:00:25 P

Re: [nyphp-talk] PHP Fileupload problem

2009-07-22 Thread Tom Sartain
On Wed, Jul 22, 2009 at 1:48 PM, Jeff Siegel wrote: > Tom, > > We thought it might be a file issue...however...I can upload the very same > file as can the consultant. Further, we are running the code on two > completely different servers (from two completely different hosting > companies). Again

Re: [nyphp-talk] PHP Fileupload problem

2009-07-22 Thread Jeff Siegel
Tom, We thought it might be a file issue...however...I can upload the very same file as can the consultant. Further, we are running the code on two completely different servers (from two completely different hosting companies). Again...I can upload the file...the consultant can...the client can

Re: [nyphp-talk] PHP Fileupload problem

2009-07-22 Thread Donald J. Organ IV
Have you checked what browsers/version the client, and the client's client are using? Also does the form post to a relative URL?? If so are you going to www.domain.tld and everyone else is going to domain.tld?? Not sure this should effect anything but it would be a starting point. - Origi

Re: [nyphp-talk] PHP Fileupload problem

2009-07-22 Thread Jeff Siegel
Donald, max_execution_time is 1800 Jeff - Original Message From: Donald J. Organ IV To: NYPHP Talk Sent: Wednesday, July 22, 2009 1:29:56 PM Subject: Re: [nyphp-talk] PHP Fileupload problem What is the max_execution_time set to?? - Original Message - From: "Jeff Siegel" T

Re: [nyphp-talk] PHP Fileupload problem

2009-07-22 Thread Jeff Siegel
There's definitely something to that theory. They don't have the peppiest connection. Jeff - Original Message From: Daniel Convissor To: NYPHP Talk Sent: Wednesday, July 22, 2009 1:27:43 PM Subject: Re: [nyphp-talk] PHP Fileupload problem Hi Jeff: Your client probably has a lousy

Re: [nyphp-talk] PHP Fileupload problem

2009-07-22 Thread Tom Sartain
Just to reduce variables, is the client able to upload the same file to some other site? On Wed, Jul 22, 2009 at 1:29 PM, Donald J. Organ IV wrote: > What is the max_execution_time set to?? > > > - Original Message - > From: "Jeff Siegel" > To: "NYPHP Talk" > Sent: Wednesday, July 22, 2

Re: [nyphp-talk] PHP Fileupload problem

2009-07-22 Thread Donald J. Organ IV
What is the max_execution_time set to?? - Original Message - From: "Jeff Siegel" To: "NYPHP Talk" Sent: Wednesday, July 22, 2009 5:29:31 PM Subject: Re: [nyphp-talk] PHP Fileupload problem David, Small file uploads are no problem at all. Both clients who are having the problem are i

Re: [nyphp-talk] PHP Fileupload problem

2009-07-22 Thread Jeff Siegel
David, Small file uploads are no problem at all. Both clients who are having the problem are in business environments. (One is located in New York...the other is in Georgia.)  I'm working out of a home office in New York using Verizon FIOS...the consultant I'm working with (who also doesn't h

Re: [nyphp-talk] PHP Fileupload problem

2009-07-22 Thread Daniel Convissor
Hi Jeff: Your client probably has a lousy internet connection when it comes to upstream bandwidth/reliability. Maybe have them try one of the internet speedometers: http://www.dslreports.com/stest http://www.speakeasy.net/speedtest/ --Dan -- T H E A N A L Y S I S A N D S O L U T I O N

Re: [nyphp-talk] JSON and MVC

2009-07-22 Thread Mitch Pirtle
Agreed - and Joomla does it by allowing you to assign the view as the document type. For example, you can create different views for html, rss, json output. As well, you can just output directly from the controller and exit. Been too busy with work to play with all the other frameworks out there,

Re: [nyphp-talk] PHP Fileupload problem

2009-07-22 Thread David Krings
Jeff Siegel wrote: The code is real standard stuff (see below). A user selects a file. Clicks upload. When the upload is completed a refreshed page appears. This function works perfectly when I test it and when another consultant tests it. We are able to upload files of almost any size. When the u

Re: [nyphp-talk] PHP Fileupload problem

2009-07-22 Thread Jeff Siegel
Dan, Currently we have the following:     upload_max_filesize "25M"     post_max_size "25M"     max_input_time 1800 Since we're on a shared host...I have no clue about the setting for LimitRequestBody. The puzzle is that it doesn't take a large file to cause the problem. Just a file about 2me

Re: [nyphp-talk] PHP Fileupload problem

2009-07-22 Thread Dan Cech
Jeff, You may be falling afoul of one of the configuration options related to file uploads in PHP: upload_max_filesize "128M" post_max_size "50M" max_input_time 600 Or Apache: LimitRequestBody 5300 The settings above are usually sufficient to allow uploads u

[nyphp-talk] PHP Fileupload problem

2009-07-22 Thread Jeff Siegel
The code is real standard stuff (see below). A user selects a file. Clicks upload. When the upload is completed a refreshed page appears. This function works perfectly when I test it and when another consultant tests it. We are able to upload files of almost any size. When the upload is complete

Re: [nyphp-talk] JSON and MVC

2009-07-22 Thread Paul A Houle
I'd say that practically frameworks need to have some way to disable the "view" layer, at least the HTML templates, to let a controller output raw data. In my experience, for instance, business applications often need to output csv or xls so that people can load content into a sprea