Problem with the Test Links

General questions about CMSimple
olape
Posts: 3428
Joined: Fri Mar 13, 2015 8:47 am
Contact:

Re: Problem with the Test Links

Post by olape » Sun Mar 09, 2025 9:03 am

sbastian wrote:
Fri Mar 07, 2025 5:38 pm
I just notice that PHP errors will appear in yellow in debugger integrated CMXimple, but only for PHP 8.4 !
So I stayed in PHP 8.3, which works very well.
CMSimple_XH is not yet released for PHP 8.4, this will only be the case from 1.8.1.
sbastian wrote:
Fri Mar 07, 2025 5:38 pm
The only thing that I can hardly tested, it is of the PHP 8.3 with CMSimple_XH 7.6...
Have you had the opportunity to do so ?
XH 1.7.6 will cause errors / warnings under PHP 8.3.
Gruß Olaf, Plugins for CMSimple_XH

Ich habe schon lange den Verdacht, dass so viele so eifrig auf Gender, Trans und Queer machen:
Weil sie für das Fachliche ganz einfach zu doof sind.

sbastian
Posts: 39
Joined: Tue May 17, 2016 11:17 am
Location: France
Contact:

Re: Problem with the Test Links

Post by sbastian » Sun Mar 09, 2025 9:39 am

Hello,

Thank you for your continued support.

For the moment, regarding the errors with checklinks, I'll continue with my filter on Excel, because they can change something, waiting for a better...

Thank You Again !

Stephane BASTIAN

olape
Posts: 3428
Joined: Fri Mar 13, 2015 8:47 am
Contact:

Re: Problem with the Test Links

Post by olape » Sun Mar 09, 2025 10:01 am

Please test this as a single php file:

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')));
this is what should come out:

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"
}
If so, then it doesn't seem to be a DNS problem and Christoph is probably right.
cmb wrote:
Mon Mar 03, 2025 12:57 pm
The error message "the domain/page does not exist" is wrong; the server responded with status code 400, which means Bad Request.
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
came here:
Fehler:
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
everything else is OK
Gruß Olaf, Plugins for CMSimple_XH

Ich habe schon lange den Verdacht, dass so viele so eifrig auf Gender, Trans und Queer machen:
Weil sie für das Fachliche ganz einfach zu doof sind.

sbastian
Posts: 39
Joined: Tue May 17, 2016 11:17 am
Location: France
Contact:

Re: Problem with the Test Links

Post by sbastian » Sun Mar 09, 2025 10:30 am

Thank you for your help...

Actually, with your small PHP file, I have the same answer as you...

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" } 
For the 2 links that remain in the error, I suspect rather a problem of timeout too short.
These 2 links are valid, but the time display is a very, very long.

A modification of the checklinks in sight ? ;), or adjustment or setting up my side ? :idea:

To be continued...

olape
Posts: 3428
Joined: Fri Mar 13, 2015 8:47 am
Contact:

Re: Problem with the Test Links

Post by olape » Sun Mar 09, 2025 10:50 am

sbastian wrote:
Sun Mar 09, 2025 10:30 am
Actually, with your small PHP file, I have the same answer as you...
Then it is not a DNS problem. So Christoph is right.
sbastian wrote:
Sun Mar 09, 2025 10:30 am
For the 2 links that remain in the error, I suspect rather a problem of timeout too short.
These 2 links are valid, but the time display is a very, very long.
You could gradually increase the times to test this.
https://github.com/cmsimple-xh/cmsimple ... #L272-L273
Maybe try

Code: Select all

        $timeout = 12;
        $connect_timeout = 10;
sbastian wrote:
Sun Mar 09, 2025 10:30 am
A modification of the checklinks in sight ?
I don't actually believe that we will change anything in general because of this.
Gruß Olaf, Plugins for CMSimple_XH

Ich habe schon lange den Verdacht, dass so viele so eifrig auf Gender, Trans und Queer machen:
Weil sie für das Fachliche ganz einfach zu doof sind.

Post Reply