Love Fuel?    Donate

FuelPHP Forums

Ask your question about FuelPHP in the appropriate forum, or help others by answering their questions.
File Class Not Working With Variable In File Path
  • I'm having a silly problem but I'm not seeing what the issue is.

    If I want to trigger a file download it's only working if I hard code the path in.

    For example:

    This works fine:
    \File::download(DOCROOT.'assets/files/myfile.csv');

    This gives me an error for invalid path:
    $file = 'myfile.csv';
    \File::download(DOCROOT.'assets/files/'.$file);

    Any thoughts on why that would happen? I'm on 1.5.3.
  • Nevermind......

    This was an issue with me not handling file extensions properly in my logic. Should've finished my coffee before posting. :-)

Howdy, Stranger!

It looks like you're new here. If you want to get involved, click one of these buttons!

In this Discussion