Announcement

Collapse
No announcement yet.

Portal not loading

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

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

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


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


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


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


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

            Comment

            Working...
            X