[FREE Tool] Autoblogging and linking to inner pages...

Guys, is there a way to download all inner pages URLS with the plugin itself?

or I should use the specified tools or some other methods for it?

If you have sitemap on your WP (xml sitemap) plugin, than all pages are there...
you can scrape them with scrapebox (there is plugin for sitemap).
 
Appreciate the tool. I use that plugin on all my autoblogs also and its great.
 
at deki33: FOUND IT!!!
I have had a look in the code and i have to enable the "$options['auto_link']", then it gives me a result.... perfect!!!
 
at deki33: FOUND IT!!!
I have had a look in the code and i have to enable the "$options['auto_link']", then it gives me a result.... perfect!!!

Hm ?? sorry but where did you find that "$options['auto_link']" ?
 
I am using the searchterms2 for months now so i have the keywords but your script doesn show anything. all the textareas are empty.
 
I am using the searchterms2 for months now so i have the keywords but your script doesn show anything. all the textareas are empty.

Did you upload file on right place ? In public_html ?
I mean in wordpress root directory ?
 
Did you upload file on right place ? In public_html ?
I mean in wordpress root directory ?

yes, public_html where the index.php and other wordpress files are ... i tried it also on other servers and it shows nothing. :/
 
I understood the concept. It is worth.
Can you make little video for this if you have free time.

Did you upload file on right place ? In public_html ?
I mean in wordpress root directory ?
 
yes, public_html where the index.php and other wordpress files are ... i tried it also on other servers and it shows nothing. :/

Without having access to your server I can just guess, but maybe in first line

Code:
require('./wp-blog-header.php');

Need to have full path...you can try and change it to

require('/home/YOUR-USER-HERE/public_html/wp-blog-header.php');

or whatever is full path to that file.

Can you please try that and tell me does it work.
 
I understood the concept. It is worth.
Can you make little video for this if you have free time.

You mean video to show how to install it ???
Just upload file to server and visit it in browser...
 
at deki33:
i found in the code that auto_link must be enabled, so i have enabled this option in the plugin:
Convert search terms into links: X Yes, link to post content
Then it works with results in the textfields!

at qxxxp: Try to enable this option! Hope it works!
 
at deki33:
i found in the code that auto_link must be enabled, so i have enabled this option in the plugin:
Convert search terms into links: X Yes, link to post content
Then it works with results in the textfields!

at qxxxp: Try to enable this option! Hope it works!

Oh, I see.

Here is my settings in SEO SearchTerms Tagging 2 plugin:

screenshot20110623at115.png
 
at deki33:
Yes, the standard setting for the plugin was:
Convert search terms into links: X No

Now it works perfect, thanks a lot, really a good idea!!!
 
at deki33:
i found in the code that auto_link must be enabled, so i have enabled this option in the plugin:
Convert search terms into links: X Yes, link to post content
Then it works with results in the textfields!

at qxxxp: Try to enable this option! Hope it works!

yea, awesome thanks - now it works - i just changed the line in the script from:
Code:
if ( [B]0[/B] == $options['auto_link'] ){
to:
Code:
if ( [B]1[/B] == $options['auto_link'] ){
 
Just don't forget to change it again one u update plugin next time...
 
Back
Top