Announcement

Collapse
No announcement yet.

Can´t download uploaded files

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • 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.

  • #2
    Hi

    There was a solution in the forum section. Not sure where.

    Comment


    • #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


      • #4
        Thanks, now it works. :-)

        Comment

        Working...
        X