XCP-ng
    • Categories
    • Recent
    • Tags
    • Popular
    • Users
    • Groups
    • Register
    • Login
    1. Home
    2. aqua-calc
    3. Topics
    Offline
    • Profile
    • Following 0
    • Followers 0
    • Topics 3
    • Posts 24
    • Groups 0

    Topics

    • aqua-calcA

      Full VM backup is scheduled but not started

      Watching Ignoring Scheduled Pinned Locked Moved Backup
      9
      0 Votes
      9 Posts
      346 Views
      aqua-calcA
      @Danp There were no entries regarding backup listed by the journalctl command for the target backup time. I've updated my XO to commit 16498, and restarted the XO VM. The backup ran ok Today. Thank you @DustinB and @Danp for responding to my post! Alex
    • aqua-calcA

      Settings -> Remote -> (NFS|SMB) on a Sinology NAS

      Watching Ignoring Scheduled Pinned Locked Moved Solved Backup
      18
      0 Votes
      18 Posts
      1k Views
      gskgerG
      @olivierlambert I think that was probably related to my question if he tried to connect the same NFS share on the Synology as storage and backup target
    • aqua-calcA

      SyntaxError: Cannot use import statement outside a module

      Watching Ignoring Scheduled Pinned Locked Moved Solved Xen Orchestra
      14
      0 Votes
      14 Posts
      4k Views
      ronaldgevernR
      This error can happen in different cases depending on whether you're working with JavaScript on the server-side with Node.js , or client-side in the browser. There are several reasons behind "Cannot use import statement outside a module" error, and the solution depends on how you call the module or script tag. Add type="module" inside the script tag When working with ECMAScript modules and JavaScript module import statements in the browser, you'll need to explicitly tell the browser that a script is module. To do this, you have to add type="module" onto any ‹script› tags that point to a JavaScript module. Once you do this you can import that module without issues. <script type="module" src="./index.js"></script> If you are working on Node.js or react applications and using import statements instead of require to load the modules, then ensure your package.json has a property "type": "module" as shown below. { // ... "type": "module", // ... }