Showing posts with label Magento. Show all posts
Showing posts with label Magento. Show all posts

Thursday, 29 September 2016

Magento 2 - Owl Carousel makes wrapper a few thousand pixels wide at 767px and below

Hi,

We can solve this issue by multiple way:

  • http://magento.stackexchange.com/questions/105638/owl-carousel-magento-2-not-fully-responsive
    • .columns .column.main {
          overflow: hidden;
      }
      
    • Or
    • .columns .column.main {
          width: 100%;
      }
      
  • Another solution I found:
    • .columns {
          display: block;
      }
      

Good luck!

Thursday, 4 August 2016

Magento - Installation

Hello,

I got these issues when trying to setup Magento in my local machine using Nginx:
  1. Magento 2.x:
    •  Cannot instantiate interface
      • FastCGI sent in stderr: "PHP message: PHP Fatal error:  Cannot instantiate interface Magento\Framework\App\Config\Scope\ReaderPoolInterface in /xxx/vendor/magento/framework/ObjectManager/Factory/Dynamic/Developer.php on line 73" while reading response header from upstream, client: 127.0.0.1, server: my-magento.com, request: "GET / HTTP/1.1", upstream: "fastcgi://unix:/run/php/php5.6-fpm.sock:", host: "my-magento.com"
      • Modify the sample nginx config file you have been included in your virtual host:
        • From:
          • location ~* ^/setup($|/) {
        • To:
          • location /setup {
    • security.limit_extensions
      • "Access to the script '/xxx/setup/index.php/session/prolong' has been denied (see security.limit_extensions)"
        • Change
          • cgi.fix_pathinfo=0
        • To:
          • cgi.fix_pathinfo=1
  2. Magento 1.x:
    • Nginx:
      • Virtual host file:
        • location ~ .php/ {
           rewrite ^(.*.php)/ $1 last;
          }
          

Good luck!