Can´t download uploaded files

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • Vassago
    Junior Member
    • Mar 2016
    • 11

    Can´t download uploaded files

    Hello together,

    i´m new in EspoCRM. I installed it on my server.

    It still works fine, but if i uploaded files into knowledge base i can´t open them. I had to sign up with the login from the website, but this doesn´t work. :-()

    i can´t find the uploaded files in the upload folder, there are only renamed files. :-(

    http://crm-eissing.de/phpinfo.php here ist my phpinfo()
    Last edited by Vassago; 03-16-2016, 01:07 PM.
  • yuri
    Member
    • Mar 2014
    • 8440

    #2
    Hi

    There was a solution in the forum section. Not sure where.
    If you find EspoCRM good, we would greatly appreciate if you could give the project a star on GitHub. We believe our work truly deserves more recognition. Thanks.

    Comment

    • tarasm
      Super Moderator
      • Mar 2014
      • 573

      #3
      FastCGI does not support HTTP AUTH by the default. You have to enable it in your VirtualHost or apache2.conf by adding the following code:
      For fcgid module:
      Code:
      <IfModule mod_fcgid.c>
        FcgidPassHeader Authorization
        FcgidPassHeader Proxy-Authorization
        FcgidPassHeader HTTP_AUTHORIZATION  
      </IfModule>
      For fastcgi module:
      Code:
      <IfModule mod_fastcgi.c>
         FastCgiConfig -pass-header Authorization \
                              -pass-header Proxy-Authorization \
                              -pass-header HTTP_AUTHORIZATION  
      </IfModule>
      To check which module apache is currently uses, run this command and find the module:
      Code:
      apache2ctl -M
      Job Offers and Requests

      Comment

      • Vassago
        Junior Member
        • Mar 2016
        • 11

        #4
        Thanks, now it works. :-)

        Comment

        Working...