问题
I have a wordpress based classifieds site, i am trying to create and xml feed application that fetches xml from other sites and create ads. I am able to create post in wordpress from the feeds. But i cant copy the images from the remote server,there are no permission issues, i am using the worpress function wp_handle_upload_error, But i get error
This the code
public function xml_image_upload($upload)
{
if ($this->xml_file_is_image($upload['tmp_name']))
{
$file = wp_handle_upload($upload, $overrides);
}
return $file;
}
The error i get is "Invalid form submission"
I am trying to solve this for a long time. I cant figure out whats wrong..
回答1:
You need to pass array('test_form' => FALSE)
as the second parameter or the upload will be rejected for some reason.
See http://codex.wordpress.org/Function_Reference/wp_handle_upload#Parameters
回答2:
Second parameter of wp_handle_upload
is important.
Use array('action' => 'name_of_your_action')
(without prefix admin_post_
or wp_ajax_
).
来源:https://stackoverflow.com/questions/8019761/invalid-form-submission-in-wordpress