Why are people buying this $50 WordPress Plugin (worth $100) when you can accomplish something extremly simular for free with ONE line of code?なぜ人がこの$ 50ワードプレスプラグイン(価値$ 100 )したときのコードの1行で何かを成し遂げることができる非常に無料で偽りの買いは何ですか?

Don’t Waste Money On The Simple Things… 廃棄物の簡単なものにはお金を行う ...
I happened upon DealDotCom last Wednesday Sept 19th (I’ma regular WOOTer as well) and saw they had a spiffy new product: WP Affiliate Pro .私DealDotCom時前水 9月(私は定期的にもWOOTer ) 第19回起きたが、それらは気の利いた新製品:いた見たアフィリエイトプロWPを採用 This WordPress application looks great and is very useful indeed.このワードプレスのアプリケーションは本当に素晴らしいと非常に便利ですね。 I need to give credit to the author for coming up with it in the first place.私は著者には、 1位に上がってくるの信用を与える必要がある。 Its functionality allows you to insert affiliate links into your blog quickly and easily based on existing text found throughout your blog and track its success.その機能を自分のブログにアフィリエイトのリンクを迅速かつ容易に既存のテキストを挿入するようにあなたのブログを見に基づいて、その成功を追跡することができます。 It is professionally done and is functional.専門的で機能的に行われます。 You defiantly get what you pay for.あなたがあなたに何を支払うふてくされている。 With a large enough site I’m sure you’ll see a return on your investment. John Chow bought this but that’s to be expected with a site that large.私はあなたジョンチョウお客様の投資の見返りが表示されます確信している大規模なサイトで購入したこのサイトでは、大型が期待されているとしている。 But he too could have gotten it for NOTHING.しかし、彼も何の役にもそれをもらっていない可能性がある。

If you’re not a very large site… 場合は非常に大規模なサイトではない ...
Here’s the kicker… Its on DealDotCom for $49.88 (which if that’sa deal I’m afraid to ask what it was before hand - UPDATE it was $97).ここからが本題...そのDealDotComで49.88ドル(契約の場合、これは残念ながらそのよう手を前に、何であったのかは聞いて-アップデートは、 I T9 7ドルだった) 。 This makes me sad.これは悲しくなる。 Why on earth would someone pay almost $50 for that software when you can quickly integrate something similar with ONE line of code.地球上の理由とするときにすぐにコードの1行で何か似たようなソフトウェアを統合することができますが、ほぼ50ドルを支払っている。

Granted this single line of code does not offer tracking features, but with the quick creation of a table in mySQL and two or three more lines of code you can easily integrate tracking.追跡機能を提供していませんが、この1行のコードの許可やコードの2つまたは3つのラインを簡単にトラッキングを統合することができますMySQLのテーブルの迅速な作成した。 Four more lines would give you a nice little reporting page. 4行は、すてきなほとんどのレポートページを与えるだろう。 If I get enough comments (and time) I’ll write that out as well, but for now here’s something you can work with.であれば、十分なコメントを私は、外にも書くよ(と時間)になるが、今ここにあなたに仕事ができるのか。 This example will replace “google” (not case sensitive) with a link to their site in every post on your site.この例で" "あなたのサイト上のすべてのポストに自分のサイトへのリンクを(大文字小文字を区別) Googleの置き換えられる予定です。 You can replace the link with your affiliate ID to make some income on the referrers or use it with your other affiliate products.場合は、参照元にいくつかの所得をしたり、他の系列会社の製品で使用するIDをアフィリエイトのリンクを置き換えることができます。

Locate: wp-includes/template-functions-post.phpを見つけ: wp-includes/template-functions-post.php
Find: $content = get_the_content($more_link_text, $stripteaser, $more_file);して下さい: $コンテンツ= get_the_content ( $ more_link_text 、 $ストリッパー、 $ more_file ) ;
Insert this below: $content = str_replace(” google “, ” < a href="http://www.robmalon.com/" mce_href="http://www.robmalon.com/" >Google< /a> “, mb_strtolower($content, mb_detect_encoding($content)));挿入は以下の通りです: $コンテンツ= str_replace (以下、 " Google " 、 "の< a href = " http://www.robmalon.com/ " mce_href = " http://www.robmalon.com/ " > Googleについて< / a > " 、 mb_strtolower ( $コンテンツ、 mb_detect_encoding ( $コンテンツ) ) ) ;

I’m sure you’re going to have more then one replace though so lets put this stuff in an nice array for multiple substitutions:僕は君をして1つは、複数の置き換えのためのすてきなので、この配列に置き換えることができるものを持つようになるはずだと確信している:

  1. $patterns [ 0 ] = ‘/ adsense /’ ; / $patterns [ 0 ] = ‘/ adsense /’ ;
  2. $patterns [ 1 ] = ‘/ google /’ ; / $patterns [ 1 ] = ‘/ google /’ ;
  3. $patterns [ 2 ] = ‘/ ppc /’ ;
  4. $replacements [ 2 ] = " <a href= \" http://google.com/adsense \" >Adsense</a> " ;
  5. $replacements [ 1 ] = " <a href= \" http://google.com \" >Google</a> " ;
  6. $replacements [ 0 ] = " <a href= \" http://google.com/adwords \" >PPC</a> " ;
  7. $content = preg_replace ( $patterns , $replacements , mb_strtolower ( $content , mb_detect_encoding ( $content ) ) ) ;
  1. Create more replacements by continuing the numeric progression in the array.配列内の数値の進行を継続して、代替品を作成します。 If you combine some of the tactics from my post on Increasing Affiliate Income - Blindfolding Your Links you will also be able to blindfold those links with your own URL and add in tracking much easier.アフィリエイト収入を増やす場合は私の投稿からいくつかの戦術の組み合わせ-あなたのリンクも目隠しするために、独自のU RLでこれらのリンクを追加するとより簡単に追跡できるようになるB lindfolding。
  2. Make sure you have spaces between the outsides in case your word(s) show up in a hyperlink, otherwise it would replace that too.を行う場合には、外の単語の間にスペースがあることを確認(複数可)をハイパーリンクで、それ以外の場合はそんなことを置き換えるかを示します。 Delete the two spaces in the beginning of the anchor part (It shows up as a link on this post otherwise).アンカー部分の初めに2つのスペースを削除する(この投稿のリンクとして表示されますその他) 。
  3. Remember to escape any additional quotes with a backslash as seen in the example.の例に見られるようにバックスラッシュには引用符をエスケープ追加してください。 I cant count how many hours I’ve wasted on forgotten semi-colons and backslashes.私は忘れ半に多くの時間を無駄にしてどのようにコロンとバックスラッシュを数える隠語。
  4. mb_detect_encoding() may work oddly with different encodings. mb_detect_encoding ( )不思議なことに別のエンコーディングで動作することがあります。 Especially if your site is in a language other then English.特に英語をあなたのサイトの場合、他の言語です。 In this case see further details on php.net about what to specify it as.この場合には何も指定するために約php.netの詳細を参照してください。
  5. This shouldn’t effect your existing links but keep an eye out, I whipped this up in five minutes.これにより、既存のリンクが効果はないが、目を防ぐ、私はこの5分後に泡立てた。

If its not already apparent, I’m cheep and that doesn’t exactly do much for me when it comes to marketing solutions for my projects.同社はすでに明らかにしない場合は、甲高い声で言うんだと私はちょうど私のためにマーケティングソリューションになる私のプロジェクトの多くを行うものではありません。 But you would be surprised what you can do when you don’t just throw money at the problem - and you learn so much more in the process.でも、あなたのときだけの問題で金を捨ててはいけない何ができるのか驚かされることでしょう-と、その過程でより多くを学ぶ。 This strategy gives me some of the best ideas.この戦略は私には、最高のアイデアを提供します。 More often then not, ideas within ideas are found because of the unique ways you come up with to tackle problems.より頻繁にして、アイデアにアイデアをアップで問題に取り組むようになるのユニークな方法が発見されています。 Besides what would the fun in just paying your way to the top?ほかに何だろうあなただけへ戻る方法を払っで楽しいですか? Dorothy’s yellow brick rode is one of dollars for many these days.ドロシーの黄色いレンガの一もやい綱ドルの多くは、これらの日です。 Its more fun to impose a “cash crutch” on yourself and find creative ways around the mainstream choices.その方が楽しい"と自分には、 "現金松葉杖を課すし、主流の選択肢に創造的な方法を見つける。

I started this blog 2 months ago and readers are steadily climbing faster then expected:私はこのブログの読者2か月前にスタートし、着実に高速化し、予想は上がっている:

feedburner trend rob malon

I didn’t spend a penny on marketing or software (not that it wouldnt be smart to).私は(それを)スマートさwouldntはマーケティングやソフトウェアを一円たりともしませんでした。 Unless you include server costs, I never spend more then that.場合を除き、サーバーのコストを含めると、私はより多くを費やすことはありません。 But I also run other projects off it so I already had it as a resource.しかし、私もオフこれは、リソースをしていた私はすでに他のプロジェクトを実行します。 My point is, if you learn enough, theres really nothing you cant do without a bit of time and effort.マイポイントは、十分な場合は、本当にあなた隠語を学ぶ時間と労力を少しは何もせずにtheres 。 And sometimes less effort then you would think.努力よりも少ないと思うだろうし。

rss feed rob malon Interested in receiving instant updates on automating websites for passive income as well? Click Here to subscribe or use the email subscription box on the top right of this site.受動的利益のためにもですか?ここをクリックするか、このサイトの右上のメール購読ボックスを使用して Webサイトの自動化で簡単に更新を受け取ることに興味。


3 Trackback(s) 3トラックバック(秒)

  1. Sep 21, 2007: PlugIM.com 09月21日: PlugIM.com
  2. Sep 23, 2007: Sweet Gain » Blog Archive » Link Storm 09月23日: 甘口のゲイン»ブログのアーカイブ»リンクストーム
  3. Sep 24, 2007: Automate Affiliate Linking Script - php and javascript scripts 09月24日: アフィリエイトのリンクを自動化スクリプト-P HPとJ avaScriptのスクリプト


10 Comment(s) On 10コメント(秒)

"Automate Affiliate Linking in ALL your WordPress Posts" "すべてのあなたのワードプレスを自動化アフィリエイトのリンク"の投稿
  1. MyAvatars 0.2 Don - Sep 21, 2007 ドン -0 9月2 1日

    Rob congratulations on the traffic, its hard work.ロブお祝いのトラフィックには、一生懸命に働く。 I was up to all hours last night working on my own.私はすべての時間帯に最後の夜に私自身に取り組んでいた。 Thanks for the look see at it.見た目のおかげでそれを参照してください。 I was ranked 8 million on Alexa in early August and I’m down to 3 mill range as of today.私はAlexaの上で8月初めに8000000位だったと私は3工場に、今日の範囲です。 Thanks for all your helpすべてのご支援に感謝

  2. MyAvatars 0.2 Andy Bailey - Sep 24, 2007 アンディベイリー -0 9月2 4日

    I’ve been using something called sh-autolink on all my blogs and it works really well -for free!何かがshと呼ばれる、すべての私のブログでオートリンクを使用してきた、それが本当にうまく機能し、無料で!

  3. MyAvatars 0.2 Rob - Sep 24, 2007 ロブ -0 9月2 4日

    Thanks for the link Andy.アンディのリンクをご利用いただきありがとうございます。 I was told theres another similar solution floating around and cant find the link.私は言われた他の同様のソリューションを漂っtheresとのリンクを検索する隠語。 This one looks a little more involved to the novice, but it gives people plenty of options.これはもう少し、初心者に関与しているが、オプションの人がたくさんいる。 I wonder how many people would have bought that if they only knew…私は多くの人が知っていた場合にのみ購入しているのだろうか...

  4. MyAvatars 0.2 Andy Bailey - Oct 4, 2007 アンディベイリー -2 007年1 0月4日

    I know, I have been using the internet since it was called Fidonet and I’ve virtually never had to pay for any kind of software ever!私は、私はインターネットFidonetと呼ばれていたので、私は事実上あらゆる種類のソフトウェアを永遠に支払いをしたことがありません使用していたものを知っている! There’s always a way to do it for free somewhere.無料ではいつもどこかにそれをするための方法だ。
    some people are happy to pay for the convenience of not having to search for a free version or want some kind of assurance that they will get future support so there’ll always be people who pay for stuff that can be found for free which is good news for places like deal a day and others一部の人は、無料版を検索するか、保証のいくつかの種類があるので、常に人が自由のために良いものを支払うことができる人になりますされる将来的なサポートをしていないの便宜のためにお金を払う満足している取引のような場所のため、 1日のニュースなど

  5. MyAvatars 0.2 bdurfee - Feb 1, 2008 bdurfee -2 008年2月1日

    Great tip and even better that you dropped a link to the code download for those of use who type with the palms of our hands.偉大なヒント、さらには、これらの我々の手の手のひらの型を使用する人のためのコードをダウンロードするためのリンクより減少した。 I love finding simple coding solutions to avoid buying software but I spend more time on deleting my typing errors than actual coding.私はソフトウェアの購入を避けるために単純な符号化ソリューションを見つけるの愛が私の実際のコーディングを入力誤りを削除する上でより多くの時間を費やしています。

    Thank you.ありがとうございました。 And I look forward to the possibility of “the quick creation of a table in mySQL and two or three more lines of code you can easily integrate tracking.と私は進む"とコードの2つまたは3つのラインを簡単にトラッキングを統合することができますMySQLのテーブルの迅速な創造の可能性に目を向ける。 Four more lines would give you a nice little reporting page.” You rock. 4行は、すてきなほとんどのレポートページを与えるだろう。 "岩。

  6. MyAvatars 0.2 US Freestuff - Feb 9, 2008 米国Freestuff -2 008年2月9日

    Big thanks for tipビッグチップのおかげで

  7. MyAvatars 0.2 Copes Flavio - Feb 22, 2008 対処フラビオ -2 008年2月2 2日

    I think you’d like to try the free plugin i developed, used to find out which keyword the visitor has typed in the search engine he comes from and then show a message (affiliate link) based upon that.私はあなたの無料のプラグインを開発私は、彼からして、メッセージ(アフィリエイトリンク)に基づいて表示される検索エンジンでキーワードを入力して訪問者を確認するために使用をやってみたいと思う。

  8. MyAvatars 0.2 Rob - Feb 22, 2008 ロブ -2 008年2月2 2日

    A plugin for wordpress?ワードプレス用のプラグインですか? I made something like that for a slightly different purpose which I’ll explain in an article next month.私の記事で、来月に説明しますがわずかに異なる目的のためにそのようなものにした。 I haven’t taken the time to create mine as a plugin specifically for wordpress.私はワードプレス専用のプラグインとして鉱山を作成するために時間を取らされていません。 It’s easy enough to implement without having to interface it with wordpress.ワードプレスでは十分なインターフェイスにすることなく、実装するのは簡単だ。

    Applying search engine keywords to affiliate text links is a great idea though.アフィリエイトのテキストリンクを検索エンジンのキーワードを適用するのは素晴らしいアイディアだ。 I’m doing something like that using a different method (my own site search) which I’ll be explaining more about in a later article.私のような何かをやってるのとは異なる手法を私は、保存文書の詳細については、説明されます(私自身のサイト検索)を使用しています。

    Sorry if detail is lacking here…easier to explain it once ;).詳細はこちら...簡単に欠けている場合、一度説明して申し訳ありません; ) 。

    By the way, the script that I created for search engine keyword logging/display covers google, yahoo, and msn.ところで、私は、スクリプトの検索エンジンのログキーワード/ディスプレイは、 Yahoo 、 GoogleとMSNのカバーを作成しました。 Though it wouldn’t be hard to add to that list.しかしそのリストに追加するのは難しいとはならないだろう。 If there are any other popular ones people like to use let me know now and I’ll include when I release my method.人気のあるものが存在する場合も、他の人々が私を知っていて、今私は自分のできる方法放出などを使用するようにします。

  9. MyAvatars 0.2 Copes Flavio - Feb 22, 2008 対処フラビオ -2 008年2月2 2日

    Nice to hear that, I’m going to subscribe to your RSS feed since you’ve written many good postsニースは、私はあなたのRSSを購読するつもりですを聞いて以来、多くの良い記事を書いたフィード ;-)

  10. MyAvatars 0.2 marlll - Jun 3, 2008 marlll -2 008年6月3日

    Big thanks for tipビッグチップのおかげで



Leave A Comment:コメントを残す:

Comments RSS Feed コメントのRSSフィード

7 - 3 = 七から三=

Custom Theme by Rob Malon | Content & Design © 2008 - Rob Malon [dot] Com. カスタムテーマロブマロン|コンテンツ&デザイン© 2008 -ロブマロン[ドット]コム。 "));
"));