• Resolved wpschw

    (@wpschw)


    Is there a way to start indexing with wp-cli or with an url? We import every night a lot of products with wp-cli and it seems that this product-index is not create.

Viewing 7 replies - 1 through 7 (of 7 total)
  • Plugin Author Nick McReynolds

    (@woobewoo)

    Hello @wpschw,

    We’ll make a URL for you, I’ll add it here in a few hours.

    Thread Starter wpschw

    (@wpschw)

    Thank you very much. Thats a good reason to buy another year pro licences ??

    Moderator Jan Dembowski

    (@jdembowski)

    Forum Moderator and Brute Squad

    Thats a good reason to buy another year pro licences

    Great reply! But if you are a pro license user and the developer supports you on this site then they need to stop doing that now. They risk getting into real trouble here when they do that.

    For pro or commercial product support please contact the developer directly on their site. This includes any pre-sales topics as well.

    https://woobewoo.com/contact-us/

    As the developer is aware, commercial products are not supported in these forums. I am sure they will have no problem supporting you there.

    Thread Starter wpschw

    (@wpschw)

    Now I’m a pro licence user ??

    At the posting time I use the free version … I think my question was more forum-style as commercial-support-style …

    Plugin Author Nick McReynolds

    (@woobewoo)

    Hi @wpschw,

    We have made a link: /wp-admin/admin-ajax.php?mod=meta&action=doMetaIndexingFree&pl=wpf&reqType=ajax

    You need to update the plugin to the beta version: https://drive.google.com/drive/folders/1x2nVnJwIHhQNEAUW2E0fx5E3hHWwC8Lw?usp=share_link

    It works only if the user is authorized in the site’s admin panel.

    The function is available for users of the free version of the plugin.

    Thread Starter wpschw

    (@wpschw)

    Thank you very much. It works very well.

    With this little script you can start indexing from bash (thanks to https://stackoverflow.com/questions/22614331/authenticate-on-wordpress-with-wget )

    #!/bin/bash

    site=”https://wordpressite”
    login_address=”$site/wp-login.php”
    log=”username”
    pwd=”password”
    cookies=”/tmp/cookies.txt”
    agent=”Mozilla/5.0″

    wget -q \
    –user-agent=”$agent” \
    –save-cookies $cookies \
    –keep-session-cookies \
    –post-data=”log=$log&pwd=$pwd&testcookie=1″ \
    “$login_address” -O –

    wget -q –keep-session-cookies –load-cookies=/tmp/cookies.txt \

    –save-cookies=/tmp/cookies.txt -O – \

    “$site/wp-admin/admin-ajax.php?mod=meta&action=doMetaIndexingFree&pl=wpf&reqType=ajax”

    rm -f /tmp/cookies.txt

    Plugin Author Nick McReynolds

    (@woobewoo)

    We have improved the link by adding the ability to run in the background:

    /wp-admin/admin-ajax.php?mod=meta&action=doMetaIndexingFree&pl=wpf&reqType=ajax&inCron=1

Viewing 7 replies - 1 through 7 (of 7 total)
  • The topic ‘Start Indexing’ is closed to new replies.