Welcome to the GoFuckYourself.com - Adult Webmaster Forum forums.

You are currently viewing our boards as a guest which gives you limited access to view most discussions and access our other features. By joining our free community you will have access to post topics, communicate privately with other members (PM), respond to polls, upload content and access many other special features. Registration is fast, simple and absolutely free so please, join our community today!

If you have any problems with the registration process or your account login, please contact us.

Post New Thread Reply

Register GFY Rules Calendar
Go Back   GoFuckYourself.com - Adult Webmaster Forum > >
Discuss what's fucking going on, and which programs are best and worst. One-time "program" announcements from "established" webmasters are allowed.

 
Thread Tools
Old 10-19-2004, 01:21 PM   #1
Juicy D. Links
So Fucking Banned
 
Industry Role:
Join Date: Apr 2001
Location: N.Y. -Long Island --
Posts: 122,992
Yo ineed HELP , php or coders or l33t people

I need something that will grab the contents of the url such as blabla.com/juicy.txt......... save it as a txt file i specify such as cum.txt


and for it runs on it owns evry x amount of hours i specify

Any ideas?
Juicy D. Links is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 10-19-2004, 01:24 PM   #2
Juicy D. Links
So Fucking Banned
 
Industry Role:
Join Date: Apr 2001
Location: N.Y. -Long Island --
Posts: 122,992
Juicy D. Links is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 10-19-2004, 01:24 PM   #3
Juicy D. Links
So Fucking Banned
 
Industry Role:
Join Date: Apr 2001
Location: N.Y. -Long Island --
Posts: 122,992
Juicy D. Links is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 10-19-2004, 01:25 PM   #4
Juicy D. Links
So Fucking Banned
 
Industry Role:
Join Date: Apr 2001
Location: N.Y. -Long Island --
Posts: 122,992
Juicy D. Links is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 10-19-2004, 01:30 PM   #5
dunefield
www.barely18movies.com
 
dunefield's Avatar
 
Join Date: Feb 2003
Location: Melbourne, Australia
Posts: 10,920
no...
__________________
dunefield is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 10-19-2004, 01:31 PM   #6
vas
Confirmed User
 
Join Date: Dec 2003
Location: Toronto
Posts: 562
sure its simple to do...

use fopen and fwrite in php

and setup a cronjob to do the running every few hours bit.
vas is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 10-19-2004, 01:32 PM   #7
Grammar Police
So Fucking Banned
 
Join Date: Feb 2004
Posts: 727
Juicy, you really need to get back on Paxil and drop the stupid, helpless Guido act. It's getting really, really old.
Grammar Police is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 10-19-2004, 01:34 PM   #8
Juicy D. Links
So Fucking Banned
 
Industry Role:
Join Date: Apr 2001
Location: N.Y. -Long Island --
Posts: 122,992
Quote:
Originally posted by Grammar Police
Juicy, you really need to get back on Paxil and drop the stupid, helpless Guido act. It's getting really, really old.
I need help man. I am backl on Paxil
Juicy D. Links is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 10-19-2004, 01:39 PM   #9
swedguy
Confirmed User
 
Industry Role:
Join Date: Jan 2002
Posts: 7,981
Didn't you get one couple of weeks ago?
swedguy is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 10-19-2004, 01:39 PM   #10
dodger21
Confirmed User
 
Join Date: Jan 2003
Location: Los Angeles
Posts: 2,680
dodger21 is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 10-19-2004, 01:40 PM   #11
Juicy D. Links
So Fucking Banned
 
Industry Role:
Join Date: Apr 2001
Location: N.Y. -Long Island --
Posts: 122,992
Quote:
Originally posted by dodger21
Juicy D. Links is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 10-19-2004, 01:44 PM   #12
swedguy
Confirmed User
 
Industry Role:
Join Date: Jan 2002
Posts: 7,981
PHP Code:
$content implode(''file('http://www.domain.com/sup.txt'));
$fp fopen("file.txt""w");
if (
$fp) {
  
fwrite($fp$content);
  
fclose($fp);

A simple one. It will write http://www.domain.com/sup.txt to file.txt (owerwrite and truncate file.txt if it exist).
swedguy is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 10-19-2004, 01:47 PM   #13
Juicy D. Links
So Fucking Banned
 
Industry Role:
Join Date: Apr 2001
Location: N.Y. -Long Island --
Posts: 122,992
Quote:
Originally posted by swedguy
PHP Code:
$content implode(''file('http://www.domain.com/sup.txt'));
$fp fopen("file.txt""w");
if (
$fp) {
  
fwrite($fp$content);
  
fclose($fp);

A simple one. It will write http://www.domain.com/sup.txt to file.txt (owerwrite and truncate file.txt if it exist).
ty i owe you one
Juicy D. Links is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 10-19-2004, 02:02 PM   #14
jwerd
Confirmed User
 
Industry Role:
Join Date: Jun 2003
Location: Costa Rica
Posts: 1,953
Quote:
Originally posted by swedguy
PHP Code:
$content implode(''file('http://www.domain.com/sup.txt'));
$fp fopen("file.txt""w");
if (
$fp) {
  
fwrite($fp$content);
  
fclose($fp);

A simple one. It will write http://www.domain.com/sup.txt to file.txt (owerwrite and truncate file.txt if it exist).
Juicy, you can also make it so it grabs it from a query string (EG: script.php?file=whatever.txt&url=http://www.wow.com/wtf.txt).

The code would be changed to:
PHP Code:
<?php
$content 
implode(''file($_GET['url']));
$fp fopen("".$_GET['file']."""w");
if(
$fp)
  
fwrite($fp$content);

fclose($fp);
But goodjob to everyone who participated as well Goodluck
__________________
Yii Framework Guru - Seasoned PHP vet - Partner @ XXXCoupon.com
jwerd is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 10-19-2004, 02:16 PM   #15
nibbi
Confirmed User
 
Join Date: Sep 2002
Location: Nashville, TN
Posts: 104
Juicy, hit me up via e-mail. I just threw something together that I think might work for you.

me at nibbi net
__________________
http://www.xRag.com
nibbi is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 10-19-2004, 03:50 PM   #16
fuzebox
making it rain
 
fuzebox's Avatar
 
Industry Role:
Join Date: Oct 2003
Location: seattle
Posts: 22,114
I am l33t, am I too late?
fuzebox is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 10-19-2004, 04:49 PM   #17
power182
Confirmed User
 
Join Date: Nov 2002
Posts: 136
wget works well....
power182 is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 10-19-2004, 04:51 PM   #18
Juicy D. Links
So Fucking Banned
 
Industry Role:
Join Date: Apr 2001
Location: N.Y. -Long Island --
Posts: 122,992
Quote:
Originally posted by nibbi
Juicy, hit me up via e-mail. I just threw something together that I think might work for you.

me at nibbi net
thank nibbi for the code

I am all set thanks veryone for the help
Juicy D. Links is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Post New Thread Reply
Go Back   GoFuckYourself.com - Adult Webmaster Forum > >

Bookmarks



Advertising inquiries - marketing at gfy dot com

Contact Admin - Advertise - GFY Rules - Top

©2000-, AI Media Network Inc



Powered by vBulletin
Copyright © 2000- Jelsoft Enterprises Limited.