Guest User

Untitled

a guest
Apr 7th, 2018
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.65 KB | None | 0 0
  1. function update_news_posted(){
  2. set_time_limit(3600);
  3. $plugin_path=plugins_url()."/".basename(dirname(__FILE__));
  4. $dir=dirname(__FILE__);
  5. $local_file=fopen($dir."/news.xml","w");
  6. $server_file="/demo/CFB_STORY$20111106142743765857508.XML";
  7. $ftp_user="general";
  8. $ftp_pass="g3n3ral";
  9. $ftp_server="ftp.stats.com";
  10. $conn_id=ftp_connect($ftp_server) or die("Could not connect");
  11. $login_result=ftp_login($conn_id,$ftp_user,$ftp_pass) or die("Could not login");
  12.  
  13. if(ftp_fget($conn_id,$local_file,$server_file,FTP_BINARY)){
  14. }
  15. else
  16. die("Problem with downloading the file.");
  17.  
  18. fclose($local_file);
  19. ftp_close($conn_id);
  20. }
Add Comment
Please, Sign In to add comment