Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
Next revision
Previous revision
search_engine_ranker:advanced_setup [2013-09-10 11:43] svensearch_engine_ranker:advanced_setup [2023-03-13 08:44] (current) – [Generic URLs] sven
Line 1: Line 1:
-====== Random Content ======+====== Advanced Setup ====== 
 + 
 +This section will teach you special things you can use to modify content to your needs.  
 + 
 +===== Random Content =====
  
 In the file //content_search.dat// (found in installation folder) you can define where to get what content. By default you have things setup for images, videos, links and articles. In the file //content_search.dat// (found in installation folder) you can define where to get what content. By default you have things setup for images, videos, links and articles.
Line 5: Line 9:
  
 You can later make use of this by using **%random_<color red><type></color>%** in your article or wherever you want it. <color red>Type</color> can e.g. be image (%random_image%) or video (%random_video%). You can later make use of this by using **%random_<color red><type></color>%** in your article or wherever you want it. <color red>Type</color> can e.g. be image (%random_image%) or video (%random_video%).
- 
-**A special usage:** 
-<code> 
-[local_images_to_data_url] 
-type=image 
-result=<img src="%spinfolder_data_url-c:\some\folder\with\images\%" style="max-width:500px;"> 
-</code> 
  
 **A normal usage:** **A normal usage:**
Line 26: Line 23:
 replace=-th.;-vi. replace=-th.;-vi.
 </code> </code>
 +
 +This does a search on fotki.com and pulls the found images from it.
 +
 +**A special usage:**
 +<code>
 +[local_images_to_data_url]
 +type=image
 +result=<img src="%spinfolder_data_url-c:\some\folder\with\images\%" style="max-width:500px;">
 +</code>
 +
 +This is simply taking a random image from your defined folder and makes a data URL from it.
  
 ^Variable^Description^ ^Variable^Description^
Line 34: Line 42:
 |result|The actual result that is delivered. You should use the variables here of course.| |result|The actual result that is delivered. You should use the variables here of course.|
 |replace|Will replace things from the content with something else.| |replace|Will replace things from the content with something else.|
 +
 +===== User Agents =====
 +
 +In the file //user_agents.dat// (found in installation folder) you can define what [[wp>User_Agent|User Agents]] should be used when downloading or submitting content.
 +A randomly chosen string is taken from that file for the whole submission process to one site.
 +
 +===== Text captcha solving=====
 +
 +The file //text_captcha_extract.dat// (found in installation folder) is used to find the answer in text captcha questions itself.
 +
 +Format:
 +<color red>FRONT1|FRONT2|..|FRONTX</color>|<color green>BACK</color>
 +
 +Example:
 +<color red><label for="commchallenge_answer">|Please type the word</color>|<color green>below. <strong>(required)</strong></color>
 +
 +This will search the downloaded page for the string in FRONT and till take the content found between the last FRONT and first BACK string.
 +
 +===== Math captcha substitution =====
 +
 +The file //calc_replace.dat// (found in installation folder) is used to search for certain words in text captcha questions and replace it with numbers or math operators (+, -, *, /).
 +
 +Format: search=replace
 +Example: one=1
 +
 +===== Recorded text captcha answers =====
 +
 +When you answer questions like "//What color has the sky?//" and the submission is detected as successful; the question and answer is saved to a file located in your application data folder called //text_captcha.dat//.
 +
 +Format: **Question**<color red>$FF</color>**Answer**\\ 
 +Example: **A RED truck is what color?**<color red>$FF</color>red
 +
 +The <color red>$FF</color> is the ascii code of the character as it's an invisible char you can not see here. Maybe open it in a hex editor to see what I mean.
 +Now each time the same question appears, it is answered automatically without you getting asked.
 +You can also set things up to save unanswered questions to a file in //Options->Advanced->Save unanswered questions to file...//.
 +
 +===== Character Spinning =====
 +
 +The file //charspin.dat// is used to take one character of your article and replace it with something that looks the same but is actually a different char.
 +
 +Format: <color red>character</color>|<color green>replace with variation 1|variation2|...</color>\\ 
 +Example: <color red>Z</color>|<color green>&#918;|&Zeta;</color>
 +
 +But this is only used for content that allows html syntax. This is not used for BBCode or Wiki engines.
 +
 +===== Address Data =====
 +
 +The file //engines\address_data.dat// holds all the addresses used during submission when e.g. a location or country has to be filled. Some people however might want this to be there real address. In that case you have to modify this to the following:
 +
 +Format: Country,State,City,ZIP,Street,phone
 +
 +===== Names (First and Last) =====
 +
 +The file //engines/names.dat// (first namae) and //engines/lnames.dat// (last name) hold names used during submission. You can change this to your needs to e.g. containing only your real name if wanted.
 +
 +===== Generic URLs =====
 +
 +The file //engines/generic_urls.dat// holds URLs that will be used to place random URLs in your article (if wanted). You can also add your own URLs in project's article manager with this format.
 +
 +Format 1: URL using %anchor_text%\\ 
 +Example: %%http://www.answers.com/topic/%%%anchor_text%
 +
 +This will create a link to answers.com with a topic of the chosen word.
 +
 +
 +Format 2: URL#{keyword1|keyword2|...}\\ 
 +Example: %%http://www.gsa-online.de/%%#{GSA|SEO|Search Engine Ranker}
 +
 +When your article has e.g. the word SEO in it, it can happen, that a Link to gsa-online.de is placed.
 +
 +===== Generic Anchor Text =====
 +
 +The file //engines\generic_anchor_text.dat// holds anchor texts that will be used to place links to your URL when that generic anchor text option is used. This is in fact important to not over optimize your website with exact anchor texts but also have generic once point to it with e.g. "website link" or "go here".
 +
 +===== Auto Anchor Content =====
 +
 +The files //engines\auto_anchor.dat// and //engines\auto_anchor-article.dat// (articles only) is used if you do not add a %link% or <a href="%url%>%anchor_text%</a> macro into your article or "about yourself" field.
 +
 +The whole file is read, spinned and the output should have the mentioned macros included. The text is than either added to the end of the content (article) or at a random position (when sentences close) in the content.
 +
 +===== Generic Fields =====
 +
 +The file //generic_fields.dat// holds information on how to fill web forms if the script for that site is not defining things.
 +The line in it with **%%*Facebook*=%Facebook_URL%%%** e.g. will fill every input field where facebook is in the variable or caption before the input field with the entered Facebook URL.
 +
 +===== Proxy bypass  =====
 +
 +The file //proxy_skip_domain.dat// that you can put in the folder appdata can hold domains where no proxy should be used. This is mainly for debugging and not important at all. That file does also not exists by default and you have to create it first.
 +
 +===== Special Import Format =====
 +
 +Since v14.03 the following format is supported when you want to import URLs to a project:
 +
 +<code>https://imported-target-url.com/wp-admin/[https://www.overwrite-project-url.com/#Overwrite-Project-Anchor]</code>
 +
 +See details on our [[https://forum.gsa-online.de/discussion/comment/161804/#Comment_161804|forum]].
 +