Customer
Comments
-
Ok, the issue is fixed now. I think that I actually misinterpreted the logs, because I first tried to set it up through php.ini, indeed. I got another error without logs, and I thought it was relat...
-
It looks like you’ve probably committed a php.ini file at the root of your app. That file is probably pointing to php_xsl.dll. This tells Platform.sh to load your php.ini file and all of the settin...
-
Nice! Just create another post or support ticket if you need help with anything else.
-
Thanks, this worked great. I was so focused on getting the corepack method to work since this is how Yarn is recommended to be installed in the docs
-
Hi @normysan, have you tried this in your .platform.app.yaml or your .platform/applications.yaml: dependencies: nodejs: pnpm: "*" Good luck!
-
I haven’t tried it myself yet, but another tool we have to do this is a set of snippets that can be adapted for different custom extensions. https://github.com/platformsh/snippets/tree/main/src You...
-
Hi there! I believe if 1) every application’s source.root is set to the root directory and 2) you commit a .environment file at root, every application will have access to that REDIS_URL variable. ...
-
Sorry, my original suggestion was not correct. The root of the problem that I suggested is that passthru must be a web URL path that your app is ready to handle—not a local file-path route. I sugge...
-
I’ve tried for a fair few hours to get this working but can’t, I even tried just re-writing a single file I know exits in both formats but can’t get that to work either. for example: '^...
-
Hi Dan, take a look at Rewrite Requests without Redirect documentation. You should end up with something like this in your application yaml: web: locations: '/': ... ...