Quote:
Originally Posted by bigtree
This is very cool. I've installed and its working great but I have one problem. I am using vbseo which must be effecting why I cannot access the productforums.php page.
|
What error do you get? What does your .htaccess file look like?
Quote:
Is it possible to import a forum page? or better yet, export the review into the thread? Either way would be a great bonus here because I have hundreds of threads that could be turned into reviews.
|
I'm sure it could be done but it would require a manual process to bring the necessary structure [product id, rating score] to the item.
Something like:
INSERT into pf_review SET
productid = XXX,
threadid = XXX,
userid = XXX,
rating = XXX,
createddate = NOW(),
approved = 1;
Then run the resync query by approving a reviews on the product or a little script
Much faster than trying to rewrite them all but still manual.