Bibek Shrestha

Results 10 comments of Bibek Shrestha

Just a note: the bug still exists but works in chrome.

@rameshdharan shouldn't your configuration instead be ``` Vagrant.configure('2') do |config| config.hostmanager.enabled = true config.hostmanager.manage_host = true config.vm.define "default", primary: true do |default| default.vm.hostname = "foo" default.hostmanager.aliases = "fancy-name-foo" ... end...

If you manually set the shell inside vim to bash, the problem goes away. I added `set shell=/bin/bash` inside ~/.vimrc. Found the code here https://coderwall.com/p/lzf7ig/using-vim-with-fish-shell. Although the link says that...

Bumping this. I also started getting this issue all of a sudden. I'm using `registry.docker.com/library/ruby:3.1.4-slim` image and no change in Dockerfile. Creating a symlink doesn't help. I tried the following...

I changed /usr/bin/php_beautifier line 55 from ``` error_reporting(E_ALL); ``` to ``` error_reporting(E_ALL & ~E_STRICT); ``` which solved the issue. No more annoying STRICT errors.

If you don't want to use the custom pr branch for security reasons, you can also use `docker.io/jc21/nginx-proxy-manager:github-develop` image

Looking at the test failures, seems like we need a patched version of QT for this. 🤔

@unixmonkey I've updated the PR by adding wkhtmltopdf with patched-qt. All the tests passed except the with ruby version 1.8.7. This is because I added pdf-inspector as a development dependency...

Does it at least run on Rails5? I like the concepts mentioned in the documentation and would love to see it atleast compatible with Rails 5.1.