Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • Users
  • Groups
  • Search
  • Get Qt Extensions
  • Unsolved
Collapse
Brand Logo
  1. Home
  2. Qt Development
  3. General and Desktop
  4. Downloading file using php (sending path to file)
Qt 6.11 is out! See what's new in the release blog

Downloading file using php (sending path to file)

Scheduled Pinned Locked Moved General and Desktop
1 Posts 1 Posters 821 Views 1 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • ? Offline
    ? Offline
    A Former User
    wrote on last edited by
    #1

    Hello. I want to download file using Qt and php script on server. PHP script is like that:

    @ $result["name"] = 'name.jpg';
    header('Content-Type: image/jpeg');
    header('Content-Disposition: attachment; filename="'.basename($result["name"]).'"');
    header('Content-Transfer-Encoding: binary');
    @readfile($result["name"]); @

    In Qt I'm using QNetworkAccesManager and get method. Everything is working good, when the path is set in PHP file (or transmitted using $_GET). But is there any way to send path (and extension to content type) of file to download in other way then by $_GET? Sth like "RFC1867":http://www.vivtek.com/rfc1867.html ?

    1 Reply Last reply
    0

    • Login

    • Login or register to search.
    • First post
      Last post
    0
    • Categories
    • Recent
    • Tags
    • Popular
    • Users
    • Groups
    • Search
    • Get Qt Extensions
    • Unsolved