Error while installing `XML::Parser` Perl module

42

I found a solution with this apt-get command:

sudo apt-get install expat
sudo apt-get install libexpat1-dev
Share:
42
Péter Nagy
Author by

Péter Nagy

Updated on September 18, 2022

Comments

  • Péter Nagy
    Péter Nagy over 1 year

    I wonder if there is a way to automatically load a Json file from a dircetory (lets say this: /Root/Data/datachart.json)

    I have the following code parts. But this way the user must select and upload the file. But the file's name will always be the same and the path too. This chart is based on an automatically updated database table import. I need the file to automacally load by the given path and filename.

    <div>
        <head>
            <script type="text/javascript" src="https://www.gstatic.com/charts/loader.js"></script>
            <input type="file" id="file-selector" multiple/>    
        </head>
        <body>
            <div id="chart_div" style="width: 1200px; height: 500px"></div>
        </body>
    </div>
    
    
    Script:
    
    const fileSelector = document.getElementById('file-selector');
                fileSelector.addEventListener('change', function(event){
                    const fileList = event.target.files;
                    readFile(fileList[0]);
    
    
    

    Unfortunetly so far i didn't found any solution on the web. So thank you the help for advance!

    • daxlerod
      daxlerod over 10 years
      Did you See /root/.cpanm/work/1383241509.7912/build.log for details?
    • Admin
      Admin over 10 years
      This code is from the log file