Published by llucica July 29th, 2009
in Uncategorized and Utilities and tools.
While attempting to change the IP address on my network card I get the following error message.
“Some of the controls on this property sheet are disabled because one or more other Network property sheets are already open”
Steps to reproduce:
- Open “network connections” from the control panel.
- Right click on “Local Area Connection” and click “properties”
Resolution:
- Download drivers for your current network card.
- Uninstall all your networks cards from (Control panel->System->Device manager)
- Restart your computer.
- Let windows attempt to install your network card for you. If windows can not find the correct network card drivers use the one you downloaded in step 1.
If you are still having problems you could try;
Did you like this post?
Subscribe To The RSS Feed!
To catch many more articles like this in the future, make it easy on yourself and subscribe to me via RSS. You will not regret it!
Do you have a question?
We will do our best to try and solve any building automation, protocol, integration problem you may have
Published by cpascu July 23rd, 2009
in Site and Web.
If you’re trying to password protect a subdirectory of your Drupal website using the traditional .htaccess and .htpassword method, you might be having trouble accessing the contents of the subdirectory. When trying to navigate to a page under the subfolder, Drupal simply displays it as not found.
There is a very easy fix for this. Simply add this line at the top of your .htaccess file:
ErrorDocument 401 “Unauthorized”
This must be done for every single subdirectory containing the .htaccess and .htpasswd files.
Your final .htaccess file would look something like this:
ErrorDocument 401 "Unauthorized"
AuthUserFile /locationofyoursubdirectory/.htpasswd
AuthGroupFile /dev/null
AuthName "Secure Document"
AuthType Basic
require user user1
require user user2
require user user3
require user user4
require user user5
After inserting that small line at the top of your .htaccess file, your subdirectories should be password protected but accessible, like intended.
Did you like this post?
Subscribe To The RSS Feed!
To catch many more articles like this in the future, make it easy on yourself and subscribe to me via RSS. You will not regret it!
Do you have a question?
We will do our best to try and solve any building automation, protocol, integration problem you may have
Published by cpascu July 3rd, 2009
in Site and Web.
Assigining your articles to corresponding categories is very important for helping your visitors navigate your MediaWiki site with ease. Thankfully, MediaWiki comes with an included system for handling categories.
To add an article to a category:
Simply edit the article you want to add to the category, and add the following line at the end of the contents:
[[Category: Nameofcategory]] (where Nameofcategory is your category name)
It doesn’t matter if the category does not exist or was never used before. MediaWiki will create a new page for each category containing all of the articles that were added to it.
Did you like this post?
Subscribe To The RSS Feed!
To catch many more articles like this in the future, make it easy on yourself and subscribe to me via RSS. You will not regret it!
Do you have a question?
We will do our best to try and solve any building automation, protocol, integration problem you may have