Re: [nyphp-talk] MSSQL2008 Express and XAMPP

2010-02-15 Thread David Krings
On 2/15/2010 2:58 PM, Justin Dearing wrote: On Mon, Feb 15, 2010 at 2:06 PM, David Krings mailto:ram...@gmx.net>> wrote: Do you have TCP/IP enabled? That is turned off by default in MSSQL. Why? Because everyone needs it I'm actually kinda glad that Microsoft turns that off, because

Re: [nyphp-talk] Zend

2010-02-15 Thread Tim Lieberman
Assuming you're talking about the Zend Framework, and not some product. Unless you bootstrap the autoloading, you'll generally need to include the appropriate class files. This assumes that the "Zend" directory (top of the class hierarchy) is in your include_path -Tim On Feb 15, 2010,

Re: [nyphp-talk] Best way to accomplish this task

2010-02-15 Thread Anthony Papillion
Leam, I spent a good part of last night thinking about this problem and I came to the exact same conclusion you did: it's a useless charge of resources. I think I'm going to take your advice and simply archive the user input into the database but process it immediately when the user submits it. A

Re: [nyphp-talk] Best way to accomplish this task

2010-02-15 Thread Gary Mort
On Mon, Feb 15, 2010 at 9:32 AM, Mitch Pirtle wrote: > Keeps your logic clean and simple. Anything more sophisticated than > this and you might as well look into Amazon Queues. :-) > > Ick.. No, Amazon Queues[and for that matter Amazon SimpleDB] are bad solutions for this. Both services run off

Re: [nyphp-talk] MSSQL2008 Express and XAMPP

2010-02-15 Thread Justin Dearing
On Mon, Feb 15, 2010 at 2:06 PM, David Krings wrote: > Do you have TCP/IP enabled? That is turned off by default in MSSQL. Why? > Because everyone needs it > > I'm actually kinda glad that Microsoft turns that off, because not "everybody" needs it. First of all, you don't need it if your app

Re: [nyphp-talk] MSSQL2008 Express and XAMPP

2010-02-15 Thread David Krings
On 2/15/2010 12:36 PM, CED wrote: Has anyone ever configured this? I have followed several online suggestions and still no luck, a fail authentication error is all i receive from this: CODE: Do you have TCP/IP enabled? That is turned off by default in MSSQL. Why? Because everyone needs it..

[nyphp-talk] Zend

2010-02-15 Thread Kahlil Haynes
If you have Zend installed on your server, can you call zend methods and instantiate objects in any script or is there some extra step you need to access Zend from PHP. Thanks. ___ New York PHP Users Group Community Talk Mailing List http://lists.nyphp

Re: [nyphp-talk] MSSQL2008 Express and XAMPP

2010-02-15 Thread CED
CED wrote: Has anyone ever configured this? I have followed several online suggestions and still no luck, a fail authentication error is all i receive from this: CODE: Suggestions greatly appreciated. -Ed ___ New York PHP Users Group Communi

Re: [nyphp-talk] Flex/AIR

2010-02-15 Thread CED
Paul A Houle wrote: Gary Mort wrote: I've never been able to justify buying a big flash developer package just to play around with flash To stick up for Adobe (which I rarely do), I will say that the flash authoring tool from Adobe is pretty awesome. The quality of the authoring to

[nyphp-talk] MSSQL2008 Express and XAMPP

2010-02-15 Thread CED
Has anyone ever configured this? I have followed several online suggestions and still no luck, a fail authentication error is all i receive from this: CODE: Suggestions greatly appreciated. -Ed ___ New York PHP Users Group Community Talk Mail

Re: [nyphp-talk] tabs disappearing after mail function

2010-02-15 Thread selyah
Michele: thanks, that was the problem... Ian From: Michele Waldman To: NYPHP Talk Sent: Sun, February 14, 2010 7:48:28 PM Subject: Re: [nyphp-talk] tabs disappearing after mail function Your problem is line 92. exit(); I'm not doing anymore. Y

Re: [nyphp-talk] Best way to accomplish this task

2010-02-15 Thread Justin Dearing
On Mon, Feb 15, 2010 at 6:23 AM, Leam Hall wrote: > > What I don't understand is why you need to have a cron job to deal with the > user data. Why not have your processing script called when the user submits? > This keeps your script from having to go through the entire database to find > uncommi

Re: [nyphp-talk] Best way to accomplish this task

2010-02-15 Thread Mitch Pirtle
On Sun, Feb 14, 2010 at 8:49 PM, Anthony Papillion wrote: > Hello Everyone, > > I'm designing a system that will work on a schedule. Users will submit data > for processing into the database and then, every minute, a PHP script will > pass through the db looking for unprocessed rows (marked pendin

Re: [nyphp-talk] tabs disappearing after mail function

2010-02-15 Thread tedd
At 12:43 PM -0800 2/14/10, selyah wrote: Hello: I have an issue. first let me layout my site which is testing mode. I am having problem with the php page that handles the form information. the pages blocks are controlled by statements, no tables. there is a block on the top for the logo, bel

Re: [nyphp-talk] Best way to accomplish this task

2010-02-15 Thread Leam Hall
Well, from an admin viewpoint, I'd recommend a lot more thinking before doing this. The "script every minute" idea causes all sorts of issues on the server as well as the database. One hokey query, or one large dataset, and you can cause a lot of problems for the entire machine. What I don't u