<div dir="ltr">This code works (the file uploads) when I run it from my web app on my local host. However, it does not when I try it on the digitalocean version of my app. I get no errors and $file->copy_to($destination) returns true. But the file does not upload. Anyone have an idea as to what the problem could be?<br><div><br>post '/upload' => sub {<br><br>    my $user_id = session 'UID';<br>    my $d_filename = 'user_' . $user_id . '.jpg'; <br>    <br>    my $file = request->upload('file');<br>        my $tmpname = $file->tempname;<br>        my $destination = $upload_dir . '/' . $d_filename;<br>        my ($crslt) = $file->copy_to($destination) || warn $!;<br>        unlink $tmpname if -e $tmpname;<br><br>        debug "crslt: ", $crslt;<br>    <br>      template 'upload';<br><br>    redirect '/playerdash'; <br>};<br><br></div></div>