Quote:
Originally Posted by djbaxter
How do you mark it as "scanned ok"? How do you even know which image to do that for if there's no notification and if the add-on is no longer logging its activity?
|
The posts are scanned top-down (from postid=1 to latest).
The plugin adds a field to post, called iei_parsed.
If you issue the query:
Code:
SELECT postid
FROM post
WHERE iei_parsed>0
ORDER BY postid DESC
LIMIT 1
you get the last post ID which was successfully parsed. If this value stays put, then something is not working.
As for the concerns with https and SSL (I've been looking into it now), requesting data from such sites
requires you to use CURL. You can choose the mode from the options. CURL is installed anyway since required by 4.x vBulletin versions.
Marking a post "OK" can be done this way:
Code:
UPDATE post SET
iei_parsed=1
WHERE postid=N
where N is the postid.