Giter VIP home page Giter VIP logo

Comments (7)

weierophinney avatar weierophinney commented on June 14, 2024

@PatrickRose the toolbar should only interfere when the output is text/html. Could you elaborate a bit on this issue?


Originally posted by @Ocramius at zendframework/zend-developer-tools#162 (comment)

from laminas-developer-tools.

weierophinney avatar weierophinney commented on June 14, 2024

I'd need to delve deep into our source code to try and find the issue involved with download (though I'll grab the person involved when they come in).

I can spot it in our API requests though, and although it's not a real issue there it does irk me slightly.


Originally posted by @PatrickRose at zendframework/zend-developer-tools#162 (comment)

from laminas-developer-tools.

weierophinney avatar weierophinney commented on June 14, 2024

Our download action uses the Zend\Http\Response\Stream object to stream the contents of the file, and we set the Content-Type to application/x-gzip.


Originally posted by @PatrickRose at zendframework/zend-developer-tools#162 (comment)

from laminas-developer-tools.

weierophinney avatar weierophinney commented on June 14, 2024

@PatrickRose Any update on this?


Originally posted by @moderndeveloperllc at zendframework/zend-developer-tools#162 (comment)

from laminas-developer-tools.

weierophinney avatar weierophinney commented on June 14, 2024

I no longer work at the place where I encountered - but a message to the staff there says its still an issue.


Originally posted by @PatrickRose at zendframework/zend-developer-tools#162 (comment)

from laminas-developer-tools.

weierophinney avatar weierophinney commented on June 14, 2024

Just downloading the ZF2 application skeleton and adding a download action to the index controller w/ the mentioned stream and type isn't enough to reproduce the issue. I had Zend Developer Tools installed via Composer and in the application config.

    // This should be an array of module namespaces used in the application.
    'modules' => array(
        'Application',
        'ZendDeveloperTools',
    ),

Here's the code I used when I attempted to reproduce this issue.

    public function downloadAction()
    {
        $fileName = '/vagrant/somefile.tar.gz';
        $basename = basename($fileName);

        $response = new Stream();
        $response->setStream(fopen($fileName, 'r'));
        $response->setStatusCode(200);
        $response->setStreamName($basename);

        $headers = new Headers();
        $headers->addHeaders(array(
            'Content-Disposition' => 'attachment; filename="' . $basename . '"',
            'Content-Type' => 'application/x-gzip',
            'Content-Length' => filesize($fileName),
        ));
        $response->setHeaders($headers);
        return $response;
    }

I managed to download a working .tar.gz file. When I tested it using the answers in this StackOverflow question and compared it with various header parameters, the file still appeared to be fine when the Content-Disposition parameter was properly specified.


Originally posted by @Barbarrosa at zendframework/zend-developer-tools#162 (comment)

from laminas-developer-tools.

samsonasik avatar samsonasik commented on June 14, 2024

I tried in latest laminas-developer-tools to download zip and tar.gz file, both working fine. I am closing it.

from laminas-developer-tools.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.