cURL looking for CA in the wrong place

24

Try Replacing CURLOPT_CAINFO with CURLOPT_CAPATH.

And also take a look at SSLCERT option.

Share:
24

Related videos on Youtube

andrewtweber
Author by

andrewtweber

Homepage / GitHub

Updated on September 18, 2022

Comments

  • andrewtweber
    andrewtweber over 1 year

    I am starting with programming and trying to access three folders namely 5, 10, 20 and execute a python script in there.

    For that purpose i wrote:

       for folder in /5 /10 /20
            do 
                echo -n $folder
                cd folder
                python scripts_1/thermo-analisis-de-datos.py
            done
    

    It is not working :(. Any help?