I
I
IgorRastarov2018-01-29 18:51:42
PHP
IgorRastarov, 2018-01-29 18:51:42

How to edit a file from another site?

Hello.
I have 2 wordpress sites.
On one (test1.ru) there is a text.csv file.
I can open it, write to it.
I also need to open this file from the site (subdomain) and edit it
(dir.test1.ru)

<?php
$direct = "http://test1.ru/text.csv";
$file = fopen ($direct, "r");
if (!$file) {
    echo "<p>Невозможно перезаписать удаленный файл.\n";
    exit;
}
$data = fgetcsv($file);
$number = implode("",$data);
fclose($file);
?>

on r+ - issues Unable to overwrite the deleted file
Rights on text.csv - 0777
on the folder too.

Answer the question

In order to leave comments, you need to log in

3 answer(s)
A
Alexey, 2018-01-29
@AlexMaxTM

Refer to the file by absolute path
if they are on the same server.
Or by ftp

A
Alexander, 2018-01-29
@alexr64

How do you imagine it over HTTP?

B
Boris Korobkov, 2018-01-29
@BorisKorobkov

API or FTP

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question