Category: Windows

FTP and Zip toolkit for Windows users

Most of the users I work with with are unfamiliar with the concepts of FTP transfer or compressed archives, primarily because they never have to use them. These days, there are other options for transferring files than FTP, with a fast network and various cloud sharing services, and documents rarely have to be compressed, even for email purposes.

But occasionally, we run into something that really has to be zipped to get to the destination in working order, or where FTP is the only method available for transfer. So here are some tips and suggestions for those who have never used zip or ftp before.

Continue reading

FTP a file from one server to another, automatically

We are using an ASP script to create iCal files from a database, so another department can display the events on their web-based calendar.

Their calendar page is outside the corporate firewall. The ASP script needs to reside on and IIS server within the firewall. I needed a fool-proof way to transfer the ical file nightly out to an external web server so it could be accessed by any calendar applications that need to use it. The best way I’ve found so far is to create a batch file with command-line FTP instructions, and add it to a Windows scheduled task.

  1. To do this with your own files, create a directory that will hold the batch file somewhere on the server. Since the batch file will contain your destination server’s ftp password in plaintext, you will want to secure the directory. Create a Windows or domain account whose password will never change. I happened to have a “utility” domain-based account that already had access to some parts of the server, so I gave that account rights to the new directory.

Continue reading

SQL Server or SQL Server Express: Connection Error: (provider: Shared Memory Provider, error: 0 – No process is on the other end of the pipe.

After a server containing a SQL Server database is restarted, you may get the error

Connection Error: (provider: Shared Memory Provider, error: 0 - No process is on the other end of the pipe.

Or you may get an error like the one below:

"A network-related or instance-specific error occurred while establishing a connection to SQL Server. The server was not found or was not accessible. Verify that the instance name is correct and that SQL Server is configured to allow remote connection.s (provider: Shared Memory Provider, error: 40 – Could not open a connection to SQL Server) (Microsoft SQL Server, Error: 2)”

Continue reading

Microsoft Web Platform installer: Drupal on IIS, the easy way.

If you work with Windows servers, then you have probably gotten used to doing without the many opensource web applications taken for granted outside the enterprise environment. Drupal, WordPress, phpBB, Moodle, etc. were all out of reach. Yes, it was possible to install PHP and mySQL, but it took a level of commitment and dogged troubleshooting persistence that few people are willing to undertake.   

Well, now you can have your enterprise cake and your opensource software too! Microsoft’s Web Platform Installer, introduced a couple of years ago, makes the process of installing all those LAMP-style web apps easy. When I say easy, I really mean easy! It just works!

Continue reading
firefox logo

When Firefox won’t launch Java applets

If Firefox won’t launch java applets, but Internet Explorer will, you may need to change some settings in the Java control panel to turn on Applet support for Firefox. (Expert users: One sign that this is the issue rather than some Java security exception is that the Java console will be completely blank when you try to launch the applet in Firefox. _

Unfortunately on many PC’s, the Java control panel can be a challenge to find. First, check in the control panels area for “Java.” If it is not there, you may have to look in

C:Program FilesJava

for JRE (Java Runtime Environment) folders.

In the image below there are several of them. Usually you should pick the most recent one, as that is the one that is probably in use.

javacontrolpanel.jpg

Continue reading

Umbraco installation error: The virtual path ‘/install/steps/welcome.ascx’ maps to another application

After installing “Umbraco,” you may get the following error:


The virtual path ‘/install/steps/welcome.ascx’ maps to another application, which is not allowed.

Screen shot 2010-04-21 at 2.57.47 PM.jpg

This is because you have installed Umbraco in a virtual directory (not at the web root of the “Default Web Site” in IIS terminology). It is a path problem, easily corrected by fixing the paths in the web.config file.

Continue reading