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)
Forum Updated to NodeBB v4.3 + New Features

Downloading file using php (sending path to file)

Scheduled Pinned Locked Moved General and Desktop
1 Posts 1 Posters 689 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.
  • Z Offline
    Z Offline
    ZSWASZ
    wrote on 24 Jan 2014, 13:02 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

    1/1

    24 Jan 2014, 13:02

    • Login

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