lcscolussi

  • Nov 2, 2023
  • Joined Nov 1, 2023
  • 0 best answers
  • KevinTheJedi

    Indeed, // those lines ended up generating the report correctly!!
    Thanks a LOT for your help, I really admire the collaboration of the OpenSource community. You're the best!

    Have a great day and week!

    • KevinTheJedi

      The host (Godaddy) indicates that there is no rule that could block the request.
      A permissions problem perhaps? But I tried giving 777 access to the entire osticket folder and the same thing happens.

      Here is some more info from the navigator:

      I'm running out of ideas 🙁

      • KevinTheJedi Hi and thanks for the quick answer, there isn't any lines about this issue in the PHP error_log. It seems to be another thing.

        By the other hand, i already did a clean installation by the traditional way downloading it from the official webpage you shared, and the issue stills remains with the same error:

        Any ideas?

      • Hi everyone, I hope you are doing well!

        I need your help as I am not able to export tickets from OsTicket 1.18.x.

        I performed the clean installation using Installatron (cPanel) in PHP 8.1, everything works perfectly, I even have oAuth for login with 365, but this failure kills me since I cannot generate reports and information.

        The strange thing is that there is no problem with the export of users, only the tickets export fail.

        Error:

        Console details:

        When clicking in console details:

        Server Info:

        • KevinTheJedi replied to this.
        • lcscolussi

          Comment these two lines out and retest:

          So in this case 404 actually means "No such export" which means it can’t find the export file. This either means it’s having trouble with their server's temp directory (ie. unable to create or read from the temp file) or the file is being deleted before it pushes it to the browser. Commenting out the lines above should stop it from deleting the file if this is the case.

          If that doesn’t help I’d recommend creating your own temp folder with all appropriate permissions for PHP or webserver user:group, updating your sys_temp_dir setting in your PHP INI file to include the full path to the new temp directory, restart the webserver (and PHP-FPM if you’re running it) to clear any potential file cache, and retest.

          Cheers.