Macbook Cannot Connect

April 28, 2011

Filed under: Technical — naldope @ 11:51 am

This morning my Macbook Pro could not connect to my wireless network, but all my other wireless devices (i.e. Macbook, PC, iPhone…) could connect fine. I tried several things to fix the issue, such as creating a new Location in the Network pane in the System Preferences area. I even tried to re-naming my network SSID and password (which meant updating all my other wireless devices — such a pain).

But still, no connection! I read about deleting the “SystemConfiguration” folder within the “/Library/Preferences/” folder and re-booting and I tried that — again, no connection. Then I tried removing all password and keychain records regarding my wireless network through the KeyChain Access app in the Utilities folder.

Finally, I read about someone resetting their PRAM and re-booting. After re-booting and attempting to connect to the wireless network, it worked!

So, the steps I did to fix my wireless connection on my Macbook Pro were as follows:

  1. Go to “Macintosh HD/Library/Preferences/SystemConfiguration/” folder and remove it. (Maybe you should back it up first.)
  2. Open KeyChain app from “Applications > Utilities > Keychain” and remove all instances where your wireless network passwords exist.
  3. Open System Preferences pane and select Network. Nothing should exist because of your actions in Step 1 above. From Location dropdown, select “Edit Locations…”
  4. And create a new location called “Automatic” by clicking the + button. Then select “Done”.
  5. Finally, the PRAM needs to be reset by performing the following actions:
    • Shut down the computer
    • Find the following keys: Command, Option, P, and R.
    • The above keys must be pressed at the same time before the gray screen appears. Do this upon re-starting the computer.
    • Now, re-start the computer.
    • Immediately, press all the keys (Command, Option, P and R) at the same time.
    • Hold these keys until the computer restarts again and you hear the startup sound for the second time.
    • Release the keys and let it start up normally.
  6. After successfully re-booting, try to connect again to your wireless network. It may prompt you again for your password, but should now work.

The above worked for me. You should backup your data before attempting the above. Also, my wireless security is WPA2 Personal. Your setup may work by just using WEP, but that isn’t as secure as WPA.

Adding www automatically

April 17, 2011

Filed under: Technical — naldope @ 9:39 pm

I noticed when I go to some sites like google.com, it automatically adds the “www” to it. However, with my site, it never did that. So, I figured I should change that for consistency.

If you are running your website on Apache and you want to automatically add “www” to the domain, then you can do the following:

  1. Create an .htaccess file
  2. Within the .htaccess file, add the following
    # force www in url
    RewriteEngine On
    RewriteCond %{HTTP_HOST} ^yourdomainnamehere.com
    RewriteRule ^(.*)$ http://www.yourdomainnamehere.com/$1 [R=301]
    # END force www in url
  Newer PostsOlder Posts  

What I Do

Website Creation

The graphic design and implementation of websites using XHTML, CSS, and other web technologies

Application Development

Static websites become web applications, once more functionality is added allowing users to perform various tasks

Print & Graphics

Custom graphics and print collateral can be created to match your company's branding or marketing strategy

Search Engine Optimization (SEO)

To improve a website's search rankings on various search providers, SEO techniques involve a sites' coding and structure

Content Management Systems

These custom or pre-built web applications allow owners/authors of a site to add and edit their own website content

PSD to XHTML Implementation

Transforming the graphic layout of a graphic artist to a actual working prototype of a website.
To Top

Powered by WordPress