OroCRM Forums

Covering OroCRM topics, including community updates and company announcements.

Forums Forums OroCRM OroCRM – Installation/Technical Issues or Problems I'm getting HTTP error -500

This topic contains 3 replies, has 2 voices, and was last updated by  Andrey Yatsenko 4 years, 7 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
  • #40369

    balajkt5997
    Participant

    While running orocrm form localhost I’m getting error for getting error for this HTTP error 500 how to solve this……

Viewing 3 replies - 1 through 3 (of 3 total)
  • Author
    Replies
  • #40372

    Andrey Yatsenko
    Moderator

    Hi,

    Check the log file for the error details at var/logs/prod.log or var/logs/dev.log depending on an application environment you are using.

    #40376

    balajkt5997
    Participant

    im using centos 7 64bit bt while running the orocrm my local host error occured for White screen
    error occured
    and please check configuration file………….
    server {
    server_name crm.example.com 192.168.1.51;
    root /usr/share/nginx/html/oroappnew/public;
    location / {
    # try to serve file directly, fallback to index.php
    try_files $uri /index.php$is_args$args;
    }

    location ~ ^/(index|index_dev|config|install)\.php(/|$) {
    fastcgi_pass 127.0.0.1:9000;
    # or
    # fastcgi_pass unix:/var/run/php/php7-fpm.sock;
    fastcgi_split_path_info ^(.+\.php)(/.*)$;
    include fastcgi_params;
    fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
    fastcgi_param HTTPS off;
    }

    location ~* ^[^(\.php)]+\.(jpg|jpeg|gif|png|ico|css|pdf|ppt|txt|bmp|rtf|js)$ {
    access_log off;
    expires 1h;
    add_header Cache-Control public;
    }

    error_log /var/log/nginx/crm.example.com_error.log;
    access_log /var/log/nginx/crm.example.com_access.log;
    }

    #40381

    Andrey Yatsenko
    Moderator

    The white screen usually means – you have disabled display_error directive for PHP and you can find an error in application logs.
    Have you checked /usr/share/nginx/html/oroappnew/var/logs/prod.log and /usr/share/nginx/html/oroappnew/var/logs/dev.log files for an error message?

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

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

Back to top