I got excited when I saw the following post but it doesn't cover my case: Mount an FTP server locally
Is there any way for me to create symbolic links on a remote server without having SSH access, possibly via some FTP hack?
A symlink (symbolic) is a type of file that points to other files or directories (folders) in Linux. You can create a symlink (symbolic) by using the ln command in the command line. Symbolic links are useful because they act as shortcuts to a file or directory.
A symbolic link points to a file. In case, the original file is deleted, the symbolic link would be pointing to non-existing file. You can create a symbolic link to a directory too.
Use the -s option to create a soft (symbolic) link. The -f option will force the command to overwrite a file that already exists. Source is the file or directory being linked to. Destination is the location to save the link – if this is left blank, the symlink is stored in the current working directory.
Use a script.
If you have sh, bash or csh available, then you're nearly as good as if you had an ssh access. If you don't, then most other scripting languages allow you to create symbolic links on your server.
For example, in PHP you would use the symlink() function:
symlink("myOriginalFileOrDirectory", "mySymbolicLink");
I just had the same problem, and this is how I easily solved it :)
Regular FTP is too abstract to know about symbolic links.
If the server supports custom commands, it might let you send the unix shell commands directly. Not all servers support this but some of them do.
If you have SFTP access (sometimes admins give users SFTP access but no SSH shell), SFTP protocol supports creation of symbolic links.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With