How To Fix Archives - Page 8 of 12 - Digital Tool Factory blog How To Fix Archives - Page 8 of 12 - Digital Tool Factory blog

The Digital Tool Factory Blog

How to fix port forwarding problems with Clear Wireless

774 - Neuron Connection - Pattern
The Problem:
You use Clear Wireless (ClearWire) for your internet service and you cannot set up Remote Desktop on Windows 7.

The Cause: Whereas most internet provider provided devices just function as gateways, the Clear device functions as both a router and a gateway rolled into one unit.   It also uses a different subnet.  You also have to use a separate router with the Clear device if you have more than one computer (what fun).

The Solution: Just point all relevant traffic from the Clear device to your normal router, and set up your computer normally from there.

Creative Commons License photo credit: Patrick Hoesly

 

This post originally appeared on the Stronico blog – with the absorption of Stronico into Digital Tool Factory this post has been moved to the Digital Tool Factory blog


19
Apr 11


Written By Steve French

 

How to fix problems with SMTP on IIS 7/Windows Server 2008

Don't feed your daughter to the crocodilesThe Problem: You move servers, and for unknown reasons all smtp services stop working. You search forever, but there are no error messages being given and nothing in the event log

The Cause: For whatever reason, (in my case anyway) the server does not display the problem as an error, but as a warning in the event log, even the it is a record of an error.

The Solution: None that I can tell, just make sure to check the event log for warning where there should be errors.

Creative Commons License photo credit: tm-tm

 

This post originally appeared on the Stronico blog – with the absorption of Stronico into Digital Tool Factory this post has been moved to the Digital Tool Factory blog


05
Feb 11


Written By Steve French

 

How to fix problems with Clear Wireless internet service

Power-Tape-Measure_13331-480x360photo © 2010 Emilian Robert Vicol | more info (via: Wylio)
The Problem: You have have Clear Wireless internet service, as well as a wifi network, and you get periodic drops and random slowness.  You contact tech support, and they tell you to make sure that the wifi router and the Clear Wimax receiver are at least two feet apart.  That does make sense, since the two units are fighting for limited parts of the radio spectrum.  You move the two apart, but that does not fix the problem.

The Cause: What the tech support person actually meant by “at least two feet apart”  was “at least twelve feet apart”.

The Solution: Move the Clear Wimax unit twelve feet or more from the wifi router.    I did that and both my upload and download speed quadrupled!  It would have been nice for Clear to tell me that initially, but life is experimentation.

 

This post originally appeared on the Stronico blog – with the absorption of Stronico into Digital Tool Factory this post has been moved to the Digital Tool Factory blog


20
Jan 11


Written By Steve French

 

An update on the mysterious PhotoShop color shift

The problem started happening to me again recently, the information I found at this link fixed it.

 

This post originally appeared on the Stronico blog – with the absorption of Stronico into Digital Tool Factory this post has been moved to the Digital Tool Factory blog


29
Dec 10


Written By Steve French

 

How to prevent images and photos from being stolen your site

they're welcome 2itThe Problem: You need to prevent people from saving images and photos that are featured on your website

The Cause: There is no real solution to this – if you can see it online, you can copy it, but you can make it more difficult.

The Solution: Insert this bit of code in your BODY

tag ondragstart=”return false” onselectstart=”return false” oncontextmenu=”return false”

that’s it!

Thanks to HyperGurl for the initial start on this problem.

Creative Commons License photo credit: weegeebored

 

This post originally appeared on the Stronico blog – with the absorption of Stronico into Digital Tool Factory this post has been moved to the Digital Tool Factory blog


27
Dec 10


Written By Steve French

 

How to fix the copy file problem in C#

Cavalry moving forwardphoto © 1918 National Library of Scotland | more info (via: Wylio)The Problem: You need to copy a file from one location on the server to another and cannot remember how.

The Cause: It is too short and simple, and easily forgotten

The Solution: Just use the following code:

public static void CopyAndRenameFile(string OldPath, string OldFileName, string NewPath, string NewFileName)
    {
        if (File.Exists(OldPath + OldFileName))
        {
            File.Copy(OldPath + OldFileName, NewPath + NewFileName, true);
        }
    }

That’s it!

 

This post originally appeared on the Stronico blog – with the absorption of Stronico into Digital Tool Factory this post has been moved to the Digital Tool Factory blog


06
Dec 10


Written By Steve French

 

How to fix the “Unable to cast object of type” problem

Drill Bitsphoto © 2008 Justin Gurbisz | more info (via: Wylio) The Problem – you have several asp.net web controls (.ascx files) in your website project and for no obvious reason you suddenly get the error “Unable to cast object of type ‘YourWebControlName_ascx’ to type ‘YourWebControlName_ascx’.”  You recompile and the program works, then stops working.  You recompile and it works again, then it stops working, ad infinitum, but the working times become less frequent, and eventually the site stops working at all.

The Cause – ASP.net will cache the wrong things.  In my case I converted the project from a full solution to a regular website and did not remove the compiled files (SolutionName.dll) in the bin and obj directories, which compounded the problem.

The Solution – Delete everything in in the “Temporary ASP.net Files” directory, which (on my machine) was located here C:WindowsMicrosoft.NETFrameworkv2.0.50727Temporary ASP.NET Files.  Then delete everything in obj directory, and the solution files from the bin directory.  That should fit it!

This was more of a stupid error on my part than a great mystery, but problematic nonetheless.

 

This post originally appeared on the Stronico blog – with the absorption of Stronico into Digital Tool Factory this post has been moved to the Digital Tool Factory blog


03
Dec 10


Written By Steve French

 

How to fix the Login failed for user ‘IIS APPPOOLASP.NET v4.0’ error in IIS7 and Sql Server 2008

The Problem: You are trying to access a sql server database from your new ASP.net 4.0 site and get the error Login failed for user ‘IIS APPPOOLASP.NET v4.0’ error in IIS7 and Sql Server 2008 when logging in with the integrated security.

The Cause: The new default user for asp.net 4.0 does not have default login permissions.

The Solution: I was going to write this up, but GotToKnow.com does such an excellent job I thought I would just link to their post Login failed for user ‘IIS APPPOOLASP.NET v4.0’ error in IIS7.  It is an excellent site for that sort of information.

 

This post originally appeared on the Stronico blog – with the absorption of Stronico into Digital Tool Factory this post has been moved to the Digital Tool Factory blog


29
Oct 10


Written By Steve French

 

How to fix lengthy database records in SQL Server

The Problem: You wish to truncate database records, but you can’t remember how.  At first, Google is no help.

The Cause: You are using the term “Truncate” which is usually used to truncate a table, when all you really want to do is chop characters off of overly long database records.

The Solution: Use the “Left” syntax, as in

Select  LEFT(FullBizName, 45) AS FullBizNameShort From TableName

and that’s it!

 

This post originally appeared on the Stronico blog – with the absorption of Stronico into Digital Tool Factory this post has been moved to the Digital Tool Factory blog


20
Oct 10


Written By Steve French

 

How to fix being blocked by your web host

FiberThe Problem: For no known reason I became unable to reach my web host.  All of my websites and even the host’s public site vanished.  I could reach everything through remote desktop connections, but not from my home connection.  I had just backed up two gigs of files from one of my servers and I assumed that the web host had blocked me  (mistaken profiling).  After much back and forth with my host’s tech support team they unblocked my IP Address.  I still could not reach my host.  I inform tech support of that; they do some more digging, and they tell me that I had never been blocked at all.

I then think that my ISP (Comcast) has blocked me.  I call them, and after resetting every single part of my workstation’s DNS system, router, and modem I still cannot get to the web host.

We try connecting the workstation to the modem with a new network connection and Eureka!  It works!

I try accessing the sites again via the router, and then get the original error.  I scour the router admin screens (a four year old Linksys) and cannot find any restrictions.

I resign myself to buying a new router and do a hard reset (reverting back to the original configuation) of the existing router, just to see if that works.  It does not.  In fact, the entire router stops working.  I let it run for about 20 minutes and the router still has not reset itself.  I then do another hard reset (just for fun) and the router resets itself within 30 seconds and works perfectly.  I’m even able to get to my web host again.

The Cause: No idea, animal spirits and a gypsy curse seem to be the likely culprits.

The Solution: Two hard resets of the router seemed to do the trick, no idea why.  I did not have to get a new router, but I would like those four hours back though.

Creative Commons License photo credit: stars6 / Leonardo Rizzi

 

This post originally appeared on the Stronico blog – with the absorption of Stronico into Digital Tool Factory this post has been moved to the Digital Tool Factory blog


11
Oct 10


Written By Steve French

 




Copyright 2011 Digital Tool Factory. All Rights Reserved. Powered by raw technical talent. And in this case, WordPress.