Posts tagged error
Error creating Virtual Port in 64bit Vista/ Windows 7 GPSGate
2If you getting error 1275 while creating virtual port for GPSGate in Vista/ Windows 7 64 bit, here is the fix from their forums..
If you use 64-bit Vista or Windows 7 please follow those steps.
(If you are unsure, simply install GpsGate normally first, if Virtual ports does not work – follow those steps)
(more…)
Tomcat does not start as service
0You have installed JDK latest version, and now you installed Tomcat, configfured to run as service but when you try and start it, it fails. Looking into the logs you see an error like his :
[2008-08-06 22:24:50] [info] Procrun (2.0.4.0) started
[2008-08-06 22:24:50] [info] Running Service…
[2008-08-06 22:24:50] [info] Starting service…
[2008-08-06 22:24:50] [174 javajni.c] [error] The specified module could not be found.
[2008-08-06 22:24:50] [994 prunsrv.c] [error] Failed creating java %JAVA_HOME%\jre1.6\bin\client\jvm.dll
[2008-08-06 22:24:50] [1269 prunsrv.c] [error] ServiceStart returned 1
[2008-08-06 22:24:50] [info] Run service finished.
[2008-08-06 22:24:50] [info] Procrun finished.
Tomcat startup eerrro as service
And that typo "eerrro" is not my doing
, it is tomcat only throwing this garbage into the log.
Most of the times, this is caused because of missing "msvcr71.dll". You can get it from http://www.dll-files.com/dllindex/dll-files.shtml?msvcr71
Copy it into your system directory, usually C:\windows\system32 and ensure that file has execute permission set. Tomcat should be able to run as service now.
Do you enjoy this blog? Do you find the information helpful? Then go ahead and treat me to a coffee or send me a tip! I love Barista's Cappuccino Cookie n Cream . Choose any amount you wish, whatever you feel this blog is worth to you.
Getting rid of the “This page contains both secure and nonsecure items” warning?
0Sometimes while you are visiting a secure site, you may see your IE show this warning message "This page contains both secure and nonsecure items. Do you want to display the nonsecure items?"
As a user this is not only inconvenient but some may find it a bit scary as well.
As a developer you must ensure that your users do not get any such warning, there are few things you must keep in mind. Most of the time such warnings are generated as result of including a non secure content like an image or stylesheet in the secure page with absolute URL which is using standard http protocol to get the content.
say "http://www.example.com" has an image "image.jpg" included in the page. The secure site, "https://www.example.com" is using the same image but the image source attribute is set as "http://www.example.com/image.jpg". here is your problem content. Copy the logo to the secure site and load it from there. All you need to do here is use "https://www.example.com/image.jpg" as the image source attribute and the user will no longer get the warning message about mixed content.
Sometimes this warning is also generated because of IFRAME tags in your page. If you have an IFRAME in your page, ensure that its source attribute is set. If there is no source attribute set for the IFRAME, or set to null, user will be displayed this warning message. When you set the src, make sure it points to a real file.
If you are unable to find the culprit content, try debugging it in Firefox, using the Web Developer extension or Firebug. These extensions allows you to look at detailed information including the paths of various objects/ contents in the page.
Do you enjoy this blog? Do you find the information helpful? Then go ahead and treat me to a coffee or send me a tip! I love Barista's Cappuccino Cookie n Cream . Choose any amount you wish, whatever you feel this blog is worth to you.