[nyphp-talk] HOWTO: Soap imports in SugarCRM - request feedback

2008-07-07 Thread Greg Rundlett
I wrote a 'HOWTO' tutorial that I was thinking of submitting to technical websites and/or trade publications for publishing. I would appreciate any feedback. http://freephile.com/wiki/index.php/Importing_contacts Thanks Greg p.s. I use the GNU Free Documentation License, so feel free to re-use

Re: [nyphp-talk] ftp_connect(): php_network_getaddresses: gethostbyname failed

2008-07-07 Thread Ben Sgro
Hello, Maybe php or apache (whomever is execing the process) doesn't have perms to open a socket. If your on a chrooted or some shared hosting plan this might happen - I really don't know though. I'm guessing you googled this error message and found no help? If not, I'd surely hit up googl

Re: [nyphp-talk] Upload progress meter

2008-07-07 Thread Rob Marscher
On Jul 7, 2008, at 8:25 AM, csnyder wrote: The PECL extension that enables this is still marked as experimental. I think the APC implementation of the server side process is the most recently updated php option. Add this to your php.ini assuming your have APC installed (you do have it ins

Re: [nyphp-talk] mysql slow Internet connection trickery

2008-07-07 Thread Rob Marscher
On Jul 5, 2008, at 10:58 AM, Hans Zaunere wrote: You may want to consider using web services. Data would be stored in a local MySQL database, and then as you mention, a central server aggregates the data from all the locations. The reason I mention web services, is that HTTP is typically mo

Re: [nyphp-talk] ftp_connect(): php_network_getaddresses: gethostbyname failed

2008-07-07 Thread Rahmin Pavlovic
On Jul 7, 2008, at 4:26 PM, anthony wlodarski wrote: $ftp_server = "ftp.domain.com"; // set up a connection or die $conn_id = ftp_connect($ftp_server) or die("Couldn't connect to $ftp_server"); That's exactly what produces the error warning. (I actually had single-quotes, but same res

Re: [nyphp-talk] ftp_connect(): php_network_getaddresses: gethostbyname failed

2008-07-07 Thread anthony wlodarski
Try this $conn_id = ftp_connect($ftp_server) or die("Couldn't connect to $ftp_server"); ?> On Jul 7, 2008, at 4:10 PM, Rahmin Pavlovic wrote: The following works fine in shell: ftp ftp.domain.com But my script spins out and returns: Warning: ftp_connect(): php_network_getaddresses: geth

[nyphp-talk] ftp_connect(): php_network_getaddresses: gethostbyname failed

2008-07-07 Thread Rahmin Pavlovic
The following works fine in shell: ftp ftp.domain.com But my script spins out and returns: Warning: ftp_connect(): php_network_getaddresses: gethostbyname failed in file Why is that? ___ New York PHP Community Talk Mailing List http://lists.nyphp.

Fw: [nyphp-talk] this works

2008-07-07 Thread Kristina Anderson
oops sorry, this sent in error to listserv. not trying to hijack or spam!!! - Forwarded message follows - if (form.exists.checked) { if (form.email1.value == "") { alert( "Please enter your email address." );

[nyphp-talk] this works

2008-07-07 Thread Kristina Anderson
if (form.exists.checked) { if (form.email1.value == "") { alert( "Please enter your email address." ); form.email1.focus(); return false; } exit; } i'm getting pretty good at this stuff. eh?? :> > At

Re: [nyphp-talk] Upload progress meter

2008-07-07 Thread tedd
At 8:25 AM -0400 7/7/08, csnyder wrote: Here's a brief writeup of how to enable upload progress bars in PHP. http://undesigned.org.za/2008/07/06/simple-php-upload-progress-meter-using-prototype The PECL extension that enables this is still marked as experimental. I wish browser makers would rea

Re: [nyphp-talk] Upload progress meter

2008-07-07 Thread Justin Dearing
Last time I needed an upload progress bar, I couldnt get the php progress bar to work and I didn't find swf upload. I ended up writing the uplaod page in .net using this component :http://www.brettle.com/Default.aspx?pageid=32 The developer write it in mono from the get go so it works great on lin

Re: [nyphp-talk] Upload progress meter

2008-07-07 Thread csnyder
On Mon, Jul 7, 2008 at 8:34 AM, Mark Armendariz <[EMAIL PROTECTED]> wrote: > > I also recommend swfupload. Has a good deal of control over file types, > files size and progress, and the best part is that it's all run via > javascript (actual upload is done via swf, but the api is all js). > http:

Re: [nyphp-talk] Upload progress meter

2008-07-07 Thread Brian D.
Does anyone else have problems with SWFUpload freezing Firefox? I'm running FF3 on Ubunty 8.04 and when I load the SWF demo it freezes until the file is completely uploaded. Maybe it's just an Ubuntu problem? -b. On Mon, Jul 7, 2008 at 9:42 AM, John Campbell <[EMAIL PROTECTED]> wrote: >> I also

Re: [nyphp-talk] Upload progress meter

2008-07-07 Thread John Campbell
> I also recommend swfupload. Has a good deal of control over file types, > files size and progress, and the best part is that it's all run via > javascript (actual upload is done via swf, but the api is all js). > http://swfupload.org/ > +1 for swfupload. It is easy to setup and does everything

Re: [nyphp-talk] Upload progress meter

2008-07-07 Thread Mark Armendariz
csnyder wrote: Here's a brief writeup of how to enable upload progress bars in PHP. http://undesigned.org.za/2008/07/06/simple-php-upload-progress-meter-using-prototype The PECL extension that enables this is still marked as experimental. I wish browser makers would realize that upload progress

[nyphp-talk] Upload progress meter

2008-07-07 Thread csnyder
Here's a brief writeup of how to enable upload progress bars in PHP. http://undesigned.org.za/2008/07/06/simple-php-upload-progress-meter-using-prototype The PECL extension that enables this is still marked as experimental. I wish browser makers would realize that upload progress is just as impor