Dead Link Management [Deleted]

It still works, but there is a bug that needs to be fixed.
I have been waiting for a long time for that, really annoying when you have a post with multiple death links.
@au lait Can you fix this in the next release?



I have a posts with 50+ broken links and it only removes one at the time even if I select multiple.
I have to do it 50 times per post to fix all the links.

Thanks :)
 
And there is another thing when you only allow a limited amount of images in a post and it DLM tries to edit that post you get
Please enter a message with no more than 20 images.
but I'm not sure if you can get around that. But that's also a problem
 
It still works, but there is a bug that needs to be fixed.
I have been waiting for a long time for that, really annoying when you have a post with multiple death links.
Can confirm this and will ask the developer @au lait again to solve this. :)

And there is another thing when you only allow a limited amount of images in a post and it DLM tries to edit that post you get
but I'm not sure if you can get around that. But that's also a problem
But this - is this not also a problem when you simply edit this post?
 
But this - is this not also a problem when you simply edit this post?
Yes, That's the same. Just tried it. That's why I said I'm not sure if you can get around that.
 
Same question but added help regarding xenforo and https resources without https servers

Google announces Chrome will start reporting websites not using https, Jan 2017. So I activated https and the moment I did, add-ons that force their server url on xenforo throw my website into non secured red flag.
Beginning in January 2017, Chrome (version 56 and later) will mark pages that collect passwords or credit card details as “Not Secure” unless the pages are served over HTTPS.

The following URLs include input fields for passwords or credit card details that will trigger the new Chrome warning. Review these examples to see where these warnings will appear, and so you can take action to help protect users’ data. The list is not exhaustive.

Is there a way to fix this?
If not, is there a way to stipulate all resources must be compliant with the https as well?

Your branding link is creating an error for https servers. Can you help solve this problem for me? Thanks.
 
Last edited:
@au lait are you expanding this to include pictures and other resources. Also what would be great if the system checked for this ww2.domain.com because when a number is included before domain name it most likely a domain seller so link is not valid anymore.
 
Is there a way to uninstall but keep the existing disabled links.

I appreciate the query you mentioned will restore the links as if the addon never existed:



the BBCode [DLMURL] was chosen by me because it can be easily removed - changed in the actual.
This requires no extra tool! ONLY phpMyAdmin is needed

Run this Querys:
Code:
UPDATE `xf_post` SET `message` = replace(message, '[DLMURL=', '[URL=') WHERE `message` LIKE '%DLMURL%';
UPDATE `xf_post` SET `message` = replace(message, '[DLMURL]', '[URL]') WHERE `message` LIKE '%DLMURL%';
UPDATE `xf_post` SET `message` = replace(message, '[/DLMURL]', '[/URL]') WHERE `message` LIKE '%DLMURL%';

However can be uninstalled so that current disabled links with strike through can remain. Obviously it would need some custom bbcode to replace the one with the addon.

Just wondering.
 
Do you have plans to update this to be compatible for xenforo 2? @au lait
Sooner or later, all my add-ons 2.0 will be suitable!


Is there a way to uninstall but keep the existing disabled links.

I appreciate the query you mentioned will restore the links as if the addon never existed:



However can be uninstalled so that current disabled links with strike through can remain. Obviously it would need some custom bbcode to replace the one with the addon.

Just wondering.

Create a new BBCode, and start the replace with the bbcode

e.g.
Code:
UPDATE `xf_post` SET `message` = replace(message, '[DLMURL=', '[OLDURL=') WHERE `message` LIKE '%DLMURL%';
bbcode "OLDURL"
 
Sooner or later, all my add-ons 2.0 will be suitable!

Sooner we hope rather than later!

I am asking about the uninstall in case I want to migrate to xenforo 2 before the addon is ready. Most other addons I can live happily without.
 
At this moment I see no realy good argument to switch to 2.0 bevor 2.1 or min. 2.0.5 will be out. So be cool. ;)

I think its great to hear, that he will made it ready for 2.0. For me thats enough. :D
 
Sooner or later, all my add-ons 2.0 will be suitable!




Create a new BBCode, and start the replace with the bbcode

e.g.
Code:
UPDATE `xf_post` SET `message` = replace(message, '[DLMURL=', '[OLDURL=') WHERE `message` LIKE '%DLMURL%';
bbcode "OLDURL"

Thanks, but I'm a bit unsure.

Assuming I have replaced DLMURL with OLDURL in the posts via phpmyadmin, could you please explain what I need in the bbcode 'OLDURL' (html replacement)

Many thanks
 
Top Bottom