CMSimple_XH is not yet released for PHP 8.4, this will only be the case from 1.8.1.
XH 1.7.6 will cause errors / warnings under PHP 8.3.
CMSimple_XH is not yet released for PHP 8.4, this will only be the case from 1.8.1.
XH 1.7.6 will cause errors / warnings under PHP 8.3.
Code: Select all
<?PHP
ini_set( 'display_errors', 1);
error_reporting( E_ALL );
function dnsTest($hostArray) {
if (!function_exists('gethostbyname')){
die('Sorry gethostbyname is not available!');
}
$ipArray = array();
foreach($hostArray as $host) {
$ipArray[] = gethostbyname($host);
}
return $ipArray;
}
/* -----------------------------------------------------------------------*/
var_dump(dnsTest(array('cmsimplexh.webdesign-keil.de',
'www.soluxiane.fr',
'www.securite-routiere.gouv.fr',
'www.haute-savoie.gouv.fr',
'www.ain.gouv.fr')));
Code: Select all
array(5) {
[0]=>
string(28) "cmsimplexh.webdesign-keil.de"
[1]=>
string(13) "213.186.33.87"
[2]=>
string(14) "77.159.252.145"
[3]=>
string(14) "77.159.252.140"
[4]=>
string(14) "77.159.252.140"
}
I have now tested the following links in my content:
Code: Select all
https://x.com/RoutePlusSure
http://www.securite-routiere.gouv.fr/
https://www.securite-routiere.gouv.fr/resultats-du-permis-de-conduire#/step-connexion
https://www.haute-savoie.gouv.fr/
https://permisdeconduire.ants.gouv.fr/services/geolocaliser-les-photographes-habilites
http://www.doctolib.fr/medecin-generaliste/annecy/arnaud-beurey
everything else is OKFehler:
Link: https://x.com/RoutePlusSure
Linkziel: https://x.com/RoutePlusSure
Fehler: Fehlerhafter externer Link, Seite nicht erreichbar.
http Statuscode: 403
Hinweise:
Link: http://www.doctolib.fr/medecin-generali ... aud-beurey
Linkziel: http://www.doctolib.fr/medecin-generali ... aud-beurey
Fehler: Verlinkte Seite wird weitergeleitet, bitte Link überprüfen.
http Statuscode: 301
Code: Select all
array(5) { [0]=> string(28) "cmsimplexh.webdesign-keil.de" [1]=> string(13) "213.186.33.87" [2]=> string(14) "77.159.252.145" [3]=> string(14) "77.159.252.140" [4]=> string(14) "77.159.252.140" }
Then it is not a DNS problem. So Christoph is right.
You could gradually increase the times to test this.
Code: Select all
$timeout = 12;
$connect_timeout = 10;
I don't actually believe that we will change anything in general because of this.