Featured Posts

Our Life as We Know itOur Life as We Know it October marked the time when life, my life that is, turn upside down. Well, o.k. not really upside down, but it sounded good in my head. Can't you hear the symphony in the...

Readmore

Creating Fluid Web Pages using Image BordersCreating Fluid Web Pages using Image Borders This week I have been working on a redesign of one of my web sites. The design of the website was acceptable by my client, but the desire was to maintain the same look of...

Readmore

Link Exchanges/Link Farms - Good or Bad The other day, I received a very courteous email from a webmaster looking to increase the rankings of his web pages. I have spent the last few days contemplating his request. First,...

Readmore

Google's New CaffeineGoogle's New Caffeine I am a sucker for Google's search engine. I use it over any other. However, from time to time I do look at the others just to see if I am missing anything special. Usually,...

Readmore

TeacherTube ReviewTeacherTube Review As a web designer, I help clients with video uploads quite a bit. One network that I have been known to use for video uploads is TeacherTube.com. The rules seem pretty...

Readmore

Hafner Designs Rss

How to Activate Verizon DSL for Linux

Posted on : 26-05-2008 | By : Heidi Hafner | In : Plugins, Software

Tags:

1

My family is a two Operating System family… I use Windows XP & he uses Linux. With this said, my husband recently built a Linux box for his father and went to set it up for him.

I, in turn, called up Verizon to set up DSL for him. I specifically asked Verizon if they had support for Linux users and they said Yes… So I proceeded.

The DSL modem arrived, with a CD and some papers explaining how to setup. However, as usual, it was all for Windows machines. We contacted Verizon, went through the automated answerer, which gave the options for Windows users, Mac users, or Other OS’s. We were slightly amused that when you get support for Other OS’s, they haven’t a clue what Linux is. Wonder what they mean by Other OS’s?

Anyway, I digress….

It was clear that we had to figure out how to hook up our own modem to the Linux box. I found several things on the Internet to help, but one helped the most… Ben’s Drivel was a tremendous help. Of course we found a few differences… so I am going to list the steps here.

1. Connect your DSL modem and turn it on. For simplicities sake, plug your computer directly into modem.

2. Open Firefox and type in 192.168.1.1 on the location bar.

3. The user name and password are username/password. Be sure to change this to something else once you log in.

4. (Note: At this point, we did not have a username or password. We had call Verizon only to find out that once you use the CD, it will generate the user name and password. I had to RE-EXPLAIN to them the we are hooking up a Linux box… Finally, they put me on hold and then generated a user name and password to use.) So, if you do not have a user name and password, contact Verizon and have them give you one.

5. Wait for the network to be detected, and then click on the green text “connected” in the left-hand pane.

6. Ben’s Drival says “Under broadband connection, click add.” However, we couldn’t find an “add” button or link. Instead, we saw Verizon listed with a Edit link. So, we clicked Edit and added our Verizon user name and password.

7. In Ben’s Drival he also says the following: “Click apply, and then back at the broadband connection screen, disconnect the “Auto registration” connection and then connect the new one you just made. Also, don’t forget to make it default.” Of course for us, we didn’t have any default to mark.. Also, we did not see anything for “Auto Registration.” This could be due to a difference in programs used or the distro of Linux used. We connected using the one we previously edited.

8. Once its connected, open a new browser window and browse to this address: http://192.168.1.1/verizon/redirect.htm …

9. Once the page is loaded, click disable.

10. Make sure this process worked by browsing to any web page.

11. Restart the modem to make sure everything is saved.

Perhaps one day Verizon will simplify this set up for Linux users. Until then, I hope this helps someone, just as Ben’s Drival helped us.

Technorati Tags:

Having trouble adding images in WordPress 2.5

Posted on : 04-05-2008 | By : Heidi Hafner | In : Blogs, Software, WordPress

Tags: ,

1

I am knew at installing WordPress. So, you can imagine the frustrations that I came across.

For me, I have a cPanel installation. It really is quite nice to just click a button and have it install automatically… all files and database… Installed! Cool Huh?! Yeah, well… didn’t work so easily. I ended up getting some help with the installation. After getting WordPress installed manually, my dashboard told me that I needed to update to 2.5. Hmm.

I found out that the WordPress that I had been working on can NO LONGER be upgraded with cPanel. Something, apparently got messed up with the integration between cPanel and WordPress. Great!

So, I call my tech support and beg them to help out with updating to the new version. They were glad to help out.

So now, the blog that I have installed (with a little help) won’t upload images… Oh man. Well, I did lots of lookups on the problem. First, I found out that the Permalinks has a script that it wants to add to the .htaccess, but can’t because the .htaccess is set to a 660 permission. So, I tried every combination, 777 worked best. I was able to upload images… but only once or twice. I found that when I logged out and then back in again the permissions changed on the .htaccess and WordPress still wanted permission to write to it and couldn’t.

Then I found some help in the WordPress Forums to add this script to my .htaccess:

<ifmodule mod_security.c>
<files async-upload.php>
SecFilterEngine Off
SecFilterScanPOST Off
</files>
</ifmodule>

So now my htaccess looks like this:

<ifmodule mod_security.c>
<files async-upload.php>
SecFilterEngine Off
SecFilterScanPOST Off
</files>
</ifmodule>

<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>

Well, I used that and it seemed to work for me, but not for my client couldn’t seem to make it work. We both use Firefox and it is the most current version.

Well, today I updated her blog again… I got tired of always changing the permissions to 777. I figure, hey maybe the most current, 2.5.1 will correct this problem. The image uploading seems to work fine for me.. but, sad to say, it doesn’t work for her.

To boot, I still have the permissions problem for the permalinks. I don’t understand why it needs to always add the same script over and over again.

Anyway, regarding the image uploads, I found this website Upload problems? Upgrade Flash that has a lot of different things to check such as what version of FLASH you’re using. So, now my goal is to find out why I can upload and she can’t.

If you have any ideas, let me know. At this point, I am out of ideas.

More later…

Technorati Tags: ,