I'd like to automate some administrative task for myself on my wpmu install. For example, I'm trying to write php curl script for logging in and adding a new blog. So i'm already logged in via curl and now i want to post form that's in wpmu-blogs.php but it has hidden wp nonce field. How do i get this value into variable? I checked source but there are more than one wp nonce hidden fields. I'm assuming that there are different nonce values for different tasks on different forms. How do i get the one i need - for adding new blog?
feedback
|
|
The point of a nonce is to protect against a cross site forgery attack. Because of this, a new nonce value is going to be generated on a regular basis. If the nonce was predictable, it wouldn't be effective. To post to a nonce enabled form using curl, you'd need to
This kind of programming can be tedious. You're essentially trying to emulate a web browser. It's doable, but you may want to consider
| |||||||
feedback
|
|
you can also use greasemonkey to script your firefox. This addon permit to customize webpage and do some action using javascript. | |||
|
feedback
|