Love disolves anxiety and depression

When creating a website, it is important to have a good directory/folder structure- instead of having all your files in the root directory next to you index.html file.

It may be fine in the beginning stages of your website, but after a few years when you have many pages up to hundreds or even a thousand- it then becomes very difficult to manage your website and find stuff, because all your files are all over the place in the root folder. This is what happened to me. All my files were in the root directory. I had to move them into another folder.

The best thing to do, which also helps search engine spiders and robots index your site better is to have different folders/directories for different types of content. For instance if I had known about this from the beginning I would have a folder named “health”, a folder named, “spiritual” etc- all the
the different types of content on my site. This offers better management, organization and indexing of your pages.

It is impossible to administrate your site properly when you have all your files in the root directory. If your website is only going to have a few pages then fine, but otherwise your are going to be stuck. You will need to do something about this as soon as possible before your site gets any bigger.

It sounds simple just to move files. But any webmaster knows that moving files may be a complete disaster- because each page on a website should always have a permanent web address. If you move a page somewhere else, Google and all major search engines will treat it as a new page. It will then be given a page rank of less than zero and may not appear in the SERPS. It would mean that nobody would be able to find your pages in Google at all to begin with. When someone clicks on a page through Google- that page will no longer exist. It may destroy all organic traffic to your website.

How to safely move and redirect web pages with Apache web server using .htaccess files.

I found an excellent way of resolving this problem using a special type of “redirect” whereby the pages and the page rank gets redirected. Even though the old version of the page in the root directory is no longer there, if sometime tries to access that- then Apache redirects or rewrites the URL to the new page. It is a very clean method of moving pages permanently. When someone types in the old page into the address browser, your web server rewrites it to the new address automatically- so people do not even know that they have been redirected. This technique prevents duplicate content and any of your pages disappearing temporarily from the Google SERPS. It means that any links to your old pages will be valid, and the page rank passed on. It is such as genius technique.

This technique is called, mod_rewrite.

You should have a file called, .htaccess in your root directory. If you do not then create a file and call it .htaccess.

For example I moved all my pages such as introduction.html out of the root directory to the folder, “way_to_happiness”.

To do this I would open up my .htaccess file and type the following:

RewriteEngine on
RewriteRule ^introduction\.html$ http://www.anxietymadewell.com/way_to_happiness/introduction.html [R=301,L]

Upload this to the root directory.

Now if you type, “http://www.anxietymadewell.com/introduction.html” into your browser see what happens. It gets rewritten to “http://www.anxietymadewell.com/way_to_happiness/introduction.html” automatically.

Then all your problems are solved.

Last night after publishing my article about Jesus’s sacred teachings of Love I starting to experience people having reactions to my site. I heard one person say, “It’s a Scam!”- which is quite funny. Other people think I am playing a practical joke, or involved in some kind or marketing scam. It is not a joke and I only ever follow my heart, and the truth that is within me- some may call it the Holy Spirit. I would only ever promote things I consider important, loving and true. My website comes from my heart with God’s blessings and divine guidance.

When your belief system becomes challenged, it can be difficult sometimes. But we are all prisoners to our cultural programming and beliefs.

The only true judge of anything- what is best for you- is your own heart. It is always a good idea to follow your heart as it always leads in the direction of your soul. Your heart is your best intuition for determining what is right and what is wrong, where to go, and how to discriminate between what is true and what is false.

The truth is always hidden in your heart, and your soul is the truth. Pray to God.

I wish you all the love, fun, happiness and above all- freedom.

Soon it will be Christmas time, a very auspicious time for getting in touch with Love and making Love your only goal in life. May Love set you free.

Lots of Love,

James

I have been writing and developing my very first ever PHP script- a feedback form for my website.

This uses a basic HTML form to gather some feedback information from your visitors. It then posts this information to a PHP file, which returns a confirmation page. It also gets your web server to email you the feedback.

Although it is so simple, it took me a long time. But in the end I have a professional looking script, which you are welcome to use for free and modify to your particular needs and website.

I used an open source captcha image script I found on Google with my feedback form to stop the possibility of robots visiting my site that fill out forms and send spam.

So here is the script for form.php:
<?php
session_start();
if(($_SESSION['security_code'] == $_POST['security_code']) && (!empty($_SESSION['security_code'])) ) {
// Insert you code for processing the form here, e.g emailing the submission, entering it into a database.
$output = ‘<html>
<head>
<title>Feedback Form- Confirmed</title>
<link rel=”stylesheet” href=”../css/feedback.css” type=”text/css”>
</head>
<h1>Dear ‘.$_POST["FirstName"].’, thank you for your feedback!</h1>

You entered the following details:
<ul>
<li>Your name is ‘.$_POST["FirstName"].’ ‘.$_POST["LastName"].’</li>
<li>You are ‘.$_POST["Age"].’ years old and ‘.$_POST["sex"].’</li>
<li>You are from ‘.$_POST["Country"].’</li>
<⁄ul>
<p>You rate this site: </p> <p class=”gold”>’.$_POST["Value"].’</p>
<p>Your reason for this: </p> <p class=”green”>’.$_POST["comments"].’</p></p>
<p>And this is your suggestion on how to improve the site: </p> <p class=”green”>’.$_POST["improvements"].’</p>
<br><br>
<p>Click <a href=”../index.html”>Here</a> to return back to the main page</p>.
</body>
</html>’;

$to = “example@example.com”;
$subject = “Online Feedback Form - Example.Com”;
$message = $output;
$from = $_REQUEST["EmailAddress"];
$headers = “From: $from”\r\n”;
$headers = “Content-type: text/html\r\n”;

mail($to,$subject,$message,$headers);

echo $output;

unset($_SESSION['security_code']);

} else {

// Insert your code for showing an error message here

echo “The security code you typed seems to be invalid. Please go back, reload the page and try again. The information you typed in should still be there. Thanks.”;
}

?>


This is an example of a form you can use in HTML along with the form.php file and how it matches up:

<code>
<html>
<body>
<fieldset>
<legend>

AnxietyMadeWell.Com Feedback Form:
</legend>
<form name=”input” action=”feedback.php” method=”post”>
First name:
<input type=”text” name=”FirstName” size=”20″>
Last name:
<input type=”text” name=”LastName” size=”20″>
<br><br>
Your age:
<input type=”text” name=”Age” size=”4″>
<br><br>
Your Country/Location:
<input type=”text” name=”Country” size=”20″>
<br><br>
Email address:
<input type=”text” name=”EmailAddress” size=”20″><br><br>

<input type=”radio” name=”sex” value=”Male”> Male
<br>
<input type=”radio” name=”sex” value=”Female”> Female

<br><br>

How do you rate this site?<br><br>

Excellent:
<input type=”radio” name=”Value” value=”Excellent”>

Good:
<input type=”radio” name=”value” value=”Good”>

Okay:
<input type=”radio” name=”value” value=”Okay”>

Bad:
<input type=”radio” name=”value” value=”Bad”>

Terrible:
<input type=”radio” name=”value” value=”Terrible”><br><br>

<textarea rows=”5″ cols=”30″ name=”comments”>Why?</textarea>

<br><br>

<textarea rows=”5″ cols=”30″ name=”improvements”>How could this site be improved?</textarea>

<br><br>

<img src=”CaptchaSecurityImages.php”>
Security Code:
<input id=”security_code” name=”security_code” type=”text” size=”5″>
<br><br>

<input type=”submit” value=”Submit”>

</form>
</fieldset>
</body>
</html>

Do you hate unnatural toxic chemical smells of underarm deodorant that make people smell worse than somebody with bad body odor? Would you rather smell naturally pleasant, sweet and healthy?

Lets talk about lemons…

Lemons are a natural cleanser and a powerful anti-bacterial and anti-septic- containing lots of natural healing qualities. If taken internally with water and honey there is a powerful cleansing and detoxifying effect on the body. Lemon with water and some honey helps regulate metabolism, body weight, and internally purifies the body. Try the amazing drink for an example. Drinks like this combined with natural diet and purifications of mind and emotions create a sweet natural smell in a person, like a baby.

Because of powerful antibacterial and antiseptic qualities, lemon can also be used for treating and cleansing any type of small cuts, insect bites, hemorrhoids or itchy sores. There may be some stinging at first (which is a sign that it is working) followed by permanent relief and speedy healing.

Because lemon juice destroys bacteria it is ideal as an underarm deodorant. It is completely natural and free from harmful chemicals, which can contribute towards cancer.

The best thing about lemons is that they offer more protection as an underarm deodorant. Take half a lemon, squeeze the juice and rub this into your armpits once or twice a week and then you are done. Lemon juice destroys your armpits ability to smell. It is the number one deodorant on the planet. Forget masking smells with traditional underarm deodorant! I repeat; lemon juice destroys your armpits ability to smell.

I am so impressed by lemons, since I have always hated normal deodorants with their unpleasant chemical toxic smells. They are so much more cheaper! So much more natural! So much more effective and powerful!

Why use unpleasant deodorant sprays when you have lemons?

Mostly when I talk about lemons as deodorant people think I am a little crazy or joking. But where did I get this crazy idea from, using lemons as deodorant? Well it was actually from a leading U.S doctor that specializes in treating cancer patients. He believes that a major cause of cancer particularly in women is underarm deodorant. This is especially true of women spraying their armpits with chemical deodorants after shaving. He has his whole family use lemons and will not let them touch usual underarm deodorants

Like him, I endorse lemons. Lemons are the way to go. Lemons are the way of the future! :)

BUY NOW. That’s right. Buy some lemons and try it for yourself.

Putting joking aside, If you use lemons instead of normal spray then your natural sexy sweet pleasant smell that is irresistible to the opposite sex will emerge. You can’t go wrong.

And the best thing is that you have got nothing to loose by trying lemons at no risk to you, for one day. I can guarantee that you will be satisfied. If the lemon that you buy is not for you then just simply throw it away. Then there is nothing stopping you from going back to your horrible unhealthy spray products. But I can guarantee when you experience the benefits you will not want to go back :)

The biggest reason for having a blog is that the Internet absolutely loves blogs. If you have a blog you can submit it to thousands of blog directories and RSS newsfeed directories. This means that a good quality blog can get you over a thousand backlinks to your website. This tremendously helps your website rank well in the search engines. Because of this it would be silly not to have a blog. Having a blog makes a lot of sense!

There are several other common reasons for having a blog as part of your website. A blog is a great way of…

  • Publishing your latest news
  • Keeping in contact with the world
  • Sharing professional knowledge and expertise
  • Talking about stuff you like or find interesting

Love = sharing. It is good share what you have, such as any knowledge or expertise including but not limited to your professional knowledge.

There is also a great need on the Internet for tips on search engine optimization and website development- for serious people with quality websites or those who want to bring something of value to the world. Think how many websites there are on the Internet that want to improve and do well? As my website becomes successful I will share my professional knowledge. Whatever you learn in life and whatever you are an expert in- you can share this with the world to help other people become successful.

If your website has quality content then people will naturally want to link to your site and it will become successful over time.

Recently I have been submitting pages from my website as syndicate articles, to article submission websites such as Ezinearticles and Digg. I thought that this would be a great way of marketing and promoting my content and a great way of building backlinks for my website and improving pagerank. I thought that as long there is a link back to my website in these articles then Google would be fine with this type of duplicate content. I was wrong.

This was the worst idea and I will never do it again. When Google finds multiple pages of the same content it will put all pages into dispute, which means Google may temporarily remove all of the duplicate content (including your original) from the search engine results pages until they decide who the original site/author is, or which site Google feels would be the best to display this content. If Google finds multiple pages/sites of the same content it will only index one of those pages/sites. After a day of high traffic you may find that all content disappears for a few hours, a few days or a few weeks whilst Google has a dance and makes a decision. So this can threaten the entire existence of your pages in the Google index.

Some say that if your syndicated articles have a link back to your own site- then you will be fine and it will help maintain and improve your page rank. But then any website that shows your article may loose their site/pages in the index. Also the article submission websites may not like this and end up deleting your articles, and all your content may be seen as spam by search engines.

Google is quite good at determining who the original site/author is, however at the end of the day having syndicated articles duplicated from your website content is not benefiting anybody at all. When lots of different publishers start using your duplicate content articles then this will severely threaten your pages existence in the Google index and undermine the exclusiveness and integrity of your content and website.

So far today I have been deleting all duplicate content from all article submission sites and emailing these sites asking them to remove the duplicate content. The lesson here is that although we like to look for the most efficient path in life, there are never any short cuts. If you want something in life you have to pay the bill in terms of hard work and energy.

The scary thing is that because some of my content is interesting and well written a lot of companies would like to publish this on their website. I am now in the process of telling webmasters that it would be detrimental for them as well as my own site to post this content on their website.

It is more safer and easier just to write unique articles for these sites, which don’t duplicate any website content. With a link back to your website, web publisher’s can then do what they like with your articles and this will help your page rank. If you follow this method it will save you a lot of anxiety. The best syndication is RSS news feeds, which I will be spending a lot of time on over the next few months or so.

How to avoid career and job mistakes in life choices? Develope a five year career development goal plan. Learn how to avoid making the wrong choices and develop skills and qualifications for anxiety free and happy job and family life. Anxiety is caused when we make the wrong choices in life. Wrong choices= wrong job, wrong partner or wrong living environment. Lets look at some of the mistakes I have made in my own life and how to avoid them.

Recently I have been fully engrossed in my spiritual mediation process and I have been treating life as just an illusion. Most of my free time is dedicated to austerities. This is good because it means I want enlightenment and oneness with God.

However this does not mean I have to neglect my life and choose one or other. One of the goals is to make my whole life a part of my spirituality. There is no reason that I can not live my life happy and to the full. So far I have been ignoring my life and not taking it as serious as I should. I envy people who have the freedom to live in India and dedicate their time and life to spirituality. But now I have got to wake up from that illusion.

Wake up call

In real physical life your job= your love. Your work is strongly related to your love life. If your love is not flowing in your work then it is impossible to truly fall in love. I believe a man should not put his weakness into a womans heart. A woman can not be truly happy in a relationship with a man who does office work/ administration/ management or boring government jobs. A man has to do a real job that creates real useful products or services that meet true and basic needs- to become a man of Love.

A man should be a strong foundation for supporting a family. When a man has a strong job and foundation with skills and qualifications to find work anywhere at anytime- then a woman can easily fall in Love. Subconsciously a woman likes to feel secure that this person can father her babies and take care of her-to provide food, love and shelter to make happy.

I feel I do not have permission to fall in Love, until I develop a strong foundation in life. Jesus has thrown some energy at me. His message is, “you can not put your weakness into a womans heart”. It is my duty to change my work. I am looking to change my career /job.

But where do I start? I am currently looking at my past experience and qualifications. My education, qualifications and skills are in psychology, publishing, design; and radio and video production.

My Goals

  • My goal is to become a symbol of HIs Love.
  • Ultimately to become one with God.
  • My career goal is do something I love in total freedom.
  • Become a spiritual healer, councilor or teacher.
  • To be strong and free in life.
  • Have a happy life and family.
  • Live in excellent vastu.
  • Bring spirituality to the world through media, such as publishing and radio.

A person does not have permission to take spirituality to Radio or TV until at least Nirvikalpa Samadhi is achieved- a breathless state of God union.

What should I have done? What mistakes can you avoid?

I feel that I should have avoided mistakes such as going for short cuts in life, easy money schemes, looking for easy work or avoiding real life work. I should have avoided laziness and created or offered real value in my life in terms of my job, skills and qualifications.

I feel I have wasted 7 years of my professional life. Instead of going to college or university I could have saved the money together and worked and traveled around the world before settling down to do an apprenticeship or scholarships to gain real experience and qualifications in a chosen field. When I left school I should have gone straight into a real life job, like construction worker, engineer or mechanic for instance. True happiness in life is a result of being strong and independent doing a job that is useful. Your job is your Love. When a man is happy and strong he is then qualified to enter a proper relationship and have a family.

If I had been more wise and avoided mistakes… if I had planed for a happy spiritual working life in my five year development plan… if I had worked to be qualified and gained useful skills and qualifications for an anxiety free life, then I would certainly be married with children by now.

My five year career development plan

My five year plan is to have a family and to be strong in life- in terms of the work that I do. In the next few months I will be researching job areas to find real work to do that will enable me to be all that I can be and provide for a family. I might take night classes to become a plumber for instance.

I shall be growing my website to reach people who are suffering, and really work for the people. But the bottom line is, when I go to work it has to be a real job, like counseling, healing, farmer or construction worker etc. If necessary it will have to be a lower salary and I will have to reduce any spending costs. This is a price I am considering for happiness. Hopefully I will get a good monetary return for the quality and usefulness of my work.

I hope that you can learn form my mistakes when it comes to developing your 5 year career development plan and aim for a real life happy job and career for the spiritual happiness of your family. Maybe you can avoid wasting years of your life by going to university. Or maybe make a headstart in life when you finish school or college and get into some useful work.