RE: [PHP] web shot script

2008-11-18 Thread Per Jessen
Joey wrote:

 Sorry for the delay.
 
 The purpose is to be able to see what is running on a site at any
 given time.

Apaches 'server-status' perhaps?


/Per Jessen, Zürich


--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



RE: [PHP] web shot script

2008-11-17 Thread Joey
Sorry for the delay.

The purpose is to be able to see what is running on a site at any given time.
If we are webhosting we want to make sure something is live or not and see the 
whole page, without visiting each and every site.  Plus the sites might change 
so we want to know at any given time.

 -Original Message-
 From: Jim Lucas [mailto:[EMAIL PROTECTED]
 Sent: Friday, October 24, 2008 11:48 AM
 To: Andrew Barnett
 Cc: Afan Pasalic; Joey; PHP
 Subject: Re: [PHP] web shot script
 
 Andrew Barnett wrote:
  You might actually be onto something there Afan.
 
  As long as Ghostscript and Imagemagick are installed on the server, you will
  be able to convert a PDF to an image. So maybe that will help.
 
  Although, is it possible to have a continuous length PDF, or does it only
  fit to specific page sizes.
 
  Its probably worth a shot though Joey.
 
 
  Andrew
 
 
 Isn't the idea of getting different screen shots about SEEING how the page
 looks on various system configurations?  Windows, Mac, *nix then throw in
 various browsers like IE, FF, Opera, Google?
 
 This is the service that I thought these other companies provided.  You could
 probably do something like this on one computer by having VMWare (or similar)
 software running to see all the different renderings.
 
 --
 Jim Lucas
 
Some men are born to greatness, some achieve greatness,
and some have greatness thrust upon them.
 
 Twelfth Night, Act II, Scene V
 by William Shakespeare



--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



RE: [PHP] web shot script

2008-11-17 Thread Ashley Sheridan
On Mon, 2008-11-17 at 18:48 -0500, Joey wrote:
 Sorry for the delay.
 
 The purpose is to be able to see what is running on a site at any given time.
 If we are webhosting we want to make sure something is live or not and see 
 the whole page, without visiting each and every site.  Plus the sites might 
 change so we want to know at any given time.
 
  -Original Message-
  From: Jim Lucas [mailto:[EMAIL PROTECTED]
  Sent: Friday, October 24, 2008 11:48 AM
  To: Andrew Barnett
  Cc: Afan Pasalic; Joey; PHP
  Subject: Re: [PHP] web shot script
  
  Andrew Barnett wrote:
   You might actually be onto something there Afan.
  
   As long as Ghostscript and Imagemagick are installed on the server, you 
   will
   be able to convert a PDF to an image. So maybe that will help.
  
   Although, is it possible to have a continuous length PDF, or does it only
   fit to specific page sizes.
  
   Its probably worth a shot though Joey.
  
  
   Andrew
  
  
  Isn't the idea of getting different screen shots about SEEING how the page
  looks on various system configurations?  Windows, Mac, *nix then throw in
  various browsers like IE, FF, Opera, Google?
  
  This is the service that I thought these other companies provided.  You 
  could
  probably do something like this on one computer by having VMWare (or 
  similar)
  software running to see all the different renderings.
  
  --
  Jim Lucas
  
 Some men are born to greatness, some achieve greatness,
 and some have greatness thrust upon them.
  
  Twelfth Night, Act II, Scene V
  by William Shakespeare
 
 
 
Why don't you set up a cron job (can be on any computer, doesn't have to
be the server) that just grabs a page from a list of sites using wget.
You could then check for the response codes for any problems, and
possible add a grep in there to make sure the site is not showing any
errors?


Ash
www.ashleysheridan.co.uk


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] web shot script

2008-10-24 Thread Richard Heyes
 The other options is using something like www.browsershots.org (as far
 as I remember thats their URL) and pay them to get the first places on
 their queues.

Wow, That's really a very handy tool.

-- 
Richard Heyes

HTML5 Graphing for FF, Chrome, Opera and Safari:
http://www.rgraph.org

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] web shot script

2008-10-24 Thread Jim Lucas
Andrew Barnett wrote:
 You might actually be onto something there Afan.
 
 As long as Ghostscript and Imagemagick are installed on the server, you will
 be able to convert a PDF to an image. So maybe that will help.
 
 Although, is it possible to have a continuous length PDF, or does it only
 fit to specific page sizes.
 
 Its probably worth a shot though Joey.
 
 
 Andrew
 

Isn't the idea of getting different screen shots about SEEING how the page
looks on various system configurations?  Windows, Mac, *nix then throw in
various browsers like IE, FF, Opera, Google?

This is the service that I thought these other companies provided.  You could
probably do something like this on one computer by having VMWare (or similar)
software running to see all the different renderings.

-- 
Jim Lucas

   Some men are born to greatness, some achieve greatness,
   and some have greatness thrust upon them.

Twelfth Night, Act II, Scene V
by William Shakespeare


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



RE: [PHP] web shot script

2008-10-23 Thread Joey
Hi Guys,

Really I want to do this, not pay someone to do it via those services you
linked to.
So nobody has seen open source code for this?


 -Original Message-
 From: Joey [mailto:[EMAIL PROTECTED]
 Sent: Saturday, October 18, 2008 4:59 AM
 To: PHP
 Subject: [PHP] web shot script
 
 Hello All,
 
 
 Does anyone know of a script to capture web pages and store the image?
 
 Trying to see all of my sites screenshots and have it updated on occasion.
 
 
 
 Thanks!
 
 
 
 Joey



-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] web shot script

2008-10-23 Thread Andrew Barnett
Hey Joey,
I had a search, and from what I found, it would be very difficult unless you
have root access to a server. Another way would be to create a HTML/CSS
renderer using PHP, and then using that to take a screenshot.

A link from DigitalPoint 
http://forums.digitalpoint.com/showthread.php?t=76454 may provide some
clues, or discouragement as I found.

Let us know if you work out how to do it. I'd love to know.


Andrew

2008/10/24 Joey [EMAIL PROTECTED]

 Hi Guys,

 Really I want to do this, not pay someone to do it via those services you
 linked to.
 So nobody has seen open source code for this?


  -Original Message-
  From: Joey [mailto:[EMAIL PROTECTED]
  Sent: Saturday, October 18, 2008 4:59 AM
  To: PHP
  Subject: [PHP] web shot script
 
  Hello All,
 
 
  Does anyone know of a script to capture web pages and store the image?
 
  Trying to see all of my sites screenshots and have it updated on
 occasion.
 
 
 
  Thanks!
 
 
 
  Joey



 --
 PHP General Mailing List (http://www.php.net/)
 To unsubscribe, visit: http://www.php.net/unsub.php




Re: [PHP] web shot script

2008-10-23 Thread Afan Pasalic


Andrew Barnett wrote:

Hey Joey,
I had a search, and from what I found, it would be very difficult unless you
have root access to a server. Another way would be to create a HTML/CSS
renderer using PHP, and then using that to take a screenshot.

  

or, maybe, as an idea, save the page as pdf?



A link from DigitalPoint 
http://forums.digitalpoint.com/showthread.php?t=76454 may provide some
clues, or discouragement as I found.

Let us know if you work out how to do it. I'd love to know.


Andrew

2008/10/24 Joey [EMAIL PROTECTED]

  

Hi Guys,

Really I want to do this, not pay someone to do it via those services you
linked to.
So nobody has seen open source code for this?




-Original Message-
From: Joey [mailto:[EMAIL PROTECTED]
Sent: Saturday, October 18, 2008 4:59 AM
To: PHP
Subject: [PHP] web shot script

Hello All,


Does anyone know of a script to capture web pages and store the image?

Trying to see all of my sites screenshots and have it updated on
  

occasion.



Thanks!



Joey
  


--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php





  


--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] web shot script

2008-10-23 Thread Andrew Barnett
Are you suggesting to create a PDF, and then convert from PDF to an image?

Andrew



2008/10/24 Afan Pasalic [EMAIL PROTECTED]


 Andrew Barnett wrote:

 Hey Joey,
 I had a search, and from what I found, it would be very difficult unless
 you
 have root access to a server. Another way would be to create a HTML/CSS
 renderer using PHP, and then using that to take a screenshot.



 or, maybe, as an idea, save the page as pdf?


  A link from DigitalPoint 
 http://forums.digitalpoint.com/showthread.php?t=76454 may provide some
 clues, or discouragement as I found.

 Let us know if you work out how to do it. I'd love to know.


 Andrew

 2008/10/24 Joey [EMAIL PROTECTED]



 Hi Guys,

 Really I want to do this, not pay someone to do it via those services you
 linked to.
 So nobody has seen open source code for this?




 -Original Message-
 From: Joey [mailto:[EMAIL PROTECTED]
 Sent: Saturday, October 18, 2008 4:59 AM
 To: PHP
 Subject: [PHP] web shot script

 Hello All,


 Does anyone know of a script to capture web pages and store the image?

 Trying to see all of my sites screenshots and have it updated on


 occasion.



 Thanks!



 Joey



 --
 PHP General Mailing List (http://www.php.net/)
 To unsubscribe, visit: http://www.php.net/unsub.php










Re: [PHP] web shot script

2008-10-23 Thread Afan Pasalic


Andrew Barnett wrote:

Are you suggesting to create a PDF, and then convert from PDF to an image?

I'm sorry. didn't get it has to be an image.




Andrew



2008/10/24 Afan Pasalic [EMAIL PROTECTED] mailto:[EMAIL PROTECTED]


Andrew Barnett wrote:

Hey Joey,
I had a search, and from what I found, it would be very
difficult unless you
have root access to a server. Another way would be to create a
HTML/CSS
renderer using PHP, and then using that to take a screenshot.

 


or, maybe, as an idea, save the page as pdf?


A link from DigitalPoint 
http://forums.digitalpoint.com/showthread.php?t=76454 may
provide some
clues, or discouragement as I found.

Let us know if you work out how to do it. I'd love to know.


Andrew

2008/10/24 Joey [EMAIL PROTECTED] mailto:[EMAIL PROTECTED]

 


Hi Guys,

Really I want to do this, not pay someone to do it via
those services you
linked to.
So nobody has seen open source code for this?


   


-Original Message-
From: Joey [mailto:[EMAIL PROTECTED] mailto:[EMAIL PROTECTED]]
Sent: Saturday, October 18, 2008 4:59 AM
To: PHP
Subject: [PHP] web shot script

Hello All,


Does anyone know of a script to capture web pages and
store the image?

Trying to see all of my sites screenshots and have it
updated on
 


occasion.
   



Thanks!



Joey
 



--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php


   



 





--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] web shot script

2008-10-23 Thread Andrew Barnett
You might actually be onto something there Afan.

As long as Ghostscript and Imagemagick are installed on the server, you will
be able to convert a PDF to an image. So maybe that will help.

Although, is it possible to have a continuous length PDF, or does it only
fit to specific page sizes.

Its probably worth a shot though Joey.


Andrew



2008/10/24 Afan Pasalic [EMAIL PROTECTED]


 Andrew Barnett wrote:

 Are you suggesting to create a PDF, and then convert from PDF to an image?

 I'm sorry. didn't get it has to be an image.



 Andrew



 2008/10/24 Afan Pasalic [EMAIL PROTECTED] mailto:[EMAIL PROTECTED]


Andrew Barnett wrote:

Hey Joey,
I had a search, and from what I found, it would be very
difficult unless you
have root access to a server. Another way would be to create a
HTML/CSS
renderer using PHP, and then using that to take a screenshot.


or, maybe, as an idea, save the page as pdf?


A link from DigitalPoint 
http://forums.digitalpoint.com/showthread.php?t=76454 may
provide some
clues, or discouragement as I found.

Let us know if you work out how to do it. I'd love to know.


Andrew

2008/10/24 Joey [EMAIL PROTECTED] mailto:[EMAIL PROTECTED]


Hi Guys,

Really I want to do this, not pay someone to do it via
those services you
linked to.
So nobody has seen open source code for this?



-Original Message-
From: Joey [mailto:[EMAIL PROTECTED] mailto:[EMAIL 
 PROTECTED]]
Sent: Saturday, October 18, 2008 4:59 AM
To: PHP
Subject: [PHP] web shot script

Hello All,


Does anyone know of a script to capture web pages and
store the image?

Trying to see all of my sites screenshots and have it
updated on

occasion.


Thanks!



Joey


--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php









RE: [PHP] web shot script

2008-10-23 Thread Paul Scott

On Thu, 2008-10-23 at 22:20 -0400, Joey wrote:

 Really I want to do this, not pay someone to do it via those services you
 linked to.
 So nobody has seen open source code for this?

I run a free (freedom and beer) webservice to do this via the Chisimba
framework (http://avoir.uwc.ac.za) The docs and files are all in svn so
if you would like em, get em! The screenshot code is in python though.

--Paul

All Email originating from UWC is covered by disclaimer 
http://www.uwc.ac.za/portal/public/portal_services/disclaimer.htm 

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] web shot script

2008-10-18 Thread Joey
Hello All,


Does anyone know of a script to capture web pages and store the image?

Trying to see all of my sites screenshots and have it updated on occasion.

 

Thanks!

 

Joey



Re: [PHP] web shot script

2008-10-18 Thread paragasu
i found  a few website provide this service but i don't remember the name.
Maybe html2png is what u looking for

http://marginalhacks.com/Hacks/html2jpg/

On 10/18/08, Nitsan Bin-Nun [EMAIL PROTECTED] wrote:
 In general thats what I would do:
 Install firefox on the server,
 Open FF, take a screen shot, paste it to whatever graphic editor you have,
 Save the current image to a directory
 (This idea can be done in PHP, more than that, I have already wrote it,
 if I were able to find it I would have been attached it already ;) )

 The other options is using something like www.browsershots.org (as far
 as I remember thats their URL) and pay them to get the first places on
 their queues.

 There is also a free website-thumbnailing website but it updates the
 images once a year or half so for me it doesn't usefull at all.

 HTH,
 Nitsan

 On Sat, Oct 18, 2008 at 10:59 AM, Joey [EMAIL PROTECTED] wrote:

 Hello All,


 Does anyone know of a script to capture web pages and store the image?

 Trying to see all of my sites screenshots and have it updated on occasion.



 Thanks!



 Joey




-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] web shot script

2008-10-18 Thread Nitsan Bin-Nun
In general thats what I would do:
Install firefox on the server,
Open FF, take a screen shot, paste it to whatever graphic editor you have,
Save the current image to a directory
(This idea can be done in PHP, more than that, I have already wrote it,
if I were able to find it I would have been attached it already ;) )

The other options is using something like www.browsershots.org (as far
as I remember thats their URL) and pay them to get the first places on
their queues.

There is also a free website-thumbnailing website but it updates the
images once a year or half so for me it doesn't usefull at all.

HTH,
Nitsan

On Sat, Oct 18, 2008 at 10:59 AM, Joey [EMAIL PROTECTED] wrote:

 Hello All,


 Does anyone know of a script to capture web pages and store the image?

 Trying to see all of my sites screenshots and have it updated on occasion.



 Thanks!



 Joey