Our customers need a list of deadlinks. The customer's website is currently running on TYPO3 6.2. The idea was to use the core extension "Link Validator".
Our problem is that our company is behind a strict proxy and the linkvalidator throws a 403 error (proxy authentication) by all external links.
Is there a solution to give the "Link Validator" a proxy configuration?
Go to the Install Tool, click All configuration and change the settings following settings:
Linkvalidator for TYPO3 6.2 uses the class TYPO3\CMS\Core\Http\HttpRequest
for checking external links. This uses the proxy settings, so this should work.
If this does not work, you can write an extension which uses the existing hook in Linkvalidator to override the default class Linkvalidator uses to check external links (ExternalLinktype). If you choose to do this, probably best to ask another question about that on SO.