dberman wrote: |
I have a remote web server that I am using to connect through and handle my files. However I am getting in the Transfer tab basically every single file being "downloaded" to a $(TMP) location. Where is this location supposed to exist?
I've searched on my remote server and there's nothing there.
I've searched locally in my AppData for my user account and don't see these files.
I've searched on my C:\ drive and these files don't exist there either.
If I'm doing everything on a remote server, why do I have to download every single file? Should I have setup my projects to be TUNNEL instead of via SSH maybe? I don't want any of my files local, I want everything to be done on the remote server. I can do this with VSCode just fine, however I'm looking to go back to NuSphere since I'm more comfortable with it and the shortcuts. |
You can find the location of the $(TMP) variable on your remote server by running the command echo $(TMP) in the terminal or command prompt. This will display the path of the temporary files directory on the remote server.
Alternatively, you can check the value of the TMP variable in the remote server by running the command echo $TMP or printenv TMP
You can also check the location of the temporary files directory by checking the contents of the /etc/environment file on your remote server, which typically contains system-wide environment variables, including the TMP variable.
You can use a terminal application like putty or ssh to connect to the remote server and then run the command on the remote server.
Please note that the location of the temporary files directory may vary depending on the specific operating system and configuration of the remote server.