Upgrade from 4.3.0-to-4.3.1 Issue

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • pmontanez
    Member
    • Dec 2016
    • 81

    Upgrade from 4.3.0-to-4.3.1 Issue

    Good Afternoon Guys,

    I'm having an Isue udating from 4.3 to 4.31 - I have done prior udates without issue. Any Ideas ??

    Permission had been done as suggested using

    find . -type d -exec chmod 755 {} + && find . -type f -exec chmod 644 {} +;
    find data custom -type d -exec chmod 775 {} + && find data custom -type f -exec chmod 664 {} +;

    Here is a pic from Log File:
  • tarasm
    Super Moderator
    • Mar 2014
    • 573

    #2
    It seems like you have wrong owner or group. Please run:
    Code:
    cd <PATH-TO-ESPOCRM-DIRECTORY>
    chown -R <OWNER>:<GROUP-OWNER> .;
    More details: https://www.espocrm.com/blog/server-...n-for-espocrm/
    Job Offers and Requests

    Comment

    • pmontanez
      Member
      • Dec 2016
      • 81

      #3
      tarasm thanks for above but espocrm folder is own by web server, in my installation www-data: www-data.. any other ideas where to check??

      Thanking you in advance

      Comment

      • pmontanez
        Member
        • Dec 2016
        • 81

        #4
        [SOLVED] Thanks for the hint.. Definitely was a file access right's issue. In my case I use VestaCP, that said, the Folder owner is not webserver "www-data" but instead the VestaCP user where the website is hosted with. FWIWT.

        Comment

        Working...