Quote:
Originally Posted by dog-tag
Hello y2ksw
I'm thinking about installing this and have a question.
Some of my users are using these pay per view image sites, and they're linking images on my forum. I would like to know if your plugin will -
Delete the link attached to these images?
You see they post the images, but when you click on the image they redirect you to some spammy website which really bugs me. Can your plugin remove this link also?
I understand I will host the image, but when I'm hosting the image, will I now be hardlinking my images to their websites?
Thanks for your time and workmanship!
|
I'm sorry, this product is thought of hosting images only. But you could pretty easily replace the offending links with a query from phpMyAdmin, such as:
Code:
UPDATE post SET pagetext=REPLACE(pagetext, 'www.offending-host.tld', 'localhost')
The 'localhost' entry makes sure nobody ever will go anywhere but the own PC, but of course this may also not be desired (then, replace with a host of your choice). You will also have to truncate the postparsed table after such changes, and, as always, make a backup before testing