snowberg Posted April 17, 2013 Report Share Posted April 17, 2013 Подскажите, какой должен быть запрос к базе для редиректа ссылок в полной новости UPDATE `baza`.`dle_post` SET `full_story` = REPLACE(full_story, 'http://','http://cite.ru/go?http://') при условии, что редирект нужно выполнить в границах, начиная от <div id='news-id-000000'> и до следующего <div id= (где 000000 - переменное значение) Quote Link to comment Share on other sites More sharing options...
Leon-Killer22 Posted April 24, 2013 Report Share Posted April 24, 2013 (edited) В целом, решение вижу такое: UPDATE `baza`.`dle_post` SET `full_story` = REPLACE(full_story, 'http://','http://cite.ru/go?http://') WHERE news_id BETWEEN n1 AND n2 Поясню - необходимо взять уникальные идентификаторы записей news-id-000000 и news-id-ххххххх, и получится так, что n1 - начальный айди, n2 - конечный. Edited April 24, 2013 by Leon-Killer22 Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.