<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments for Search engine script</title>
	<atom:link href="http://searchenginescript.biz/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://searchenginescript.biz</link>
	<description></description>
	<lastBuildDate>Tue, 21 Feb 2012 20:08:16 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
	<item>
		<title>Comment on IS ANYONE HAVING PROBLEMS WITH THE YAHOO MUSIC ENGINE AT THE MOMENT? by philcollins</title>
		<link>http://searchenginescript.biz/is-anyone-having-problems-with-the-yahoo-music-engine-at-the-moment-2/comment-page-1/#comment-4927</link>
		<dc:creator>philcollins</dc:creator>
		<pubDate>Tue, 21 Feb 2012 20:08:16 +0000</pubDate>
		<guid isPermaLink="false">http://searchenginescript.biz/is-anyone-having-problems-with-the-yahoo-music-engine-at-the-moment-2/#comment-4927</guid>
		<description>my end is fine..fixing? i cant give any true answer, sorry</description>
		<content:encoded><![CDATA[<p>my end is fine..fixing? i cant give any true answer, sorry</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Q&amp;AMP;A: HOW TO CREATE AN INTERNAL SEARCH ENGINE USING PHP AND HTML CODES ONLY? by dmwhitedragon</title>
		<link>http://searchenginescript.biz/qa-how-to-create-an-internal-search-engine-using-php-and-html-codes-only/comment-page-1/#comment-4922</link>
		<dc:creator>dmwhitedragon</dc:creator>
		<pubDate>Mon, 20 Feb 2012 19:04:12 +0000</pubDate>
		<guid isPermaLink="false">http://searchenginescript.biz/qa-how-to-create-an-internal-search-engine-using-php-and-html-codes-only/#comment-4922</guid>
		<description>Alot depends on *how* you need it to work and how the site is structured. More information would be needed to give a better answer... however :)

You can simply make a flat file to store information say keywords/short desc with a map to a file/link and search that file  (a simple &#039;flat file&#039; database in other words) however this would then be using html files, php files and a &#039;text&#039; file

The other way is to simply use PHP to open any HTML files and scan it for keyword matches. User searches for &#039;lovable dogs&#039; and you open a list of HTML files one by one either hard coded or every HTML file in a directory and search their contents for the keywords... that can be done simply with HTML and PHP only

I preffer to have a some kind of index... as opening all the files one by one will be a little slower and also some files might be locked (being uploaded via FTP at that point in time) so really its up to you i guess :)

If you need code simply look up your favourite PHP reference for file manipulation commands they are easy to use

EDIT:

Then you will have to go with the searching of all the files solution


Get list of files and loop
---&gt;open file and retrieve contents
---&gt;search contents for the keywords and if found record HTML file link .... say in an array
end loop

loop through array of results and format as result set to user

pretty simple... remember multiple users will access the search at the same time potentially so only open the file for shared access reading</description>
		<content:encoded><![CDATA[<p>Alot depends on *how* you need it to work and how the site is structured. More information would be needed to give a better answer&#8230; however <img src='http://searchenginescript.biz/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>You can simply make a flat file to store information say keywords/short desc with a map to a file/link and search that file  (a simple &#8216;flat file&#8217; database in other words) however this would then be using html files, php files and a &#8216;text&#8217; file</p>
<p>The other way is to simply use PHP to open any HTML files and scan it for keyword matches. User searches for &#8216;lovable dogs&#8217; and you open a list of HTML files one by one either hard coded or every HTML file in a directory and search their contents for the keywords&#8230; that can be done simply with HTML and PHP only</p>
<p>I preffer to have a some kind of index&#8230; as opening all the files one by one will be a little slower and also some files might be locked (being uploaded via FTP at that point in time) so really its up to you i guess <img src='http://searchenginescript.biz/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>If you need code simply look up your favourite PHP reference for file manipulation commands they are easy to use</p>
<p>EDIT:</p>
<p>Then you will have to go with the searching of all the files solution</p>
<p>Get list of files and loop<br />
&#8212;>open file and retrieve contents<br />
&#8212;>search contents for the keywords and if found record HTML file link &#8230;. say in an array<br />
end loop</p>
<p>loop through array of results and format as result set to user</p>
<p>pretty simple&#8230; remember multiple users will access the search at the same time potentially so only open the file for shared access reading</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on PASSWORD PROTECT CODE FOR A WEB PAGE OR HIDE FROM SEARCH ENGINES? by mike s</title>
		<link>http://searchenginescript.biz/password-protect-code-for-a-web-page-or-hide-from-search-engines-2/comment-page-1/#comment-4919</link>
		<dc:creator>mike s</dc:creator>
		<pubDate>Sun, 19 Feb 2012 18:57:32 +0000</pubDate>
		<guid isPermaLink="false">http://searchenginescript.biz/password-protect-code-for-a-web-page-or-hide-from-search-engines-2/#comment-4919</guid>
		<description>To protect your site from search engines you can simply use a robots.txt file, its a txt file you put in your document root with a list of directories on your website you do not want web spiders to crawl. To password protect your websites look at using a .htaccess file</description>
		<content:encoded><![CDATA[<p>To protect your site from search engines you can simply use a robots.txt file, its a txt file you put in your document root with a list of directories on your website you do not want web spiders to crawl. To password protect your websites look at using a .htaccess file</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on PASSWORD PROTECT CODE FOR A WEB PAGE OR HIDE FROM SEARCH ENGINES? by IT Major</title>
		<link>http://searchenginescript.biz/password-protect-code-for-a-web-page-or-hide-from-search-engines-2/comment-page-1/#comment-4918</link>
		<dc:creator>IT Major</dc:creator>
		<pubDate>Sun, 19 Feb 2012 18:04:31 +0000</pubDate>
		<guid isPermaLink="false">http://searchenginescript.biz/password-protect-code-for-a-web-page-or-hide-from-search-engines-2/#comment-4918</guid>
		<description>&lt;meta content=&quot;null&quot; name=&quot;revisit-after&quot;&gt;
&lt;meta name=&quot;distribution&quot; content=&quot;local&quot;&gt;
&lt;meta http-equiv=&quot;pragma&quot; content=&quot;no-cache&quot;&gt;
&lt;meta name=&quot;robots&quot; content=&quot;index&quot;&gt;</description>
		<content:encoded><![CDATA[<p><meta content="null" name="revisit-after"><br />
</meta><meta name="distribution" content="local"><br />
</meta><meta http-equiv="pragma" content="no-cache"><br />
</meta><meta name="robots" content="index"></meta></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Q&amp;AMP;A: I WANT TO START MY OWN BUSINESS IN SEARCH ENGINE OPTIMIZATION,BUT I DON&#8217;T HAVE CLIENT.HOW CAN I DEVLOP CLIENT? by SEO Consultant</title>
		<link>http://searchenginescript.biz/qa-i-want-to-start-my-own-business-in-search-engine-optimizationbut-i-dont-have-client-how-can-i-devlop-client/comment-page-1/#comment-4913</link>
		<dc:creator>SEO Consultant</dc:creator>
		<pubDate>Fri, 17 Feb 2012 17:06:55 +0000</pubDate>
		<guid isPermaLink="false">http://searchenginescript.biz/qa-i-want-to-start-my-own-business-in-search-engine-optimizationbut-i-dont-have-client-how-can-i-devlop-client/#comment-4913</guid>
		<description>I have been in the SEO business for over 15 years. It is profitable&#039; but takes time. Be sure you have set up a good budget for marketing, mailings, brochures, presentations to possible clients, blogs, pod casts, a good sample of proof of services etc. Get some good PR&#039;s out as well, write articles and submit , do social networking with professional networking sites...there is much more involved as well, and all cannot be mentioned here, but, not withsatnding here is some tips:

Starting your own SEO business is an adventure.  One of the many aspects of starting out as an SEO is finding clients. 

1) Get a website or a blog - If you don’t have one already, the fastest and easiest way to start is with a blog. With a blog, not only can you blog, but you can also add pages, such as a “services” page, “contact” page, etc. Buy a domain and get a web host, and host your own WordPress blog. This way all of your blog posts contribute to the content and indexing of your own domain that you can take with you even if you change web hosts. Make sure clients can easily email and call you, show that you are a real person. Don’t plaster your picture all over your site, because it’s not about you. Don’t forget to blog on your new blog. Blogging helps you learn as you think of what to blog about. Sometimes you can just start with an idea you might have from reading another blog post and continue the discussion. Lee Odden suggests starting by blogging about your niche specialty and even submitting to some of the SEO news sites.

2) Keyword List and Content - Create a keyword list (AKA keyword glossary) for reference when you blog, but also build content based on your keyword list. Write an article or web page for each keyword to start. Each of these should be useful, helpful, and interesting, and each creates an entrance page for potential customers to find you through the search engines and through pay per click advertising (use these as landing pages for specific terms). Add an image to your blog posts and pages to make it visually appealing. The more content you have, the more “doors” you have to your website based on different keywords and phrases. You’d be surprised at what terms people use and end up at your site. For example, we now rank in the top 10 of Google for “santa’s favorite cookie” because of a post about using Google to find Santa’s favorite cookie.

3) Local businesses - One of your best bets is going to be local businesses. If you need to get some quick clients you are going to need to find them yourself. Some will have a website, others will not at all. There are lots of approaches to contacting these businesses. I suggest you find a dozen or so businesses that you would like to approach. Set aside an entire day, about 30-45 minutes for each business. Look for their website, and check for a few simple SEO things, such as optimized title and header tags, content needs, backlinks, etc. and write up a few points for each business. Then start a keyword list for each business (SoloSEO has an easy keyword site scan feature) of keywords 2-4 words in length that you would think that most people would use if they were looking for their service. Be sure to include the name of their business and their domain name. Run a keyword ranking report and see how they fare in the rankings, and print out this report. Spend the next day visiting these businesses (dress nice, professional) and talking to owners and managers (be sure to bring business cards). Tell them you specialize in search marketing and whatever your niche is, and have a few tips to help their business. Listen first and see what their needs are and what they are doing about them, if anything. Give them your SEO suggestions for their site and the ranking report, and do it in a no obligation way. Briefly tell them what your services could do to help them out, and ask if they are interested in discussing it further. Be sure to do your homework on local search, and know what things they could do to jump into local search.

If the business does not have a website, suggest how a website could help them. Even if you don’t design websites, you can work with a business or individual that does and offer it as a service along with your SEO services.

4) Pro bono work - Find business associations or charities that wouldn’t ever really consider hiring an SEO, and do pro bono work for them. This gives you an opportunity to explain search marketing and optimization to them, then they in turn are in a position where they would recommend you to others. This also helps create a track record, so after you’ve done some work and helped increase rankings, traffic, and conversions, you can tell others what you did for them and use them as a reference. SoloSEO has a feature that will track site statistics over time (backlinks, pagerank, Alexa Rank) and you can save keyword ranking reports for comparing them over time.

5) Start networking - Plan now on attending SES New York and PubCon. These conferences are well attended by people just like you, some who have been doing it for years, some just as long as you, and others who are gearing up to start. Some SEOs will have so many clients they will be looking for someone reliable to pass on the overflow to. Go to as many sessions as you can and talk to speakers afterwards with real questions (not just hey, just wanted to meet you).

These steps you can start on today to get yourself ahead in the growing field of SEO. Of course there is much more work involved than this, but these steps are certain to get you to the next level in getting new SEO clients.

http://ontheavenues-diy-seo.blogspot.com/
http://www.ontheavenues.com/</description>
		<content:encoded><![CDATA[<p>I have been in the SEO business for over 15 years. It is profitable&#8217; but takes time. Be sure you have set up a good budget for marketing, mailings, brochures, presentations to possible clients, blogs, pod casts, a good sample of proof of services etc. Get some good PR&#8217;s out as well, write articles and submit , do social networking with professional networking sites&#8230;there is much more involved as well, and all cannot be mentioned here, but, not withsatnding here is some tips:</p>
<p>Starting your own SEO business is an adventure.  One of the many aspects of starting out as an SEO is finding clients. </p>
<p>1) Get a website or a blog &#8211; If you don’t have one already, the fastest and easiest way to start is with a blog. With a blog, not only can you blog, but you can also add pages, such as a “services” page, “contact” page, etc. Buy a domain and get a web host, and host your own WordPress blog. This way all of your blog posts contribute to the content and indexing of your own domain that you can take with you even if you change web hosts. Make sure clients can easily email and call you, show that you are a real person. Don’t plaster your picture all over your site, because it’s not about you. Don’t forget to blog on your new blog. Blogging helps you learn as you think of what to blog about. Sometimes you can just start with an idea you might have from reading another blog post and continue the discussion. Lee Odden suggests starting by blogging about your niche specialty and even submitting to some of the SEO news sites.</p>
<p>2) Keyword List and Content &#8211; Create a keyword list (AKA keyword glossary) for reference when you blog, but also build content based on your keyword list. Write an article or web page for each keyword to start. Each of these should be useful, helpful, and interesting, and each creates an entrance page for potential customers to find you through the search engines and through pay per click advertising (use these as landing pages for specific terms). Add an image to your blog posts and pages to make it visually appealing. The more content you have, the more “doors” you have to your website based on different keywords and phrases. You’d be surprised at what terms people use and end up at your site. For example, we now rank in the top 10 of Google for “santa’s favorite cookie” because of a post about using Google to find Santa’s favorite cookie.</p>
<p>3) Local businesses &#8211; One of your best bets is going to be local businesses. If you need to get some quick clients you are going to need to find them yourself. Some will have a website, others will not at all. There are lots of approaches to contacting these businesses. I suggest you find a dozen or so businesses that you would like to approach. Set aside an entire day, about 30-45 minutes for each business. Look for their website, and check for a few simple SEO things, such as optimized title and header tags, content needs, backlinks, etc. and write up a few points for each business. Then start a keyword list for each business (SoloSEO has an easy keyword site scan feature) of keywords 2-4 words in length that you would think that most people would use if they were looking for their service. Be sure to include the name of their business and their domain name. Run a keyword ranking report and see how they fare in the rankings, and print out this report. Spend the next day visiting these businesses (dress nice, professional) and talking to owners and managers (be sure to bring business cards). Tell them you specialize in search marketing and whatever your niche is, and have a few tips to help their business. Listen first and see what their needs are and what they are doing about them, if anything. Give them your SEO suggestions for their site and the ranking report, and do it in a no obligation way. Briefly tell them what your services could do to help them out, and ask if they are interested in discussing it further. Be sure to do your homework on local search, and know what things they could do to jump into local search.</p>
<p>If the business does not have a website, suggest how a website could help them. Even if you don’t design websites, you can work with a business or individual that does and offer it as a service along with your SEO services.</p>
<p>4) Pro bono work &#8211; Find business associations or charities that wouldn’t ever really consider hiring an SEO, and do pro bono work for them. This gives you an opportunity to explain search marketing and optimization to them, then they in turn are in a position where they would recommend you to others. This also helps create a track record, so after you’ve done some work and helped increase rankings, traffic, and conversions, you can tell others what you did for them and use them as a reference. SoloSEO has a feature that will track site statistics over time (backlinks, pagerank, Alexa Rank) and you can save keyword ranking reports for comparing them over time.</p>
<p>5) Start networking &#8211; Plan now on attending SES New York and PubCon. These conferences are well attended by people just like you, some who have been doing it for years, some just as long as you, and others who are gearing up to start. Some SEOs will have so many clients they will be looking for someone reliable to pass on the overflow to. Go to as many sessions as you can and talk to speakers afterwards with real questions (not just hey, just wanted to meet you).</p>
<p>These steps you can start on today to get yourself ahead in the growing field of SEO. Of course there is much more work involved than this, but these steps are certain to get you to the next level in getting new SEO clients.</p>
<p><a target="_blank" rel="nofollow" href="http://searchenginescript.biz/goto/http://ontheavenues-diy-seo.blogspot.com/"  rel="nofollow">http://ontheavenues-diy-seo.blogspot.com/</a><br />
<a target="_blank" rel="nofollow" href="http://searchenginescript.biz/goto/http://www.ontheavenues.com/"  rel="nofollow">http://www.ontheavenues.com/</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Q&amp;AMP;A: I WANT TO START MY OWN BUSINESS IN SEARCH ENGINE OPTIMIZATION,BUT I DON&#8217;T HAVE CLIENT.HOW CAN I DEVLOP CLIENT? by Anup B</title>
		<link>http://searchenginescript.biz/qa-i-want-to-start-my-own-business-in-search-engine-optimizationbut-i-dont-have-client-how-can-i-devlop-client/comment-page-1/#comment-4912</link>
		<dc:creator>Anup B</dc:creator>
		<pubDate>Fri, 17 Feb 2012 16:32:49 +0000</pubDate>
		<guid isPermaLink="false">http://searchenginescript.biz/qa-i-want-to-start-my-own-business-in-search-engine-optimizationbut-i-dont-have-client-how-can-i-devlop-client/#comment-4912</guid>
		<description>If you are confident of your abilities, I can give you projects to do on a freelance basis. Write to me at anup@searchenginerankings.com.au</description>
		<content:encoded><![CDATA[<p>If you are confident of your abilities, I can give you projects to do on a freelance basis. Write to me at <a href="mailto:anup@searchenginerankings.com.au">anup@searchenginerankings.com.au</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Q&amp;AMP;A: I WANT TO START MY OWN BUSINESS IN SEARCH ENGINE OPTIMIZATION,BUT I DON&#8217;T HAVE CLIENT.HOW CAN I DEVLOP CLIENT? by satya</title>
		<link>http://searchenginescript.biz/qa-i-want-to-start-my-own-business-in-search-engine-optimizationbut-i-dont-have-client-how-can-i-devlop-client/comment-page-1/#comment-4911</link>
		<dc:creator>satya</dc:creator>
		<pubDate>Fri, 17 Feb 2012 16:08:49 +0000</pubDate>
		<guid isPermaLink="false">http://searchenginescript.biz/qa-i-want-to-start-my-own-business-in-search-engine-optimizationbut-i-dont-have-client-how-can-i-devlop-client/#comment-4911</guid>
		<description>yes  i am Looking  for  seo expert  too  for my newly upcoming  site  www.allhosters.com Its  fully web hosting   guide  ,  Du know   
how  to do it ?</description>
		<content:encoded><![CDATA[<p>yes  i am Looking  for  seo expert  too  for my newly upcoming  site  <a target="_blank" rel="nofollow" href="http://searchenginescript.biz/goto/http://www.allhosters.com"  rel="nofollow">http://www.allhosters.com</a> Its  fully web hosting   guide  ,  Du know<br />
how  to do it ?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Q&amp;AMP;A: HOW CAN I GET GOOGLE CO-OP (CUSTOM SEARCH ENGINE) TO INCLUDE YAHOO! ANSWERS&#8217; INDIVIDUAL CATEGORIES OR PAGES? by Jason King</title>
		<link>http://searchenginescript.biz/qa-how-can-i-get-google-co-op-custom-search-engine-to-include-yahoo-answers-individual-categories-or-pages/comment-page-1/#comment-4906</link>
		<dc:creator>Jason King</dc:creator>
		<pubDate>Thu, 16 Feb 2012 15:07:44 +0000</pubDate>
		<guid isPermaLink="false">http://searchenginescript.biz/qa-how-can-i-get-google-co-op-custom-search-engine-to-include-yahoo-answers-individual-categories-or-pages/#comment-4906</guid>
		<description>That&#039;s a really good question. I&#039;ve built a custom search site at www.boatr.org.uk and you&#039;ve got me thinking I should get it to search Yahoo Answers for boating-related discussions.

Using a Google search I found your question easily enough so Google obviously spiders YA effectively. But the YA url had nothing I could get a handle on.

However, there is an API for YA which shows that you can search it by category etc from your own site. Maybe the answer is in there but it could be a complex mashup!</description>
		<content:encoded><![CDATA[<p>That&#8217;s a really good question. I&#8217;ve built a custom search site at <a target="_blank" rel="nofollow" href="http://searchenginescript.biz/goto/http://www.boatr.org.uk"  rel="nofollow">http://www.boatr.org.uk</a> and you&#8217;ve got me thinking I should get it to search Yahoo Answers for boating-related discussions.</p>
<p>Using a Google search I found your question easily enough so Google obviously spiders YA effectively. But the YA url had nothing I could get a handle on.</p>
<p>However, there is an API for YA which shows that you can search it by category etc from your own site. Maybe the answer is in there but it could be a complex mashup!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on HOW DO I MAKE MY OWN SEARCH ENGINE? by O_O Hi There O_O</title>
		<link>http://searchenginescript.biz/how-do-i-make-my-own-search-engine-3/comment-page-1/#comment-4899</link>
		<dc:creator>O_O Hi There O_O</dc:creator>
		<pubDate>Tue, 14 Feb 2012 13:06:03 +0000</pubDate>
		<guid isPermaLink="false">http://searchenginescript.biz/how-do-i-make-my-own-search-engine-3/#comment-4899</guid>
		<description>A Search engine would be very complex to make. Dont even bother anyway, I mean i use google. I dont care about BING or ASK. Google is leader, and maybe 100 people will use your engine, then will turn to google. It&#039;s not that rewarding. Just stick with google powered...</description>
		<content:encoded><![CDATA[<p>A Search engine would be very complex to make. Dont even bother anyway, I mean i use google. I dont care about BING or ASK. Google is leader, and maybe 100 people will use your engine, then will turn to google. It&#8217;s not that rewarding. Just stick with google powered&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on MY SITE HAS BEEN PUBLISHED FOR NEARLY A YEAR, BUT WHY IT STILL CAN&#8217;T BE FOUND ON SEARCH ENGINES? by Andrew C</title>
		<link>http://searchenginescript.biz/my-site-has-been-published-for-nearly-a-year-but-why-it-still-cant-be-found-on-search-engines-2/comment-page-1/#comment-4896</link>
		<dc:creator>Andrew C</dc:creator>
		<pubDate>Mon, 13 Feb 2012 13:32:40 +0000</pubDate>
		<guid isPermaLink="false">http://searchenginescript.biz/my-site-has-been-published-for-nearly-a-year-but-why-it-still-cant-be-found-on-search-engines-2/#comment-4896</guid>
		<description>There is a science to making your site pop on search engines beyond paying for it.  Some of it has to do with traffic, but there are other ways to improve results.  I would recommend doing some research regarding SEO (Search Engine Optimization).</description>
		<content:encoded><![CDATA[<p>There is a science to making your site pop on search engines beyond paying for it.  Some of it has to do with traffic, but there are other ways to improve results.  I would recommend doing some research regarding SEO (Search Engine Optimization).</p>
]]></content:encoded>
	</item>
</channel>
</rss>

