Web Dev, Linux, WordPress & More

Archive for the ‘Linux’ Category

Ubuntu Linux Feisty Fawn Released!

by eric on April 19th, 2007 in: LinuxOpen Source

Canonical released Ubuntu Feisty Fawn, their latest edition of their insanely popular Linux distribution today.

(Read more…)

Linuxfest Northwest 2007

by eric on April 10th, 2007 in: Linux

Linuxfest Northwest 2007 is coming soon! If you’re a user, fan, or just want to know more about Linux and Open Source Software, this looks like a terrific opportunity to learn and network with like-minded folks.

The eighth annual Linuxfest Northwest takes place from 10:00 a.m. to 5:00 p.m., April 28 and 29, 2007 at Bellingham Technical College in Bellingham, WA. Exhibits, presentations, and parking are free. All ages are welcome.

Linuxfest Northwest 2007

I’m planning to be there. Let me know if you’re going too and maybe we can connect.

The only problem is that there are so many cool Presentations that I’m not sure where to start.

technorati tags:

Prevent File Browsing with .htaccess

by eric on January 21st, 2007 in: LinuxOther StuffWeb Design

Need to block access to a directory on your site?

If your hosting environment runs the Apache web server, you can simply create an .htaccess file in the directory you’d like to protect and insert the following code:

Options -Indexes

For example, say you’ve created a sub-folder on your site to hold images. Without protection, a user could visit http://yoursite.com/images/ and see a directory listing of the files and folders in the images directory.

By simply creating a file with the above line and saving it as .htaccess in the images directory, users will get an error rather than a directory listing when they visit the URL.

For more info on .htaccess, visit the Apache website.

technorati tags:,

Create custom error pages using .htaccess

by eric on January 19th, 2007 in: LinuxWeb Design

If you’re running a site on Apache’s web server, you can easily create custom error pages using Apache’s .htaccess file.

First, create or edit an .htaccess file in your public_html directory so that it has the following lines in it:

ErrorDocument 404 /myerrors/404.html
ErrorDocument 403 /myerrors/403.html
ErrorDocument 500 /myerrors/500.html

Here’s what each piece does:

(Read more…)