syncing-cloud
Synchronize the edition of your file (if it does not exist it will be created) directly to your server without the need for an ftp or similar user, as you do locally and without third parties.
This package provides the following services:
syncing
Synchronize the edition of your document (if it does not exist it will be created) directly to your server without the need for an ftp or similar user, as you do locally and without third parties.
Getting Started
After installing the extension in the editor, it is important to add a file inside the server in which we will synchronize the files.
Prerequisites
- inside any folder of our directory in the server we will create a file with the name
[index?].[py,php]
- in which we will add the following code:
PYTHON2.5+
#!/usr/bin/python
import cgi
import json
print "Content-type: text/html\n"
form = cgi.FieldStorage()
todict = json.loads(form.getvalue('file'))
try:
with open(todict['way'], 'w') as file:
file.write(todict['datable'])
print("1")
except IOError as e:
print("0")
PHP7+
$str = file_get_contents($_FILES["file"]["tmp_name"]);
$tojson = json_decode(rtrim($str, "\0"));
echo (file_put_contents($tojson->way, $tojson->datable) !== false) ? 1 : 0;
- copy the final url of the created file e.g. (
https://[mywebsite.cloud]/up/
) and put it in the extension settings in the editor.
Settings
- write the path of the folder on the server with which it will be synchronized e.g. (
/home/[cloudserver]/public_html/
), the file name will automatically be taken from the editor.
Run
- the extension will be shown by pressing the cloud button located in the status bar of the editor.
- once configured the extension it is time to press the button for the function.
- when it turns blue it's time for excitement 😃
screenshot
Contribution
- Issues & Pull Request.
Mentions
- Iconfinder
License
This project is licensed under the Apache License - see the LICENSE file for details.
by: Alessandrio >> s1dg78hg4df85h1