Hướng dẫn php sftp->get file

I've been working at this for the last 2 days to no avail. I've also searched on StackOverflow for a solution but I couldn't find one that works for me.

I'm trying to pull a .csv file from a SFTP server. I found out you cannot do this with a default installation of PHP. I found 2 solutions.

1) Enable the ssh2_sftp extension in my PHP. I couldn't get this to work. I downloaded the required files, put them in my php/ext folder as directed, and modified the line in php.ini as required. Wouldn't work.

2) Use phpseclib. Couldn't get this to work as you need to use composer with it and composer wont load my php.ini because I have curl enabled?

Are there any other solutions for logging into a sftp server?

Appreciate the help.

asked Oct 25, 2017 at 22:27

Cory NickersonCory Nickerson

8532 gold badges10 silver badges17 bronze badges

Since it sounds like you have root access on the machine you're working with, why not use scp? It's a native php function so long as you have shell_exec enabled, and the user www-data (or whatever you call your httpd user) has shell access.

<?php
    $connection = ssh2_connect('your_remote_server', 22); //remote connection
    ssh2_auth_password($connection, 'username', 'password'); //authentication
    ssh2_scp_recv($connection, '/remoteServer/whatever/yourFile.csv', '/localServer/yourNewFilename.csv'); //remote file -> local file
?>

NOTE I have used this, but I also store the "username" and "password" in a MySQL database using bcrypt with a minimum cost of 12. More about that Here

answered Oct 25, 2017 at 22:36

Hướng dẫn php sftp->get file

5

Not the answer you're looking for? Browse other questions tagged php or ask your own question.

Hướng dẫn php sftp->get file

Hướng dẫn dùng array search trong PHP

Hàm array_search() sẽ tìm kiếm phần tử trong mảng có giá trị truyền vào,trả về khóa nếu phần tử đó tồn tại.Bài viết này được đăng tại freetuts.net, ...

Hướng dẫn php sftp->get file

Php get all files with extension

PHP has a great function to help you capture only the files you need. Its called glob()glob - Find pathnames matching a patternReturns an array containing the matched files/directories, an empty ...

Hướng dẫn php sftp->get file

Hướng dẫn php cho wordpress developer

Serie học và tìm hiểu ngôn ngữ lập trình PHP từ chính mã nguồn mở WordPress để bạn hiểu và biết cách làm việc với PHP trong mã nguồn WordPress.Giới thiệu ...

Hướng dẫn php sftp->get file

Hướng dẫn php artisan make:controller

Trang chủHướng dẫn họcLaravelControllerController là gì?Để xử lý logic (tính toán) thì chúng ta có thể viết trong nhiều chỗ khác nhau, nhưng tốt nhất là gom chung ...

Hướng dẫn php sftp->get file

Hướng dẫn dùng pages tutorial trong PHP

Vietnamese (Tiếng Việt) translation by Dai Phong (you can also view the original English article) Tôi có thể nhớ những năm trước đây khi lần đầu tiên tôi bắt đầu viết ...

Hướng dẫn php sftp->get file

Hướng dẫn dùng basic syntax trong PHP

Bài này sẽ giới thiệu cú pháp (syntax) và các thành phần cơ bản trong PHP. Để học tốt bài này, các bạn cần đọc lại bài Cài đặt môi trường lập trình ...

Hướng dẫn php sftp->get file

Hướng dẫn nested ternary operator php

The code will be executed front to back. So first<?php ($var > 2) ? gr than 2 : ($var > 6) ?> will result in gr than 2.Then the next questionmark will result in gr than 6, because gr ...

Hướng dẫn php sftp->get file

Hướng dẫn query parameters php

Cấu trúc URLTrong gói tin HTTP Request, dòng Request Line bạn phải cung cấp một URL, thường là thông qua thanh địa chỉ của trình duyệt.URL là viết tắt của Uniform ...

Hướng dẫn php sftp->get file

Install openssl php extension centos 7

QuestionI m trying to configure Laravel 5.1, Laravel requirement isPHP >= 5.5.9 OpenSSL PHP Extension Mbstring PHP Extension Tokenizer PHP ExtensionSubmit an answerThis textbox defaults to using ...

Hướng dẫn php sftp->get file

Hướng dẫn dùng shutdown -l trong PHP

Trong bài này mình sẽ giới thiệu cách dùng lệnh Shutdown trong Linux, đây là lệnh dùng để tắt máy tính hoặc tắt server sử dụng Linux.Nội dung chính2. Cú pháp ...

Hướng dẫn php sftp->get file

Hướng dẫn dùng session token trong PHP

Khái niệm CookieLưu CookieĐọc CookiePHP CookieKhái niệm về Session PHPSử dụng SessionHủy SessionCookie là mẩu tin nhỏ được lưu ở máy người dùng (cụ thể là ...

Hướng dẫn php sftp->get file

Hướng dẫn php sftp->get file

Hướng dẫn dùng set methods trong PHP

Magic Methods Trong PHP1. Magic methods là gì.Magic methods là các phương thức đặc biệt để tùy biến các các sự kiện trong php. Hiểu đơn giản là nó cung cấp thêm ...

Hướng dẫn php sftp->get file

Hướng dẫn php is_enum

Giới thiệuChào mọi người, sau một tháng thì mình đã trở lại đây (hehe).Nội dung chínhGiới thiệuEnum là gì?Laravel EnumCài đặtTạo Enum và sử dụngCác ...

Hướng dẫn php sftp->get file

Hướng dẫn php sftp->get file

Hướng dẫn chạy code php online

WEBEXTRASITE là Công ty đào tạo tin học online - thiết kế web chuyên nghiệp uy tín có trụ sở chính tại TPHCM. Chúng tôi thiết kế web theo chuẩn SEO, chuẩn di ...

Hướng dẫn php sftp->get file

Hướng dẫn dùng define regex trong PHP

Regular Expression được dùng để xử lý chuỗi thông qua biểu thức riêng của nó. Để các biểu thức này có thể hoạt động được bạn cần tuân thủ nhiêm ...

Hướng dẫn php sftp->get file

Hướng dẫn php sftp->get file

Hướng dẫn php redirect

Trong việc lập trình web bạn không thể thiếu việc chuyển người dùng từ trang này qua trang kia. Ví dụ như sau khi login thì chuyển người dùng về trang chủ. ...

Hướng dẫn php sftp->get file

Hướng dẫn php sftp->get file

Hướng dẫn dùng array_flip trong PHP

Định nghĩa hàm array_flip() trong PHP__Hàm array_flip()__ trả về một mảng mà có các key từ input sẽ trở thành các value và các value từ input trở thành các key.Nếu ...

Hướng dẫn php sftp->get file

Hướng dẫn in array php

Trang chủHướng dẫn họcHọc PHPPHP array thường dùngĐịnh nghĩa và cách dùng PHP arrayPHP count(), đếm số lượng phần tử trong mảngCũng có thể xem là chiều dài ...

Hướng dẫn php sftp->get file

Hướng dẫn dùng false context trong PHP

Streams là các tài nguyên được cung cấp bởi PHP mà chúng ta ít để ý đến. Streams có thể được dùng như là công cụ rất mạnh mẽ và bằng cách khai thác sức ...

Hướng dẫn php sftp->get file

Hướng dẫn use datetime php

Blog Tin tức 26/07/2021 03:01Ngày tháng là một phần của cuộc sống hàng ngày, do vậy việc xử lý ngày tháng cực kỳ quan trọng khi bạn xử lý các bài viết và ...

Hướng dẫn php sftp->get file

Kiểu dữ liệu object trong php

Trang chủHướng dẫn họcHọc PHPKiểu dữ liệu trong PHPĐịnh nghĩa và cách dùngPHP IntegerKiểu dữ liệu integer (viết tắt là int) là kiểu dạng số nguyênkhông là ...

Hướng dẫn php sftp->get file

Hướng dẫn php gethostbyaddr

Asked 12 years, 11 months agoNội dung chính Not the answer youre looking for? Browse other questions tagged php or ask your own question. Bước 1 — Tạo MySQL DatabaseBước 2 ...

Hướng dẫn php sftp->get file

Hướng dẫn dùng valid email trong PHP

Trong bài này, chúng ta sẽ tìm hiểu về validation email và url trong PHP. Để học tốt bài này, các bạn cần đọc lại bài Cài đặt môi trường lập trình Web PHP ...

Hướng dẫn php sftp->get file

Hướng dẫn dùng array addition trong PHP

Định nghĩa hàm array_sum() trong PHPHàm array_sum() trong PHP Tính toán tổng các value trong một mảng và trả về tổng đó.Cú pháp hàm array_sum() trong PHPHàm array_sum() ...

Hướng dẫn php sftp->get file

Hướng dẫn dùng timer now trong PHP

Trong bài học về PHP này, bạn sẽ học cách trích xuất hoặc định dạng ngày và giờ trong PHP.Hàm date () của PHP chuyển đổi dấu thời gian thành ngày và giờ ...

Hướng dẫn php sftp->get file

What is microtime function in php?

❮ PHP Date/Time ReferenceExampleReturn the current Unix timestamp with microseconds:<?php echo(microtime());?> Try it Yourself »Definition and UsageThe microtime() function returns the ...

Hướng dẫn php sftp->get file

Hướng dẫn password_verify trong php

Bạn không nên nhập muối riêng, để trống muối, hàm sẽ tạo ra muối ngẫu nhiên tốt.Nội dung chính2. Sưu tầm các hàm validate trong PHP2. Validate form bằng PHPCông ...

Hướng dẫn php sftp->get file

Hướng dẫn php keywords

Dẫn nhậpFunctions là cuộc sống, đúng không? nếu bạn là người mới vào học Python - là lính mới hay nhảy qua từ ngôn ngữ khác - bạn học về số lượng ...

Hướng dẫn php sftp->get file

Hướng dẫn dùng form w3schools trong PHP

The PHP superglobals $_GET and $_POST are used to collect form-data.Nội dung chínhPHP - A Simple HTML FormGET vs. POSTWhen to use GET?When to use POST?PHP ExercisesTest Yourself With ExercisesPHP ...

Hướng dẫn php sftp->get file

Hướng dẫn wordpress timezone

Mặc định WordPress sẽ hiển thị ngày tháng năm theo định dạng January 30, 2016 và giờ theo định dạng 4:14 pm. Ngoài ra hệ thống sẽ sử dụng múi ...

Hướng dẫn php sftp->get file

Hướng dẫn dùng imgjpg trong PHP

Tổng quan về kỹ thuật Upload file PHPTạo form HTML fileCode Php xử lý uploadCode Php xử lý upload nhiều fileTổng quan về kỹ thuật Upload file trong PHPĐể HTML FORM có ...

Hướng dẫn php sftp->get file

Does php have ternary operator?

Scout APM helps PHP developers pinpoint N+1 queries, memory leaks & more so you can troubleshoot fast & get back to coding faster. Start your free 14-day trial today. You probably already ...

Hướng dẫn php sftp->get file

Php max input vars nginx

QuestionHello, I need to increase the PHP Max. Input Vars and PHP Max. Input Time to install a theme in wordpress.I’m using nginx on ubuntu 18.04 with easyengine commands. The php version is 7.2 ...

Hướng dẫn php sftp->get file

Hướng dẫn dùng strncmp trong PHP

Hàm strncmp() sẽ so sánh hai chuỗi phân biệt chữ hoa chữ thường, hàm trả về số âm nếu chuỗi thứ nhất nhỏ hơn chuỗi thứ 2, trả về 0 nếu hai ...

Hướng dẫn php sftp->get file

Hướng dẫn php timezone not working

My hosting company set the default time zone in my php.ini to America/Chicago. I confirmed the time zone by checking phpinfo() and echoing date_default_timezone_get() in my PHP code.However, I tested ...

Hướng dẫn php sftp->get file

Hướng dẫn dùng british php trong PHP

Nội dungBiến trong PHPKhai báo biến trong PHPVí dụCác biến trong PHPĐầu ra các biếnVí dụVí dụVí dụPHP là một ngôn ngữ định kiểu lỏng lẻoPhạm vi các ...