Re: [nyphp-talk] Shopping Cart Solutions

2011-08-05 Thread Donald J. Organ IV
Check out magento. In my opinion the best cart out there. ___ New York PHP Users Group Community Talk Mailing List http://lists.nyphp.org/mailman/listinfo/talk http://www.nyphp.org/Show-Participation

Re: [nyphp-talk] Book recommendation for JS/AJAX?

2011-07-07 Thread Donald J. Organ IV
Look into a jquery bookIts the easiest way to go because it deals with the individual brower issues internally - Original Message - From: "Aaron Fischer" To: talk@lists.nyphp.org Sent: Thursday, July 7, 2011 10:39:20 AM Subject: [nyphp-talk] Book recommendation for JS/AJAX?

Re: [nyphp-talk] How much is a site redesign worth?

2011-04-03 Thread Donald J. Organ IV
So what your saying is after your QS person finds issues, they go into the code/design and fix it themselves?? - Original Message - From: "Kristina Anderson" To: "NYPHP Talk" Sent: Sunday, April 3, 2011 7:10:42 AM Subject: Re: [nyphp-talk] How much is a site redesign worth? The de

Re: [nyphp-talk] Date conversion from Java timestamp to PHP date

2011-03-14 Thread Donald J. Organ IV
Another note I believe epoch time is always GMT based so you may need to convert this to your current Time Zone. - Original Message - From: "Donald J. Organ IV" To: "NYPHP Talk" Sent: Monday, March 14, 2011 1:34:34 PM Subject: Re: [nyphp-talk] Date conversion

Re: [nyphp-talk] Date conversion from Java timestamp to PHP date

2011-03-14 Thread Donald J. Organ IV
I believe java is epoch time and is returned in milliseconds so just take that value and divide it by 1000 then use that in your date function $seconds = $java_time / 1000; $date = date('Y-m-d H:i:s', $seconds ); - Original Message - From: "Rob" To: talk@lists.nyphp.o

Re: [nyphp-talk] Regex for P Elements

2011-01-12 Thread Donald J. Organ IV
Try: $blockpattern='/]>.*?/m'; Notice the m after the last / this says it can span multiple lines - Original Message - From: "Randal Rust" To: "NYPHP Talk" Sent: Wednesday, January 12, 2011 9:06:44 AM Subject: Re: [nyphp-talk] Regex for P Elements Trying to work my way throug

Re: [nyphp-talk] mysql connection

2010-11-12 Thread Donald J. Organ IV
Apache doesn't connect to mysql I believe your issue is what I stated earlier mySQL is not listening on your private ip addressedit your my.cnf file ___ New York PHP Users Group Community Talk Mailing List http://lists.nyphp.org/mailman/listinfo

Re: [nyphp-talk] mysql connection

2010-11-12 Thread Donald J. Organ IV
Sounds like your mysql server is not listening on your private IP address...you probably need to edit my.cnf and tell it to listen on your private(internal) ip address. - Original Message - From: "willie klein" To: talk@lists.nyphp.org Sent: Friday, November 12, 2010 4:02:02 PM Subj

Re: [nyphp-talk] MySQL slow query log/general mysql log

2010-09-07 Thread Donald J. Organ IV
Just edit the logrotate config for the mysql logs and change the create line. From: "Anthony Wlodarski" To: "NYPHP Talk" Sent: Tuesday, September 7, 2010 2:43:51 PM Subject: Re: [nyphp-talk] MySQL slow query log/general mysql log MySQL does rotate the slow query log at least on my sy

Re: [nyphp-talk] file_get_contents() with a context

2010-08-14 Thread Donald J. Organ IV
The cause for the increase in speed is PHP was not pipelining the requests so it was waiting for the connection to timeout..which was what was causing it to appear that the file was taking longer to download. I ended up using http://code.google.com/p/php-pipeline Which gives me the ability to p

Re: [nyphp-talk] file_get_contents() with a context

2010-08-14 Thread Donald J. Organ IV
I guess my biggest problem is with http 1.0 and multiple simultaneous connection i can process 2,000 images in about 13 seconds. with http 1.1 it is taking anywhere from 8-15 seconds per image. for lets say 10 seconds. so on 2,000 images that would take approx. 5.5 hours. Now if i cut that do

[nyphp-talk] file_get_contents() with a context

2010-08-13 Thread Donald J. Organ IV
I am using file_get_contents() with a context that defines it should be using http 1.1 default is 1.0 I am using this inside of a loop that is pulling remote product images and creating thumbnails The reason we had to add a context is because with no context specified file_get_cont

Re: [nyphp-talk] Making text hard to copy

2010-08-09 Thread Donald J. Organ IV
either in your body tag or on a secured block of text(div) you can use onselectstart="return false" which will not allow the user to highlight said block of text. Id doesnt secure things 100% but at least its another roadblock. - Original Message - From: "Anthony Papillion" To: "NY

Re: [nyphp-talk] WSO2 WSF for PHP

2010-07-16 Thread Donald J. Organ IV
g the fish scaler on a deluxe swiss army knife, but it will get the job done. Fiddler2 is freware, and windows only, but really awesome at http debugging. Charlie is java based and I believe you have to pay for it. Justin On Fri, Jul 16, 2010 at 3:36 PM, Donald J. Organ IV < dor...@donaldorgan

[nyphp-talk] WSO2 WSF for PHP

2010-07-16 Thread Donald J. Organ IV
has anyone in here worked with wso2.org's WSF for PHP? I am trying to interact with a 3rd parties SOAP service and it is using WS Security I am getting an authentication error SO I am trying to see exactly the SOAP request that is being sent over is there a way to do this?? ___

Re: [nyphp-talk] PHP and SOAP

2009-12-03 Thread Donald J. Organ IV
I would really recommend taking a look at http://wso2.org/projects/wsf/php it not only gives classes for SOAP client/service creation but it also adds an extension to PHP so that it can do almost anything it needs to when it comes to soap Pretty much any other PHP SOAP library out there has

Re: [nyphp-talk] SimpleXML - UTF8

2009-10-17 Thread Donald J. Organ IV
a simple str_replace can replace the invalid characters..but you have to know what they are first. - Original Message - From: "John Campbell" To: "NYPHP Talk" Sent: Saturday, October 17, 2009 4:59:53 PM Subject: [nyphp-talk] SimpleXML - UTF8 I hope there is an easy answer to this: I

Re: [nyphp-talk] Magento Commerce Experience

2009-08-31 Thread Donald J. Organ IV
$myOrder->save(); Thank You Chuck Reeves Cell: 631-374-0772 Email: chuck.ree...@gmail.com On Mon, Aug 31, 2009 at 2:20 PM, Donald J. Organ IV < dor...@donaldorgan.com > wrote: Yes I've already developed a module that provides alternate code for built-in code...but t

Re: [nyphp-talk] Magento Commerce Experience

2009-08-31 Thread Donald J. Organ IV
jake On Mon, Aug 31, 2009 at 1:46 PM, Donald J. Organ IV wrote: > Does anyone on the list have experience with Magento Commerce > http://www.magentocommerce.com > > > ___ > New York PHP User Group Community Talk Mailing List &g

[nyphp-talk] Magento Commerce Experience

2009-08-31 Thread Donald J. Organ IV
Does anyone on the list have experience with Magento Commerce http://www.magentocommerce.com ___ New York PHP User Group Community Talk Mailing List http://lists.nyphp.org/mailman/listinfo/talk http://www.nyphp.org/show_participation.php

Re: [nyphp-talk] PHP Fileupload problem

2009-07-22 Thread Donald J. Organ IV
point. - Original Message - From: "Jeff Siegel" To: "NYPHP Talk" Sent: Wednesday, July 22, 2009 5:42:21 PM Subject: Re: [nyphp-talk] PHP Fileupload problem Donald, max_execution_time is 1800 Jeff - Original Message ---- From: Donald J. Organ IV To: NYPHP Talk Sent: Wedn

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

[nyphp-talk] Zend Gdata

2009-07-17 Thread Donald J. Organ IV
Has anyone done any work with Zend Gdata and more specifically Gbase?? I am trying to adding the shipping field to the gbase item entry but it seems that I need to add child elements in order to do so, anyone know how to do that? The exact error I am getting back is: "Text not allowed in thi

Re: [nyphp-talk] Magento

2009-06-24 Thread Donald J. Organ IV
you can email it to me off the list if you like - Original Message - From: "Donald J. Organ IV" To: "NYPHP Talk" Sent: Wednesday, June 24, 2009 12:31:14 PM Subject: Re: [nyphp-talk] Magento Would you mind sharing the module?? - Original Message -

Re: [nyphp-talk] Magento

2009-06-24 Thread Donald J. Organ IV
eb Developer Development Group On Wed, Jun 24, 2009 at 6:37 PM, Donald J. Organ IV < dor...@donaldorgan.com > wrote: Does anyone on the list have experience with Magento?? If so more specifically with adding a step to the checkout process? _

[nyphp-talk] Magento

2009-06-24 Thread Donald J. Organ IV
Does anyone on the list have experience with Magento?? If so more specifically with adding a step to the checkout process? ___ New York PHP User Group Community Talk Mailing List http://lists.nyphp.org/mailman/listinfo/talk http://www.nyphp.org/show_pa

Re: [nyphp-talk] memory problems

2009-06-04 Thread Donald J. Organ IV
Do you mind sharing the script? - Original Message - From: "Rahmin Pavlovic" To: "NYPHP Talk" Sent: Thursday, June 4, 2009 11:48:40 AM Subject: [nyphp-talk] memory problems Heya, So, I have this script that does the following: 1. Requests jpeg from origin CDN via cURL 2. If file do

Re: [nyphp-talk] stopping comment spam with PHP

2009-06-02 Thread Donald J. Organ IV
you can also create a "hidden" input not type="hidden" use CSS to hide it, that never gets filled out by people visiting the site...but spam bots tend to fill out all visible inputs :) - Original Message - From: "Hans C. Kaspersetz" To: "NYPHP Talk" Sent: Tuesday, June 2, 2009 4:31:5

Re: [nyphp-talk] Switch-Case v. if/else

2009-05-14 Thread Donald J. Organ IV
If I remember correctly, if/else if/else statements are faster than Switch-Case. I would suggest converting them and see if you get a performance increase. - Original Message - From: "Eddie Drapkin" To: "NYPHP Talk" Sent: Thursday, May 14, 2009 2:12:15 PM GMT -05:00 US/Canada East

[nyphp-talk] Table is full

2009-03-30 Thread Donald J. Organ IV
I am encountering the following error for an innoDB table. table 'xxx' is full The table currently has about 21 million rows in it, and i think we area little more than half way finished with the initial data load. >From what I can tell I have to enable autoextend but I am not sure how to do

Re: [nyphp-talk] Mod_auth_digest/mysql works!

2009-02-03 Thread Donald J. Organ IV
I think he meant compiled languages... - Original Message - From: "Michael B Allen" To: "NYPHP Talk" Sent: Tuesday, February 3, 2009 3:29:09 PM GMT -05:00 US/Canada Eastern Subject: Re: [nyphp-talk] Mod_auth_digest/mysql works! On Tue, Feb 3, 2009 at 3:18 PM, Justin Dearing wrote: > I

[nyphp-talk] PHP/Java Bridge

2008-12-03 Thread Donald J. Organ IV
So I am trying to use Apache Lucene to add searching to a site I am working on. And so far I have been able to use the PHP/Java Bridge for this. http://php-java-bridge.sourceforge.net/pjb/ Has anyone used this before?? For the most part I have this working but I am trying to impletement Mult

Re: [nyphp-talk] nyphp-talk Open Source Conference

2008-10-13 Thread Donald J. Organ IV
I think he's just responding to my origianl question if anyone knew of any in the area. - Original Message - From: "Justin Dearing" <[EMAIL PROTECTED]> To: "NYPHP Talk" Sent: Monday, October 13, 2008 3:14:08 PM GMT -05:00 US/Canada Eastern Subject: Re: [nyphp-talk] nyphp-talk Open Sourc

[nyphp-talk] Open Source Conferences

2008-10-12 Thread Donald J. Organ IV
Ok lets try this again. Does anyone know of any opensource conferences coming up that are located in the tri-state area?? ___ New York PHP Community Talk Mailing List http://lists.nyphp.org/mailman/listinfo/talk NYPHPCon 2006 Presentations Online h

[nyphp-talk] Open Source Conferences

2008-10-12 Thread Donald J. Organ IV
Does anyone know of any opensource conferences in ___ New York PHP Community Talk Mailing List http://lists.nyphp.org/mailman/listinfo/talk NYPHPCon 2006 Presentations Online http://www.nyphpcon.com Show Your Participation in New York PHP http://www.ny

Re: [nyphp-talk] Need a code diagrammer

2008-09-19 Thread Donald J. Organ IV
Try this. http://t3.dotgnu.info/blog/php/inclued-gives-you-clue.html - Original Message - From: "Justin Dearing" <[EMAIL PROTECTED]> To: "NYPHP Talk" Sent: Friday, September 19, 2008 9:14:37 AM GMT -05:00 US/Canada Eastern Subject: [nyphp-talk] Need a code diagrammer Folks, Can anyone

Re: [nyphp-talk] Passing JAVASCRIPT variables to PHP

2008-04-01 Thread Donald J Organ IV
Why not just store the client time zone and store server data/time?? PaulCheung wrote: Hi All I am trying to do is transfer the data and time from the client machine upto the server. The goal is to create a MySQL record by customer number and store both the client time/date and server time/

Re: [nyphp-talk] Reading just a couple lines of a file?

2008-03-26 Thread Donald J Organ IV
if its valid xhtml you could always use SimpleXML, and just get the title. http://www.php.net/SimpleXML csnyder wrote: On 3/26/08, Ben Sgro <[EMAIL PROTECTED]> wrote: Hello, Performance: Yeah, you don't have to hold the entire file in memory. Use fopen/fread and iterate thro

Re: [nyphp-talk] one question about resize the image

2008-03-24 Thread Donald J Organ IV
yess but you will have to load the image into memory anyway to create the alternate sizes. Kenneth Downs wrote: I think there is a call to get image stats without loading it into memory. Donald J Organ IV wrote: The best way to do this and keep the same scale is, a quick

Re: [nyphp-talk] one question about resize the image

2008-03-24 Thread Donald J Organ IV
The best way to do this and keep the same scale is, a quick example of this would be; $maxWidth = 100; $maxHeight = 100; $im = imagecreatefromjpeg( 'path/to/file' );  //This of course would be for a jpeg $scale = min(100/imagesx( $im ), 100/imagesy($im) ); $newHeight = $scale * imagesy( $im

Re: [nyphp-talk] PHP Wiki

2008-03-21 Thread Donald J Organ IV
What does this have to do with the PHP Development Wiki?? leam wrote: Perfect timing, I had an idea about the training question. :) I'm going off the hopeful assumption that I'm not the only wanna-be programmer that has a hard time making the leap from reading a book to production code.

[nyphp-talk] SAomething on nyphp.com website

2008-03-21 Thread Donald J Organ IV
I was just looking on the NYPHP.com website and noticed one of the products listed is pFork, is this product opensource?? If so where would i find the code? ___ New York PHP Community Talk Mailing List http://lists.nyphp.org/mailman/listinfo/talk

[nyphp-talk] Wiki Style Links

2008-03-05 Thread Donald J Organ IV
I was wondering if anyone else has done this and if they have the code readily available. I want to be able to parse wiki style links such as [[page|title]] [[page]] Any suggestions ?? ___ New York PHP Community Talk Mailing List http://lists.nyphp.or

Re: [nyphp-talk] PHP/MySQL environment problem??

2008-02-28 Thread Donald J Organ IV
Title: PHP problem environmental controls OUtput the query its trying to run and run it from the command line or a gui. PaulCheung wrote: The application is a classic traditional computer applications of add, update and read selected record.  The add record routine lines up the

Re: [nyphp-talk] Frameworks... CodeIgnite and Symfony

2008-02-27 Thread Donald J Organ IV
All this talk about frameworks and no one has mentioned the framework made by a NY local(Ken Downs)Andromeda There have been some great updates in this framework lately. Check it out  http://www.andromeda-project.org Adrian Noland wrote: Paul M. Jones has a presentation with some benc

Re: [nyphp-talk] Best way to develop a PHP web system?

2008-02-22 Thread Donald J Organ IV
Check out the Andromeda Database Framework, http://www.andromeda-project.org/ I believe it will handle all your needs and then some. Matt Juszczak wrote: Hey folks, I've finally removed myself from all mailing lists that I was on EXCEPT the NY*.* lists, so now I can stop sending my emails t

Re: [nyphp-talk] html 5

2008-02-01 Thread Donald J Organ IV
Access key was a way to have shortcut keys to elements meaning Ctrl+A to put focus on a given element.  No addressesing them. Peter Sawczynec wrote: So are we saying that "id" and "name" will be used in favor of "accesskey". It was my impression that ultimately it was "id" t

Re: [nyphp-talk] Can PHP be wraqpped around HTML??

2008-01-15 Thread Donald J Organ IV
Yes you can do this: Print PaulCheung wrote: This might seem quite trivial or rather silly; But it is causing me absolute havoc. However, each time I update a MySQL record I set an "update indicator" on, the idea being, So as not to update the record more than once. I am trying to wrap PHP

Re: [nyphp-talk] Whats the difference between an apostrophe and a quotation

2008-01-11 Thread Donald J Organ IV
Yes single quotes only look like apostrophe's in specific fonts, but that is what they are. Ajai Khattri wrote: On Sat, 12 Jan 2008, Jonathan Wagener wrote: Hi, whats the difference between an apostrophe and a quotation in php? We have single quotes, double quotes and back quotes -

Re: [nyphp-talk] WYSIWYG editors

2008-01-08 Thread Donald J Organ IV
http://www.extjs.org has a htmleditor. Urb LeJeune wrote: I have been using the TinyMCE WYSIWYG editor. I not happy with it because it mangles anything that is cut and pasted from MS Word. Does anyone have an alternative suggestion? Thanks Urb Dr. Urban A. LeJeune, President E-Government.com

Re: [nyphp-talk] LIPHP mailing list

2007-12-26 Thread Donald J Organ IV
Hmm ok that wasnt meant to go to you...lol...guess getting up and not adding rewetting drops to your contacts before you send an email can be bad. Tim Gales wrote: Donald J Organ IV wrote: I think we had an issue with the maling list yesterday, when you get a chance can you try and send

[nyphp-talk] LIPHP mailing list

2007-12-26 Thread Donald J Organ IV
I think we had an issue with the maling list yesterday, when you get a chance can you try and send something to the list. ___ New York PHP Community Talk Mailing List http://lists.nyphp.org/mailman/listinfo/talk NYPHPCon 2006 Presentations Online http:

Re: [nyphp-talk] More questions about working with forms

2007-12-13 Thread Donald J Organ IV
Yes, just remember to unserialize it when you want to use it. Ben Sgro wrote: Hello, Can you serialize the object and stick it in the $_SESSION? - Ben Tony Furnivall wrote: Thanks to those who replied earlier. I've moved on a little, and now am wondering how to make an object 'persist' betwe

Re: [nyphp-talk] zipcode lookup

2007-12-04 Thread Donald J Organ IV
Well it all depends on what you are trying to do and what a resource code is, my recomendation is to get the long/lat for the zip codes and build a radius search using the following query: replace the follwing fields with value: [origin-lat] [origin-long] [dest-lat] [dest-long] [radius] SE

[nyphp-talk] Test Please Ignore

2007-11-14 Thread Donald J Organ IV
test ___ New York PHP Community Talk Mailing List http://lists.nyphp.org/mailman/listinfo/talk NYPHPCon 2006 Presentations Online http://www.nyphpcon.com Show Your Participation in New York PHP http://www.nyphp.org/show_participation.php

Re: [nyphp-talk] JSON

2007-05-11 Thread Donald J Organ IV
to page the data. The library does this automagically which is great, the very bad side is that its currently "beta" ... what library are you using? - Jon On May 11, 2007, at 10:59 AM, Donald J Organ IV wrote: ANyone had any experiences with large datasets and JSON, seems the email

[nyphp-talk] JSON

2007-05-11 Thread Donald J Organ IV
ANyone had any experiences with large datasets and JSON, seems the email interface i am writing is starting to choke with the data that is coming into it. Any help would be greatly appreciated. Thanks ___ New York PHP Community Talk Mailing List http

Re: [nyphp-talk] IMAP_FETCHSTRUCTURE

2007-05-10 Thread Donald J Organ IV
Yes, if you look at the pear.php.net site there is some documentation available. http://pear.php.net/manual/en/package.mail.mail-mimedecode.decode.php You can easily work with each element in a multipart email. Would you be willing to provide an example I am a little lost on how to get the

Re: [nyphp-talk] IMAP_FETCHSTRUCTURE

2007-05-10 Thread Donald J Organ IV
I assume this will give me a list of the attachments, and there attachmentid if any?? Dan Cech wrote: Donald J Organ IV wrote: i don think the pear packages would have much success in this instance as well, because i believe they rely on the imap functions as well and this is the

Re: [nyphp-talk] IMAP_FETCHSTRUCTURE

2007-05-10 Thread Donald J Organ IV
i don think the pear packages would have much success in this instance as well, because i believe they rely on the imap functions as well and this is the imap_fetchstructure function that i am having the issue with. Kenneth Downs wrote: Donald J Organ IV wrote: Has anyone that has done with

Re: [nyphp-talk] IMAP_FETCHSTRUCTURE

2007-05-09 Thread Donald J Organ IV
> name [value] => P ) ) ) csnyder wrote: On 5/9/07, Donald J. Organ IV <[EMAIL PROTECTED]> wrote: In this instance I am seeing some emails that the attachment filenames are being truncated

[nyphp-talk] IMAP_FETCHSTRUCTURE

2007-05-09 Thread Donald J Organ IV
Has anyone that has done with with imap_fetchstructure run into the problem where in the parameters array the object containing the name/value pair the value is being truncated In this instance I am seeing some emails that the attachment filenames are being truncated to the first letter so

[nyphp-talk] PHP, Email & APPLEDOUBLE

2007-05-07 Thread Donald J Organ IV
Has anyone has any experience with parsing emails with the subtype of APPLEDOUBLE?? Any advice on this would be greatly appreciated. ___ New York PHP Community Talk Mailing List http://lists.nyphp.org/mailman/listinfo/talk NYPHPCon 2006 Presentations

[nyphp-talk] Mail Campaign Manager

2007-05-04 Thread Donald J Organ IV
Does anyone know of a good open source Email Campaign Manager that will handle tracking stats of the emails sent out such as how many people click on which links as well as bounce backs and removals?? ___ New York PHP Community Talk Mailing List http:/

Re: [nyphp-talk] OOP Question: Calling a classes function from another class

2007-04-18 Thread Donald J Organ IV
yes use global Ben Sgro (ProjectSkyline) wrote: Hello Again,   I've been porting my PHP4 libs to PHP5 OO, and I thus I have no formal OOP training. This is my crash course.   So, I've created an error logging class,   class Error and I want to call it from anot

Re: [nyphp-talk] Running exec et al on a windows box

2007-04-09 Thread Donald J Organ IV
You may want to try other variants of the exec function such as passthru or system. Kenneth Downs wrote: I feel dumb asking this, but ole Ken ain't used windows in many a year. When I execute exec() in a PHP script, a cmd.exe box flashes briefly on the windows console. This is one of those

Re: [nyphp-talk] Howto create custom URLs

2007-03-19 Thread Donald J Organ IV
P.S.   mod_rewrite is usually enabled or can be enabled on any simple hosting plan that is using apache, if you encounter a host that uses apache and wont turn it on, i would suggest finding another host. Donald J Organ IV wrote: This is done via mod_rewrite: apache 1.x http

Re: [nyphp-talk] Howto create custom URLs

2007-03-19 Thread Donald J Organ IV
This is done via mod_rewrite: apache 1.x http://httpd.apache.org/docs/1.3/mod/mod_rewrite.html apache 2.x http://httpd.apache.org/docs/2.0/mod/mod_rewrite.html The PHP script still see the page as myhost.com/index.php?act=700&eventid=4e732ced3463d06de0ca9a15b6153677 you just tell apache how

Re: [nyphp-talk] Microsoft Access application conversion recommendations

2007-03-09 Thread Donald J Organ IV
why just make the form and routinexs to edit the access do, php can use the access db for the data soruce. Sean Pangia wrote:teachersfuc.org doesn't MS have tools to convert Access to ASP? Kenneth Downs wrote: Timothy Boyden wrote: Hi All, I will be starting on a project to convert a fa

Re: [nyphp-talk] New Daylight Savings Time in U.S. Coming Up Very Soon

2007-02-27 Thread Donald J Organ IV
go for it csnyder wrote: On 2/27/07, Peter Sawczynec <[EMAIL PROTECTED]> wrote: This is an excellent lucid recap. Thank you. +1, thanks Jon. I'm surprised that PHP doesn't use the system timezone data, too, but that's just my Linux-centric view of the world. I've got a server that I can set

Re: OT: Re: [nyphp-talk] Fon Project

2007-02-20 Thread Donald J Organ IV
There are also two in my area, well 3 come tonight once i finish setting mine up. Joseph Crawford wrote: this will be nice when there are more access points in my area lol there are 2 right now, is there a list of how many are in the USA? access points will only help in remote area's like min

Re: OT: Re: [nyphp-talk] Fon Project

2007-02-20 Thread Donald J Organ IV
Yes it uses openwrt. Ajai Khattri wrote: On Tue, 20 Feb 2007, Donald J Organ IV wrote: Sounds interesting, I just used the firmware they provide, and installed it on my linksys wrt45g router. So its Linux-based? ___ New York PHP

Re: OT: Re: [nyphp-talk] Fon Project

2007-02-20 Thread Donald J Organ IV
Sounds interesting, I just used the firmware they provide, and installed it on my linksys wrt45g router. Ajai Khattri wrote: Ive been a FON member (and node) for over several months now. They had a special offer on the WiFi router for awhile (something like $15 for the TINY router). It was tot

Re: OT: Re: [nyphp-talk] Fon Project

2007-02-20 Thread Donald J Organ IV
Yes exactlylol Aaron Fischer wrote: So when you are working on a PHP project and you are away from your office or home, you can still be productive (for free). =) On Feb 20, 2007, at 11:24 AM, Donald J Organ IV wrote: But what it does allow for is for setting up public ally

Re: OT: Re: [nyphp-talk] Fon Project

2007-02-20 Thread Donald J Organ IV
. But what does this have to do with PHP and how about a little description? Donald J Organ IV wrote: I am sorry I mean to include OT in the subject. ___ New York PHP Community Talk Mailing List http://lists.nyphp.org/mailman/listinfo/talk NYPHPCon

OT: Re: [nyphp-talk] Fon Project

2007-02-20 Thread Donald J Organ IV
I am sorry I mean to include OT in the subject. Dan Cech wrote: Donald J Organ IV wrote: I think everyone should check this out and install it what a great idea these guys have http://www.fon.com 1. How is this php related? 2. How about a little information rather than just a link

[nyphp-talk] Fon Project

2007-02-20 Thread Donald J Organ IV
I think everyone should check this out and install it what a great idea these guys have http://www.fon.com ___ New York PHP Community Talk Mailing List http://lists.nyphp.org/mailman/listinfo/talk NYPHPCon 2006 Presentations Online http://www.nyphpco

Re: [nyphp-talk] PHP Report Writer?

2007-02-16 Thread Donald J Organ IV
I know that andromedia can do that Kenneth Downs wrote: Donald J Organ IV wrote: Let me know if you find anything on your own, i've look and never really found anything. Look deeper in that Andromeda you downloaded :) Nicholas Hart wrote: Hi, I am looking for a web-based report w

Re: [nyphp-talk] PHP Report Writer?

2007-02-16 Thread Donald J Organ IV
Let me know if you find anything on your own, i've look and never really found anything. Nicholas Hart wrote: Hi, I am looking for a web-based report writer. I am imagining something fairly simple that can save report titles, field headings, complex SQL and optionally print to HTML or PDF.

Re: [nyphp-talk] php web search engine

2007-02-14 Thread Donald J Organ IV
), preferable in perl, php or Java(as a last resource). I was wondering what you guys recommend. Thanks, Néstor :-) On 2/14/07, *Donald J Organ IV* < [EMAIL PROTECTED] <mailto:[EMAIL PROTECTED]>> wrote: http://www.google.com/enterprise/gsa/ Néstor wrote: Guys, I nee

Re: [nyphp-talk] php web search engine

2007-02-14 Thread Donald J Organ IV
http://www.google.com/enterprise/gsa/ Néstor wrote: Guys, I need to install a php search engine in our intranet. any recommendations? Thanks, Néstor :-) ___ New York PHP Community Talk Mailing List http://lists.nyphp.org/mailman/listi

Re: [nyphp-talk] Resample Image on the Fly

2007-01-29 Thread Donald J. Organ IV
Using the img tag does not resize the image, it just forces it to display at the specified width and height. You may want to look into imagemagick or the GD library for something like this. Randal Rust wrote: On 1/29/07, Dan Cech <[EMAIL PROTECTED]> wrote: I'm not entirely sure what you're

Re: [nyphp-talk] Radial Zip Code Search

2007-01-19 Thread Donald J Organ IV
WEll i am assuming you have a postal zipcodes database with longitude and latitude here is the queries you want to use, first you need to get long and lat for zipcode SELECT longitutde,latitude FROM usa WHERE zipcode=$zip SELECT distinct zipcode, ROUND((ACOS((SIN($lat/57.2958) * SIN(latitude/

[nyphp-talk] Flash Developer Needed

2007-01-18 Thread Donald J Organ IV
A Hauppauge based company is looking for an as needed flash guru, for some simple flash work. You will be working side by side with their PHP developer. If you are interested or have more questions please contact me off list at [EMAIL PROTECTED] __

Re: [nyphp-talk] Need HTML expert for quick job

2007-01-02 Thread Donald J Organ IV
follow that as well as my fix, and you'll be good as gold :) Kenneth Downs wrote: Rolan Yang wrote: replace line #2 with This does not work on IE 6. The top TD element ends up measuring about 135px, leaving a blank band. ~Rolan Kenneth Downs wrote: Hi folks, I have a graphic design

Re: [nyphp-talk] Need HTML expert for quick job

2007-01-02 Thread Donald J Organ IV
as well as replacing line #24 height: 118px; in your CSS file with: height: 75px; Rolan Yang wrote: replace line #2 with ~Rolan Kenneth Downs wrote: Hi folks, I have a graphic design that I am very happy with. As I am more of a database guy, I need an HTML guru who can convert it into som

Re: [nyphp-talk] Zip Code field in Excel

2006-11-15 Thread Donald J Organ IV
it will work when displaying a CSV file in excel, but now the data has a single quote in it. Martin Lanser wrote: > I just reread your question. Yes, in an Excel cell you can put a single > quote in front of something and it is then treated as text, but I don't know > if that works in a CSV file.

Re: [nyphp-talk] MySQL GPL License

2006-11-10 Thread Donald J Organ IV
From what i can tell on the faq on mysql.com you only have to provide the source if you application is redistributed, such as something like phpBB or post nuke or something like that where it is distributed and setup on other machines. Brian Dailey wrote: > Ok, this may sound like a stupid que

Re: [nyphp-talk] So who's using Ajax anway?

2006-11-10 Thread Donald J Organ IV
AJAX stands for Asynchronous Javascript And XML. Chris Shiflett wrote: > csnyder wrote: > >>> It doesn't stand for anything. In fact, Ajax isn't an acronym. >>> >>> Chris >>> >> Really? It did when it was coined by Garrett last year... dang, >> that was just last year people! >> > >

Re: [nyphp-talk] number_format / round issue

2006-11-09 Thread Donald J Organ IV
yes, I have tried round. Daniel Convissor wrote: > On Wed, Nov 08, 2006 at 12:44:19PM -0500, Donald J Organ IV wrote: > >> but I am having a problem with 4.075 when applying >> number_format() I should be getting 4.08 and i am not. >> >> This is running on PHP 4

Re: [nyphp-talk] Smart variable syntax question

2006-11-08 Thread Donald J Organ IV
there has to be some type of evaluate function in smarty because you want to evaluate $params[1] so i would start by looking for an evaluate function. Cliff Hirsch wrote: > > I want this in a Smarty template: > > PHP equivalent: $params[0]->Contracts[$params[1]]['textkey'] > > Smarty template: {

[nyphp-talk] number_format / round issue

2006-11-08 Thread Donald J Organ IV
I have data that I am pulling out of the database a number such as 3.987 and number_format() seems to work fine when i tell it I only want two decimal places but I am having a problem with 4.075 when applying number_format() I should be getting 4.08 and i am not. This is running on PHP 4.4.4 on