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 …
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
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