Jump to content

Recommended Posts

Posted

Hi, 

   I have a problem with imploding some extra date to rv_zones table. 

I found an extra code - JS script - in to my prepend field in rv_zones.
It's a second time when I have come across something like this. Have any of you had to deal with this?

Posted (edited)

I suspect it is some kind of SQL implode into the database. Have any of you encountered this problem? Ad server is running on AWS.

Edited by wojtek
  • 3 weeks later...
Posted

If anyone encounters a problem with SQL implode to table rv_zones or any others, below I left TRIGGER to fix it.

 

DELIMITER $$
CREATE TRIGGER implode_detection_rv_zones
    BEFORE UPDATE ON rv_zones 
    FOR EACH ROW 
        BEGIN
            IF OLD.prepend <> NEW.prepend THEN
                set NEW.prepend = SUBSTRING(NEW.prepend, 1, POSITION('span><script' in NEW.prepend)+4);
            END IF;
        END
$$
DELIMITER ;

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.



×
×
  • Create New...