Your Mother Should Know

Empowerment | Courage | Strength | Happiness


  • <bgsound src="http://yourmothershouldknow.com/YourMotherShouldKnow.mid" loop=infinite> Theme Song

Tags




Better Water Gardens
Your ultimate guide to Water Gardens.
Find useful articles, news, links and resources for Water Gardens
  • SpringWidgets
    RSS Reader
    This widget is the staple of our platform. Read all your feeds right here with this one widget - Supported feeds are OPML, RSS, RDF, ATOM. Watch your favorite Podcast in the embedded Video Player on the Desktop or publish your own video playlist to your site for others to view!
Organic Bouquet

Archive for the 'Computers and Internet' Category

Are you a geek?

Watch Out!

12th September 2007

Share and Enjoy:These icons link to social bookmarking sites where readers can share and discover new web pages.
  • del.icio.us
  • YahooMyWeb
  • digg
  • Ma.gnolia
  • De.lirio.us
  • blogmarks
  • co.mments
  • NewsVine
  • feedmelinks

Posted in Online Business, Marketing and Promotion, Writing and Publishing, Computers and Internet | Comments Off

Fun With 404

24th June 2007

More Options Than 404

You know what happens when your browser asks a server for
a page that isn’t there. The server sends a status code to
the browser telling it “404 Not Found” — and your browser
gives you a message related to that.

Some browsers simply repeat what the server sent, with
maybe a line or two about which page wasn’t found. The
IE browser, if “friendly” error messages are specified in
preferences, might give you a page of whys and wherefores
and options and links and such which, if you’re so inclined,
you can wade through and come to the conclusion that the
page the browser tried to get doesn’t exist.

But the message doesn’t have to be “404 Not Found”. Several
other common messages are addressed in this article.

But first, let’s clarify how the browser and server talk to
each other — behind the scenes, so to speak. Stuff goes on
that you don’t see.


How Browser and Server Talk To Each Other

The browser asks for a web page file (or an image file or
a flash file or whatever). It’s a straight-forward “I want
this” with the URL of the file the browser wants. Sometimes
information in addition to the URL is sent to the server,
like the data of a form submission.

When the server responds, it first sends information just
for the browser. This header is one or more lines of plain
text.

When the server sends a blank line, the browser knows the
header information is done and anything that follows is to
be displayed in the browser window.

The information in the header varies. Some of the
information that can be in the header are cookies, an
indication of how much content follows the header, the
date the file was last updated, whether or not it is okay
to queue the page, and encrypted passwords.

Included in the header information is a status code.


More Than Just 404 Can Be Used

When the browser asks for a web page and the server is able
to find it and send it to the browser, a “200 Okay” status
code is sent in the header.

Search engine robots appear to servers as if they were
browsers. And search engine robots pay attention to the
status codes that servers send in the header.

When the server can’t find the requested page, the status
code is “404 Not Found” — usually. Several of the other
status codes the server might send to the browser when a
page isn’t available are

  • 301 Moved Permanently
  • 307 Temporary Redirect
  • 410 Gone

Each of those are addressed below.

301 Moved Permanently

This indicates the file at the URL was moved, permanently,
and the server can send the new URL to the browser.

Some browsers might display a “301 Moved Permanently” to
the user. Other browsers automatically redirect the user
to the new URL.

Search engine robots can make a note of the URL for
immediate or later indexing. They will probably remove
the old URL from the index.

When a file at a URL is moved, from
http://example.com/contact/index.shtml to
http://example.com/contact.html for example, this status
code can be sent to browsers and robots to let the software
know the status of the page, including its new location.

When people repeatedly ask for a non-existent URL, like
when another web site misspells the file name in a link, for
example, this status code can be used. Browser users and
robots can be sent to where they really wanted to go.

307 Temporary Redirect

The file at the URL has moved, temporarily, and the server
can send the temporary alternate URL to the browser.

Some browsers might display a “307 Temporary Redirect” to
the user, with or without additional information. Other
browsers automatically redirect the user to the temporary
alternate URL.

Search engine robots can make a note of the alternate URL.
They might or might not do an immediate or later indexing
of it.

When a URL is temporarily unavailable, browsers and robots
can be redirected to an alternate URL. For example, a URL
to a script that’s down for maintenance or modification can
be redirected to a page explaining the situation.

Suppose a webmaster has published a special page with a
sale or urgent news. The page will remain on the web site
only a few days. Lots of traffic to that page is desired.
In such or similar situations, several or many other URLs
of the web site can be set up to temporarily redirect all
their traffic to the special page.

410 Gone

The file at the URL is no longer available and the server
knows it is permanently gone.

This tells browsers and robots that the file at the URL is
intentionally unavailable and that remote links to the file
should be removed.

This status can be used for files that had been available
for a limited time, such as the special web page mentioned
in the previous section.

(If the server doesn’t know or can’t determine whether or
not the file is permanently gone, “404 Not Found” should
be used instead.)


Telling the Server What To Say

Two methods exist to tell the server what to say to
browsers, with the .htaccess file and with software.


Using .htaccess To Tell the Server What To Say

In the .htaccess file, type this line:

Redirect  ___A___  ___B___  ___C___

Replace the A, B, and C underscore sections with:

___A___
This is replaced with the status code number the server
shall send to the browser.

___B___
This is the URL-path of the missing file, the part of
the URL that’s left after the http:// and domain name
are removed. For example, the URL-path of
http://example.com/rover/index.html is /rover/index.html

___C___
This is the complete http://… new or alternate URL.
(Status code 410 would not have a URL here.)

Here are examples:

Redirect 301 /rover/index.html http://example.com/books.html
Redirect 307 /rover/index.html http://example.com/books.html
Redirect 410 /rover/index.html

The first example tells browsers and robots that
/rover/index.html has been permanently moved to new URL
http://example.com/books.html

The second example states that it’s a temporary redirect.

The third example says /rover/index.html is permanently
gone.

Entire directories can be redirected at once. Thus,

Redirect 301 /rover http://example.com/other

tells browsers and robots that every file in the “/rover”
directory is moved permanently to http://example.com/other
with corresponding file names.

Use a plain text word processor like NotePad or BBEdit when
typing the “Redirect…” lines into the .htaccess file. And
have the FTP program up/download the file as plain text
instead of binary.


Using Software To Tell the Server What To Say

Master 404-Terminator™ can be used to do things the
easy way.

This software lists all unhandled 404 URLs that browsers
and robots have attempted. You then specify how to handle
the request should it happen again.

Any of the 301, 307, 410 status codes can be specified. In
addition, a “403 Forbidden” status code is available to be
sent to browsers and robots — which in this case pretends
the file at the requested URL actually does exist but that
a password or other permission is required for access.

Master 404-Terminator™ accepts wild cards. This means
you can redirect entire directories or file name patterns
with the status code of your choice.

The manual contains instructions., but here is an example.

If you decide to use SSI on your web site and change all
your web page file names from .html to .shtml, these
form fields (everything is done in a control panel)

redirect  

replace

will catch all 404 URLs with .html file names and redirect
the browser/robot with status “301 Moved Permanently” to
the corresponding URL with file name extension .shtml

Easy. Quick. Painless setup.

Master 404-Terminator™ also has the option of replacing
a file instead of redirecting to a new file. This comes in
very handy for image, JavaScript, CSS, and other files that
pages require for proper display.
Use the same method as the redirect, except use the
“replace” radio button instead.

It can eliminate broken images and such on web pages.

Click here to read about Master 404-Terminator™


Will Bontrager, Programmer

© 2005, 2006 Bontrager Connection LLC

Master Series CGI programs

(Article syndication powered by Master Syndication Gateway V2)

Share and Enjoy:These icons link to social bookmarking sites where readers can share and discover new web pages.
  • del.icio.us
  • YahooMyWeb
  • digg
  • Ma.gnolia
  • De.lirio.us
  • blogmarks
  • co.mments
  • NewsVine
  • feedmelinks

Posted in Money, Online Business, Marketing and Promotion, Writing and Publishing, Computers and Internet | Comments Off

What’s the Value of Autoresponders?

24th June 2007

What’s The Value Of Autoresponders?

For pure ease of content delivery, ie. getting information into the hands of your customers, autoresponders can’t be beat.

Many kinds of autoresponders are available from the single item autoresponder to the ultimate Autoresponder Bank.

Scenario: you have a ton of information on your website; you want as much information in the hands of site visitors as you can manage. But your site is huge!

Will your visitors

  1. be able to find what they need to know?
  2. hang around your site long enough to read it?

What if you could get it into their hands by way of email?

The visitor enters their email address (and added to a database on your server, if you wish) and indicates by check box or radio button what documents s/he wants.
Then the documents- e-books, white papers, images, lists of links to follow - are all there on the visitors computer, delivered immediately by email. You now have a much better chance of getting your content read, understood, used and admired.

Now, let’s get your autoresponders easily available and accessible from a form on your web pages. A very small bit of web page real-estate is all you need to provide a form managed by the very cool and easy to use Master Info-Relay V3.

It is your Optimum Information Delivery System.

It is your site visitor’s Really Easy Information Retrieval System.

Master Info-Relay V3

  • One form accesses any autoresponder on the Internet.

  • Forms are generated with your own control panel.

  • Master InfoRelay handles relays to any autoresponder with an add/subscribe email address.

  • It relays to any discussion list, ezine, or other periodical with a list server that has an add/subscribe email address.

  • It will respond with information on your own server via text or HTML email, with or without attachments.

  • Databases may be updated with user’s email and name.

  • Is quite easy to install and use.

  • And it is available here.


Will Bontrager, Programmer

© 2005, 2006 Bontrager Connection LLC

Master Series CGI programs

(Article syndication powered by Master Syndication Gateway V2)

Share and Enjoy:These icons link to social bookmarking sites where readers can share and discover new web pages.
  • del.icio.us
  • YahooMyWeb
  • digg
  • Ma.gnolia
  • De.lirio.us
  • blogmarks
  • co.mments
  • NewsVine
  • feedmelinks

Posted in Online Business, Marketing and Promotion, Writing and Publishing, Computers and Internet | Comments Off

Fantasos

29th March 2007

Have you seen the movie “Independence Day?” Do you remember the scene when that HUGE spacecraft covers the city’s sky and hides the Sun?

This is how I felt when I watched this video

As it seems, JVManager 2 Fantasos, the next generation of JVManager is going to be HUGE… Like a BIG… HUGE Spacecraft…

You sit on the Captain’s cabin and control everything… (You can even “rent” the spacecraft to others: i.e., provide access to the system for a fee!!)

April 1 can be your “Independence Day” too: you can stop “playing” with other solutions and focus on the best online marketing platform offered on Earth…

Check it and be sure to sign up with the notification list for getting the discount of $500 and also the “7 Internet Marketing Omens.”

Share and Enjoy:These icons link to social bookmarking sites where readers can share and discover new web pages.
  • del.icio.us
  • YahooMyWeb
  • digg
  • Ma.gnolia
  • De.lirio.us
  • blogmarks
  • co.mments
  • NewsVine
  • feedmelinks

Posted in Money, Online Business, Marketing and Promotion, Computers and Internet | No Comments »

Why You Can’t Make Money Online

11th March 2007

free 36-page report - downloads in seconds

Private Label Rights, or PLR, can be extremely lucrative, but you need to know how best to use them to create the kind of website that does all the hard work for you, while you click “refresh” to watch your income increasing.

Steven Wagenheim has compiled a *free* 36-page report that explains why people who think they’re going to make money online, don’t. It’s brand new, up-to-date material, written in a very easy and fun style. If you’re trying to make a go of it online and not seeing results, this is the one report you need to read. It WILL make the difference; your mother should know.

Share and Enjoy:These icons link to social bookmarking sites where readers can share and discover new web pages.
  • del.icio.us
  • YahooMyWeb
  • digg
  • Ma.gnolia
  • De.lirio.us
  • blogmarks
  • co.mments
  • NewsVine
  • feedmelinks

Posted in Empowerment, Money, Online Business, Marketing and Promotion, Writing and Publishing, Computers and Internet | No Comments »

But She Doesn’t

11th May 2006

Your mother just can’t do it ALL! She should know about administering her blog. And she does know a lot more about it than some, but today, she was poking around in the Wordpress blog interface, curious about the ‘Import’ feature on the Dashboard, and decided to try importing an RSS feed into it.

When she found a .XML file within her ‘Application Data’ folder within her ‘FeedReader’ folder that said ‘feeds.xml’, she decided to experiment with it and import that into her blog. OOOPS!!

The little Firefox ‘loading’ icon kept whirring around, and it was maybe about a minute into this process when she decided she’d better abort the mission. Guess what happened?

357 posts were made in this blog, and they were from all the presets in FeedReader from ‘Moreover’, and had nothing to do with the empowerment of women, or anything your mother particularly wants to have show up in this blog, so she went into her phpMyAdmin to have a look at the damage she had done with this little experiment, and found all the posts there, and decided to try to get rid of them.

Well, long story short, your mother doesn’t know enough about database administration to do anything that sophisticated, and she ended up deleting all the posts within this blog. DUUUHHH!!

So this is the first “post-post” she’s submitting, and she’s just going to have to start all over again. Oh well, it had only just begun anyway, and your mother has a lot of obligations because she’s signed up for every affiliate program under the sun, and these advertisers would like to see links to their products here, and of course, her readers want to find informative articles too…

Mother’s going to have to step back and re-assess everything about what this blog is supposed to be. Please feel free to comment about what you’d like to see here. She could use all the help she can get. You may need to log in to comment. Don’t worry about anyone here using your email address to send SPAM. That’s not going to happen. If you’d like to be updated on whjat’s happening here, Mother is working on her newsletter and mailing list, and once that’s up and running, she’ll be sending out a weekly email to anyone who wishes to get updates.

She has just too much to do, and we’re doing our best to help her out, but we don’t really have much of a handle on everything either.

Share and Enjoy:These icons link to social bookmarking sites where readers can share and discover new web pages.
  • del.icio.us
  • YahooMyWeb
  • digg
  • Ma.gnolia
  • De.lirio.us
  • blogmarks
  • co.mments
  • NewsVine
  • feedmelinks

Posted in Courage, Empowerment, Strength, Marketing and Promotion, Self-Improvement, Women, Writing and Publishing, Computers and Internet, Events | 2 Comments »