Skip to content
  • Thanks, make sense to me.
  • The [login_step*] seems to execute without waiting for the verification of registration being done, which causes a lot of "login failed/awaiting account verification" errors in Drupal engine, is there a specific variable to control when the [login_step*] being executed?
  • SvenSven www.GSA-Online.de
    yes, it's all in toe docu actually ;)
    "try to continue without verification"
  • Hi Sven, I have a problem on the registration on a Durpal site, the value of a hidden field is not specified successfully, please see the PM message
  • sashiloversashilover China
    edited July 2017
    Hi @Sven, it seems that the value of "front","back" variable doesn't accept variable...
    I want to extract first folder from a given URL as following:
    ----
    Original url: http://www.example.com/subfolder/page-name.hmtl
    I need to exact the first folder's name "subfolder" in this case.

    [sub_folder]
    type=extract
    url=%original_targeturl%
    front=%targethost%/
    back=/

    The script doesn't work, please advise, thanks.

  • SvenSven www.GSA-Online.de
    use this...

    [sub_folder]
    type=extract
    input=%original_targeturl%
    front1=://
    front2=/
    back=/
  • Thanks for your quick reply, it worked, however, I am a little confused about the snippet:
    1). What exactly does the "input" variable mean? I can't find any info in the script document.
    2). Are the "front1", "front2".... similar with the "AND" operator, which mean ALL the conditions that specified in "front1", "front2"... should meet during the extraction?

    Thanks again.
  • SvenSven www.GSA-Online.de
    1) by default "input" is the content of the last downloaded/submitted webpage or if you specified url=... that content. If you specify something else with "input" it is using that.

    ---

    docu was updated as well.
  • SvenSven www.GSA-Online.de
    2. front1 must be found and then front2, front3 and so on. If one does not match, it will fail. If you want to match with OR, you can use front1=variation1|variation2|...
  • Make sense to me, thanks.
  • Hi Sven, is it possible to add a particular step to handle the situation of un-successful submission? it will be very helpful to log those sites and check them manually... for example, a step like:
    --------
    [Unsuccessful_Submission_step1]
    write file=c:\failed_sitelist.txt
    --------
    This step will be executed when the submission was detected as either failure or unknow status.


    Alternatively, if there is a way to save the sites with failure or unknow submission status, that will be fine.
    Please advise. 

  • SvenSven www.GSA-Online.de
    you can do that already by using "modify step condition"
  • Thanks for your tips, I get it work partly, the only problem is "modify step condition" doesn't seem to accept the regular expression, which means I can't use "!" symbol to exclude the conditions, for example:
    -----
    submit success=Regardez dans votre courrier pour activer votre compte|Inregistrare completa!|Sign Up Complete!|You have successfully created your account!|To begin using this site you will need to activate your account via the email we have just sent to your address.|/members/%login%/|/members-2/%login%|>Log Out<|/my-profile/">My Profile<|egistro completado!|Rejestracja (krok 2 z 3)|Registration complete. You may now log in.|Comprueba tu correo para activar tu cuenta|Hai creato con successo il tuo account
    -------
    Those are the string for a successful submission, how to exclude them in the "modify step condition".
    I can't seem to use:
    --------
    modify step condition1=!Regardez dans votre courrier pour activer votre compte
    modify step condition2=!Inregistrare completa!
    ....
    --------

    Please advise.
    Thanks.
  • SvenSven www.GSA-Online.de
    hmm there is no condition1,2...just one string "modify step condition" and you can e.g. switch it's behaviour when you modify the step once it matches and then jumps to the part where to continue the submission, else write error and jump to somewhere else
  • I know how the modify step works, the problem is the condition, how to use a condition like the page DOES NOT have the string "Regardez dans votre courrier pour activer votre compte"?
  • SvenSven www.GSA-Online.de
    that is not part of the syntax here, but you can switch the logic and jump if it matches no?
  • It's impossible to enumerate all the possibilities since I want to track all the unsuccessful submissions including unknown status submission...
    Is it possible to add the regular expression supporting for the "modify step condition" in the near future? that will be really helpful.
    Thanks.
  • SvenSven www.GSA-Online.de
    i will try
  • Hi Sven, how to import/export the account data with PR field? currently it seems the PR value is not able to save into the account data, I will need the format like:
    --------
    http://xxx.com:userID:password|PR
    -------
    Then I can resuse those accounts in different tier projects with PR filter enabled.
    Please advise how can i do this.
    Thanks.
  • SvenSven www.GSA-Online.de
    next update allows you to import/export with PR attached.
    the format would be

      URL|PR:login:password
  • thanks a lot.
  • sashiloversashilover China
    edited July 2017
    Hi Sven, how to deal with the Buddypress site with Recaptcha/text captcha enabled in its login page? I think we need to modify the script in order to make it work(2cpatcha is enabled)? if so, how exactly to do that?
    Please advise, I attached a sample site here.

  • SvenSven www.GSA-Online.de
    should work on next update
  • Thankkkkkkkkkkkkkkkkks, Sven
  • Hi Sven, how to skip the entire [Login_Step*] after registration submission was successful, I found some sites don't need to verify or login in order to post an article after I registered an account, I tried the "submit success skip verify=> My Profile<", and "try to continue without verification=1", SER still goes to the [Login_step1]
    Any tips?

  • SvenSven www.GSA-Online.de
    you would just put some message in the login step as "submit success" and SER will recognize that this is already successful.
  • What does this variable mean in the buddypress script, I just can't figure out it.
    --
    [gnr]
    type=extract
    front=/groups
    back1=/
    back2='
    back3="
    back4=>
    default=""
    ---
    Is it possible show me a sample of URL/site which the value of variable is not empty? 
  • Hi Sven, another question for you..
    1). How to handle a page with different forms that matches the same "form url" condition, the two forms have different "form name" and "form ID", but It seems SER use the "form URL" to search the forms, and use the first found one...
    Is it possible to assign the priority for the "form name/form ID/form URL" when searching a form?
    Ideally, SER should search "form name" first, then "form ID", then "form URL" to locate a form.
    Please advise.
  • SvenSven www.GSA-Online.de
    gnr: it means that this variable is filled by searching on the downloaded page for "front" and it cuts all off defined in "back". If nothing is found, it is set to empty.

    1) SER uses all of it, "form url", "form id" "form name" and even "form class". If all match, it is best, but not everything has to match. You can define multiple masks on it using "|". The first gets you a better ranking than later masks.
  • Hi Sven, thanks for your answer.
    is it possible to retry with a different proxy once the the "submit failed retry" condition meets, I am currently writing a custom engine for checking metrics from Majetics, I am using public proxies for this project, when a proxy is burning out, the "submit failed retry" condition meets, is it possible to switch to a new fresh proxy to continue the submission?
    Please advise, thanks.
  • SvenSven www.GSA-Online.de
    that is happening by default
  • Hi Sven, how to fill those fields with names that are dynamically generated by Ajax, and change everytime you access the page?, e.g.
    -------
    <div id="register__6e4cc017924405c049eb050724e6d990671ca229_container" class="required text form-group"><label for="register__6e4cc017924405c049eb050724e6d990671ca229">Last name <span class="requiredmarker">*</span></label><input type="text" class="form-control required text" id="register__6e4cc017924405c049eb050724e6d990671ca229" name="_6e4cc017924405c049eb050724e6d990671ca229" tabindex="0" value=""></div>
    -----------
    Please advise.
  • SvenSven www.GSA-Online.de
    *last*name*=...
     ^You simply use the label or visual caption before the input field.
  • sashiloversashilover China
    edited August 2017
    Thanks for the quick reply.
    Another question, I am writing a custom engine, how to force the my engine use naked url as the anchor text no matter how do I set in the project?
    Is there any variable to overwrite it?
    Please advise.
  • SvenSven www.GSA-Online.de
    [article]
    ...
    html to custom link format=1
    custom link format=<a href="%url%">%url%</a>

  • Thanks again, I am facing the situation where the password is required to set in the verification page after the registration is successful, I tried to fill the form in the [Login_step1], but since the [Login_step] use the last page that [REGISTER_STEP] generated instead of the "email verification" generated, I can't make it work because they are the different URLs, for instance:
    -----------
    The last URL of [REGISTER_STEP*] is: http://www.xxx.com/register.php
    The URL of "email verification" is: http://www.xxx.com/register.php?ver=abcdefg
    This is the URL where I can set the password and submit the form...
    ----------
    My question is how to make [Login_step1] to use the last URL of "email verification"?
    I am stuck because of this.. please advise, thanks in advance.

  • SvenSven www.GSA-Online.de
    you would use "verify by=extractemail" in register step which would just extract data from the email instead of loading the url and forgetting it. Just search for that in existing engines to get a clue. In Setup section you have to specify what to extract from the email.
  • Hi Sven, how to save a variable value which is extracted in the [step2], then use it in the "verify url" filed, for example:

    -------
    ;=== UserID, extracted from the resulting page
    [User_ID]
    type=extract
    front1=name="userid"
    front2=value="
    back="
    default=


    [STEP1]
    ......
    verify by=url
    verify url=%targethost%/%user_id%
    .....

    [STEP2]
    form id=xxx
    form name=xxx
    -------

    It seems there is no way I can extract the %user_id% from the resulting page after submission, SER try to extract the %user_id% in the page for [step1]...
    How can tell SER to extract %user_id% from the submission resulting page?
    Please advise, thanks.




  • SvenSven www.GSA-Online.de
    simply use "url=..." in the [user_id] field.
  • Hi, Sven, Anchor with naked url for specific engine doesn't seem to work..
    ---
    [Article]
    type=memo
    allow html=1
    must be filled=1
    html line break=1
    html line break format=<br>
    hint=The full article comes here.
    auto modify=0
    html to custom link format=1
    custom link format=<a href="%url%">%url%</a>
    custom mode=1
    ----
    Any advice?
    Thanks.
  • SvenSven www.GSA-Online.de
    why not? What happens?
Sign In or Register to comment.