How can I download my whole site using FTP and still keep file permissions? - permissions

I'm using Windows XP and have an FTP connection to my server. I would like to download the everything including file permissions as well. Filezila to my knowledge doesn't do that unless your on an Linux machine.
What should I do ?
Thank-you all
BigThings

Ftp doesn't support transfer of file permission as it is platform independent - you can ftp to linux from windows, windows from linux ect... when you get the files to the local machine - you can do anything with them as your local folder permissions allows.

Related

Move website from XAMPP to web server

This may be trivial, but I would like to know how you guys would go about this.
So I was making a website for a department of my university this summer, and now is the time I have to move all the source files and database files from XAMPP directory onto the server. I've got the access to the server through VPN and remote desktop. Now, I am not sure whether to install Apache, phpMyAdmin, MySQL etc. on the server and overwrite single configuration files (e.g. php.ini), or if I could simply move my entire XAMPP folder onto the server. I am using Windows 10 and the server is Windows Server 2012.
You'll need to actually install PHP, MySQL, and Apache to the server directly; simply copying the files from your computer won't install the corresponding system files or services or anything like that. Whether you use XAMPP or install them individually yourself, it's just like most other software that needs to be installed properly in order to function. Then, of course, you can copy over the relevant files that you've changed such as the configuration files and your site.

Read file content from network path in Windows CE

Is there possible in Windows CE 6.0 devices (Compact Framework) read file content over WiFi from files stored in network using UNC path?
Or in this case should I use FTP server or develop my own server?
You have to add the network share connection by P/Invoking WNetAddConnection3. Once that's done, you can copy just like you would any other local file.

Connection cannot be made to redirector

I am trying to deploy my first SSAS project. The Sql server is on a remote machine. I'm able to RDP and ping the machine.
I have restarted the SQL Browser service
sql browser has been started with admin account
I've turned off the firewall
I have given full control to the C:\Program Files (x86)\Microsoft SQL Server\90\Shared\ASConfig folder to the user SQLServer2005SQLBrowserUser$etc............
After a few hours of research, I've seen that one solution to this is to give the AS user rights to that folder.
I don't have an AS user at all on that machine.
What am I doing wrong? How do I deploy my first project?
Because I've gotten no responses to this posting, I'm wondering if this might be a bug. Where can I find the documentation for exactly what is needed for deployment?

Using vb.net to copy a file from Windows XP to Linux

I have some simple vb.net code that I use to copy a file between 2 servers.
IO.File.Copy(fromFileName, toFileName, True) ' Overwrites existing files
That works fine when both machines are Windows XP.
What would I need to do differently if 1 of the machines happens to be a LINUX box?
One way is to create a Windows-compatible network share using Samba on the Linux machine. This share can be made accessible to Windows using a standard network path.

Copy files to a remote server via RDP using a script

We have a couple production servers that are configured to only allow access via RDP. There are no acessible shares. The dev team have no say in changing this setup but we want to automate code deployments to these machines. Presently we have to set Remote Desktop to share a local drive with the server, then RDP to the server and manually copy the deployment.
Any one know of a way to tunnel over RDP and drop files to a given directory on the remote host from the command line? The instructions will need to be included in an MSBuild configuration.
If you can get WS-MAN set up, PowerShell remoting and/or pmodem might be your ticket? https://web.archive.org/web/20180429054125/http://www.nivot.org/blog/2009/11/default