close ad
 
Important WebAssist Announcement
open ad
View Menu

Technical Support Forums

Free, outstanding support from WebAssist and your colleagues

Automatically upload a file via FTP (for use with a scheduled CRON job)

Thread began 7/10/2017 5:32 am by Jared Lui | Last modified 7/14/2017 9:54 am by Jared Lui | 7563 views | 12 replies

Jared Lui

Thanks Ray,

After failing for 2 days with writing a .sh script I wen back to Php as was my intention (was talked into a "better" method by the other servers IT people who were no help at all).

Below is what I have so far and despite my comments I am confusing myself with the name/paths aparantly. Here's my latest error:

Warning: ftp_put(/uploads/partsbase/test.txt): failed to open stream: No such file or directory in /home/baileyhyd/public_html/partsbase.php on line 25
FTP upload of /uploads/partsbase/test.txt has failed!

Here's the link if you want to see it: http://www.baileyhyd.com/partsbase.php

---------------------------------------------------

<!--?php ini_set('display_errors',0); ?-->
<?php
$name = "test.txt";
$filename = "/uploads/partsbase/test.txt";

//-- Connection Settings
$ftp_server = "pentagonposts.partsbase.com"; // Address of FTP server.
$ftp_user_name = "pentagonposts"; // Username
$ftp_user_pass = 'password'; // Password
$destination_file = "test.txt"; //where you want to throw the file on the webserver (relative to your login dir)

$conn_id = ftp_connect($ftp_server) or die("<span style='color:#FF0000'><h2>Couldn't connect to $ftp_server</h2></span>"); // set up basic connection

$login_result = ftp_login($conn_id, $ftp_user_name, $ftp_user_pass) or die("<span style='color:#FF0000'><h2>You do not have access to this ftp server! /h2></span>"); // login with username and password, or give invalid user message

if ((!$conn_id) || (!$login_result)) { // check connection
// wont ever hit this, b/c of the die call on ftp_login
echo "<span style='color:#FF0000'><h2>FTP connection has failed! <br />";
echo "Attempted to connect to $ftp_server for user $ftp_user_name</h2></span>";
exit;
} else {
//echo "Connected to $ftp_server, for user $ftp_user_name <br />";
}

$upload = ftp_put($conn_id, $destination_file.$name, $filename, FTP_BINARY); // upload the file
if (!$upload) { // check upload status
echo "<span style='color:#FF0000'><h2>FTP upload of $filename has failed!</h2></span> <br />";
} else {
echo "<span style='color:#339900'><h2>Uploading $name Completed Successfully!</h2></span><br /><br />";
}
ftp_close($conn_id); // close the FTP stream
?>

Build websites with a little help from your friends

Your friends over here at WebAssist! These Dreamweaver extensions will assist you in building unlimited, custom websites.

Build websites from already-built web applications

These out-of-the-box solutions provide you proven, tested applications that can be up and running now.  Build a store, a gallery, or a web-based email solution.

Want your website pre-built and hosted?

Close Windowclose

Rate your experience or provide feedback on this page

Account or customer service questions?
Please user our contact form.

Need technical support?
Please visit support to ask a question

Content

rating

Layout

rating

Ease of use

rating

security code refresh image

We do not respond to comments submitted from this page directly, but we do read and analyze any feedback and will use it to help make your experience better in the future.

Close Windowclose

We were unable to retrieve the attached file

Close Windowclose

Attach and remove files

add attachmentAdd attachment
Close Windowclose

Enter the URL you would like to link to in your post

Close Windowclose

This is how you use right click RTF editing

Enable right click RTF editing option allows you to add html markup into your tutorial such as images, bulleted lists, files and more...

-- click to close --

Uploading file...