Portal not loading

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • Hacko
    Junior Member
    • Jan 2021
    • 8

    Portal not loading

    Hi,

    I have created a new portal including roles and users. But when I call the portal (http://domain/portal/602fe49a892dbe6ca/) I only see the footer and nothing else.

    In the debug console from browser the following two calls are marked as aborted.



    Where could be the problem? Thanks!
  • Maximus
    Senior Member
    • Nov 2018
    • 2731

    #2
    Hello,
    What a webserver type do you use (Apache, Nginx, etc.)?
    Make a test: open a portal configs -> set "Is Default" -> try to reach the portal by: http://domain/portal/

    Comment

    • Hacko
      Junior Member
      • Jan 2021
      • 8

      #3
      I use Apache. I have also marked it as default and tried to call http://domain/portal/ but with the same result. I have attached the output from the browser.
      Attached Files

      Comment

      • Maximus
        Senior Member
        • Nov 2018
        • 2731

        #4
        It seems that you might have blocked .htaccess support for portal in your server configs in /etc/apache2/sites-available.
        Please check it.

        Comment

        • Hacko
          Junior Member
          • Jan 2021
          • 8

          #5
          I have no special .htaccess only the default from the crm and this is my apache web config.


          Code:
          [B]<VirtualHost[/B][B] *:80[/B][B]>[/B]
          
          [B]ServerName[/B] domain
          
          [B]DocumentRoot[/B] /var/www/espocrm/
          
          [B]Options[/B] [B]Indexes[/B] [B]FollowSymLinks[/B]
          
          
          [B]<Directory[/B][B] "/var/www/espocrm/"[/B][B]>[/B]
          
          [B]AllowOverride[/B] [B]All[/B]
          
              <IfVersion < 2.4>
          
          [B]Allow from [/B][B]all[/B]
          
              </IfVersion>
          
              <IfVersion >= 2.4>
          
          [B]Require[/B] [B]all[/B] granted
          
              </IfVersion>
          
          [B]</Directory>[/B]
          
          [B]</VirtualHost>[/B]

          Comment

          • Hacko
            Junior Member
            • Jan 2021
            • 8

            #6
            The Portal is now loading. Maybe it was a caching Problem or something else.

            Comment

            Working...