Want to empty your Google Drive Trash automatically? I finally have the solution for you. Make sure you use GOOGLE CHROME web browser for best results. Open Chrome and go to www.google.com Make sure you are signed into your Google account. If not, sign in. You should OBVIOUSLY have Google Drive account up and running…
webDNA Error: You are not allowed to change the price
If you are here for this: Error: You are not allowed to change the price under webDNA: How to fix: 1) look at the error text files. It will tell you which script is throwing the error. 2) edit that script and search for “password”. Find the webdna password. it will look like this: password=whatevermypasswordis…
Recaptcha V2 under classic ASP
Here’s a quick primer on upgrading your Classic ASP site Recaptcha V1 to V2. First, go to Google Recaptcha online and generate yourself a v2 pair of keys for your site’s domain. Next: On the page with the “FORM” on it on which you want to display the Recaptcha V2. Add to the HEADER (inside…
PIC XC8 suppress or disable warning and error messages
If you would like to turn off / suppress or disable certain XC8 Compiler warning or compiler error messages, it is very simple. Go here: and enter –msgdisable=xxx or –msgdisable=xxx,yyy you can also turn errors off –msgdisable=xxx:off,yyy:off,zzz
Cannot browse network neighborhood under Windows 10 Fall Creators update 1709 and newer
Once again, Microsoft has thrown a monkey wrench into the operation of how your network neighborhood (or “Network”) item under Windows 10 works. I had previously created this blog post which addressed the initial issues with Windows 10 not allowing the Network to show a list of all your local computers. Well, due to the…
Symantec Messaging Gateway sluggish under Hyper-V
Make sure you are NOT using dynamic memory. Hard set your memory to at least 8gb (8192mb). (this should do the trick). Also make sure you are using a hard drive size, fixed, of 60gb at minimum.
1080p HDTV as second monitor display blinks on and off while watching video
I have a second monitor which is a Philips 1080p 40 inch TV (that I switch the HDMI inputs to alternate between cable and a second monitor). When I play streaming video from YouTube on the monitor, the display blinks on and off continuously. This does NOT happen when using the Philips for TEXT displays…
sprintf or printf do not output float variables correctly
Have you run into situation under the MPLAB IDE where you are trying to output variables, but even though you have the format correct, a float variable outputs with a .0 value? Example (from somewhere else in code) AIRTEMP=751 ==== float adjustedtemp= 0.0; adjustedtemp= (AIRTEMP + 5)/10; printf(“Air Temp: %5.2f \r\n”, adjustedtemp); the result looks…
Coldfusion 10 and Windows Server – Installation Musings
Here are some various tips and tricks as part of my brain dump for the process to get ColdFusion 10 running under Windows Server 2016. Run the ColdFusion installer under compatibility mode – Windows 7 you must have the following installed under IIS CGI, ISAPI (both), ASP.NET make sure the APPPOOL for the site has 32…
Coldfusion with PostgreSQL – Timeout issue when setting up CF Data source
Upon trying to connect to a remote POSTGRESQL database server — which I can both PING fine and connect to using the Windows POSTGRESQL odbc 32 bit drivers — you get this error Connection verification failed for data source: mytest_postjava.sql.SQLException: Timed out trying to establish connectionThe root cause was that: java.sql.SQLException: Timed out trying to…