Borek Bernard
Borek Bernard
The problem is probably that `PHPUnit_Extensions_Selenium2TestCase_Exception` doesn't inherit from [`ExceptionWrapper`](https://github.com/sebastianbergmann/phpunit/blob/0e00a745f6cbd5418d9d4b4cf5ad02850fce3fa0/src/Framework/ExceptionWrapper.php#L24): https://github.com/giorgiosironi/phpunit-selenium/blob/8e4cf0271d82a44324e3dfebf0ea84c467b39317/PHPUnit/Extensions/Selenium2TestCase/Exception.php#L56 Then this code fails: https://github.com/ScriptFUSION/PHPUnit-Immediate-Exception-Printer/blob/de2f8a0987ff1c0d835e3ee36db0e86920f68ee1/src/Printer.php#L159 I think the code here could try to call `getPreviousWrapped()` but if the exception...
@bartosz-antosik possibly pin this issue?
@bartosz-antosik hi, I'll be happy to do this if I find a little bit of time 😄. BTW this is interesting: https://github.blog/changelog/2022-08-09-github-actions-self-hosted-runners-now-support-apple-m1-hardware/ **UPDATE:** done in #520.
Hi @emaildano, VersionPress controls the whole WordPress installation, I'm not sure if what you're trying to achieve is possible. Can you describe in more detail how you think it would...
The `.git` directory needs to be in the site root so that commands like `git status` work. Also note that VersionPress needs to have write access to all the files...
@chemicalkosek The current version (5.1.0) still imports from packages like `apollo-client`, not `@apollo/client` – I'm getting e.g. various TypeScript errors. @sotnikov-link's fork resolves that.
## Tips for getting it work I've successfully set up `@sotnikov/next-with-apollo` (this PR) + Apollo Client 3.0 + Next.js 9.4, here are a few notes. This is my `pages/_app.tsx`: ```tsx...
@ilackovic Actually we've moved `utils/apolloClient` to `_app.tsx` since it's so short, the entire file now looks like this: ```tsx import React from 'react'; import { ApolloProvider, ApolloClient, HttpLink, InMemoryCache }...
Hi @josuevalrob, can you check the `wp-config.php` file to see if DB credentials are really correct? When you create a plain PHP script (without WordPress) that connects using these credentials,...
From what you say, your site URL is not `http://localhost/clinica/` but `http://localhost:8888/clinica`. The port matters greatly.