OroCRM Forums

Covering OroCRM topics, including community updates and company announcements.

This topic contains 2 replies, has 2 voices, and was last updated by  Soopadoubled 8 years, 6 months ago.

Starting from March 1, 2020 the forum has been switched to the read-only mode. Please head to StackOverflow for support.

  • Creator
    Topic
  • #26690

    Soopadoubled
    Participant

    Hi,

    I’m running Oro CRM v1.8 (on Nginx, with rewrites configured).

    Any functionality that appears to rely on the API results in a 404 when trying to access the API.

    Is there anything specific I need to check (rewrites etc) to resolve this?

    Thanks,

    Ian

Viewing 2 replies - 1 through 2 (of 2 total)
  • Author
    Replies
  • #26691

    Rodolfo
    Participant

    Can you please share your nginx config?

    Check if this nginx config is similar with yours:
    http://oroinc.com/orocrm/blog/news/orocrm-installation-on-server-with-nginx-php-fpm

    If you want to get rid of rewrite config you can use this example for production:
    location ~ ^/app\.php(/|$) {
    fastcgi_pass unix:/var/run/php5-fpm.sock;
    fastcgi_split_path_info ^(.+\.php)(/.*)$;
    include fastcgi_params;
    fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
    fastcgi_param HTTPS off;
    internal;
    }

    #26692

    Soopadoubled
    Participant

    Hi,

    Thanks for the response – it was a Nginx issue.

    My configuration conflicted with the main Nginx configuration maintained by my web host. I spoke to them and they configured things for me – issue resolved.

    I would share the specifics but I’m afraid I don’t have access to them.

    Thanks,

    Ian

Viewing 2 replies - 1 through 2 (of 2 total)

The forum ‘OroCRM – Installation/Technical Issues or Problems’ is closed to new topics and replies.

Back to top