Search found 6 matches

by marktorregrossa
2012-02-07T19:00:29-07:00
Forum: Developers
Topic: Convert url of php script into an image
Replies: 4
Views: 13862

Re: Convert url of php script into an image

Anthony, Now I can't get this url to work. It should be the same as the link above, but maybe it's not a url type image magick likes? #!/bin/bash /usr/bin/convert "http://water.weather.gov/precip/index.php?yday=1328616000&yday_analysis=0&layer[]=0&layer[]=1&layer[]=4&timetype=RECENT&loctype=STATE ...
by marktorregrossa
2012-02-01T21:55:53-07:00
Forum: Developers
Topic: Convert url of php script into an image
Replies: 4
Views: 13862

Re: Convert url of php script into an image

thanks much sir! I was just missing quoting the image. Sure helps to have a second set of eyes.
by marktorregrossa
2012-02-01T08:05:27-07:00
Forum: Developers
Topic: Convert url of php script into an image
Replies: 4
Views: 13862

Convert url of php script into an image

Is there a way to take a url that is php and turn that output on the webpage to an image? I'm doing this same thing using convert then the url. But that url pulls up a gif image that I can alter. I'm assuming the problem is that the webpage from the php url isn't an image. here's the url: http ...
by marktorregrossa
2011-12-28T21:29:27-07:00
Forum: Users
Topic: How do I run this windows cmd file on a linux server?
Replies: 3
Views: 6385

Re: How do I run this windows cmd file on a linux server?

fmw42- Maybe this is Fred! Thanks for the bash code. I will give that a try. Looks like what I'm looking for.
thanks much.
by marktorregrossa
2011-12-28T21:20:08-07:00
Forum: Users
Topic: How do I run this windows cmd file on a linux server?
Replies: 3
Views: 6385

Re: How do I run this windows cmd file on a linux server?

it does run in a shell, but I'm trying to have it run every 10 minutes. That's why I'm trying to turn it into a file that I can set up in a crontab. A crontab is like scheduled tasks only run from my linux web server.
by marktorregrossa
2011-12-28T20:38:41-07:00
Forum: Users
Topic: How do I run this windows cmd file on a linux server?
Replies: 3
Views: 6385

How do I run this windows cmd file on a linux server?

I have a simple cmd file that works on a windows machine. I want to do the same thing in a crontab on a web server running linux. I can log onto my server through SSH and type the same commands and it works. But how do i make those commands into a file that I can tell a crontab to run. I tried a php ...