Re: [nyphp-talk] Determine if your site has been defaced

2008-10-08 Thread Jeff Siegel
Thanks to all for your suggestions. Since the sites are usually dynamic...I kinda like Tim's suggestion of placing a string on the page, perhaps in a set of comment tags, and parsing for that string. Jeff ___ New York PHP Community Talk Maili

Re: [nyphp-talk] Freelancing

2008-10-08 Thread Joseph Crawford
The bestr i have used is guru.com but it's hard to get established. Once you get a few jobs it gets easier. On Oct 8, 2008, at 5:09 PM, Ajai Khattri wrote: What sites do people use to bid on freelance PHP projects? -- Aj. ___ New York PHP Commu

Re: [nyphp-talk] Determine if your site has been defaced

2008-10-08 Thread sbeam
On Wednesday 08 October 2008 16:39, Dan Cech wrote: > Jeff Siegel wrote: > > Anyone know of a PHP script that can be run from a cron and which can > > check whether a website has been defaced? > > cURL + preg would do the trick I'd imagine. interesting :) but yeah PHP is not needed. also md5/sha1

[nyphp-talk] Freelancing

2008-10-08 Thread Ajai Khattri
What sites do people use to bid on freelance PHP projects? -- Aj. ___ 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 Yo

Re: [nyphp-talk] Determine if your site has been defaced

2008-10-08 Thread csnyder
On Wed, Oct 8, 2008 at 4:45 PM, John Campbell <[EMAIL PROTECTED]> wrote: > On Wed, Oct 8, 2008 at 4:36 PM, Jeff Siegel <[EMAIL PROTECTED]> wrote: >> Anyone know of a PHP script that can be run from a cron and which can check >> whether a website has been defaced? > > I use Google Alerts, and use a

Re: [nyphp-talk] Restian PHP on IIS with encoded urls

2008-10-08 Thread csnyder
On Wed, Oct 8, 2008 at 4:19 PM, Joelle Tegwen <[EMAIL PROTECTED]> wrote: > In IIS I get: > [PATH_INFO] => > /ttaf/transform/http:/icitest1.education.umn.edu/ici/welcome/captions_ici_ttf.xml/http:/icitest1.education.umn.edu/ici/welcome/transcript.xsl This isn't going to answer your question, but

Re: [nyphp-talk] Determine if your site has been defaced

2008-10-08 Thread Joseph Crawford
there is a nice os x application that can be used for this, I am not sure if you use OS X though :) http://sunflower.coleharbour.ca/ On Oct 8, 2008, at 4:36 PM, Jeff Siegel wrote: Anyone know of a PHP script that can be run from a cron and which can check whether a website has been defaced

Re: [nyphp-talk] Determine if your site has been defaced

2008-10-08 Thread Tim Lieberman
Pretty trivial to write one if you can come up with a decent definition for "defaced". For what's supposed to be a static page, you could use "Changed" as the definition for defaced. If the content changes, you could test for some string that should always be there. Either one can proba

Re: [nyphp-talk] Determine if your site has been defaced

2008-10-08 Thread Dan Cech
Jeff Siegel wrote: > Anyone know of a PHP script that can be run from a cron and which can check > whether a website has been defaced? cURL + preg would do the trick I'd imagine. Dan ___ New York PHP Community Talk Mailing List http://lists.nyphp.org/m

[nyphp-talk] Determine if your site has been defaced

2008-10-08 Thread Jeff Siegel
Anyone know of a PHP script that can be run from a cron and which can check whether a website has been defaced? Thanks, Jeff ___ New York PHP Community Talk Mailing List http://lists.nyphp.org/mailman/listinfo/talk NYPHPCon 2006 Presentation

[nyphp-talk] Restian PHP on IIS with encoded urls

2008-10-08 Thread Joelle Tegwen
I'm writing a web services application on PHP 5.2. I develop on Linux/Apache but our test/production servers are running IIS 6 So I'm kind of clueless about how to configure IIS. Thanks in advance for any assistance. The problem that I'm having is that IIS is decoding encoded portions of my u

[nyphp-talk] Integrating Drupal 6 & KnowledgeTree

2008-10-08 Thread Ken Robinson
Hi, Does anyone on the list have experience integrating Drupal 6 & KnowledgeTree? I've installed Knowledge Tree and the KT Module. It seems to work, except that when I connect from within Drupal, the output is restricted to a very small area of the screen and there are no scrollbars. Ken

Re: [nyphp-talk] Blog Posts with Embedded Content

2008-10-08 Thread csnyder
On Tue, Oct 7, 2008 at 9:19 PM, John Campbell <[EMAIL PROTECTED]> wrote: > The safest approach is probably to pass the html through tidy, and > then into DOM, and traverse and count the length of text nodes, but > that would be quite slow if you ran it on every request. Right, +1 for Tidy and DOM