Richard Hildred

Results 30 comments of Richard Hildred

I deleted my working folder and started over as I couldn't remember if I tested after `brew install coreutils` Now I get `undefined symbol: pdo_sqlite_module_entry` error, which is the same...

It still fails in the same place. I reasoned that it was broken because of emsdk no longer including fastcomp (https://github.com/emscripten-core/emscripten/issues/11319). So I changed the dockerfile to have: ``` RUN...

Hi @seanmorris . Thanks for the update. I will give it a try.

This now works with my wp-bundler wp-cli command. https://github.com/rhildred/wp-bundler. The idea is that I can add the wp-bundler plugin in wordpress playground and it will build on cloudflare pages or...

I am really eager to see this work as well. I made a fork `https://github.com/rhildred/playground-tools` and a npm package `@rhildred/wp-now`. The hangup error was due to cors. I fixed that...

I have an express server that works for a get on stackblitz, using @php-wasm/node: ```node import express from 'express'; import { NodePHP } from '@php-wasm/node'; const app = express(); app.get(/\.php$/,...

I have the feeling that it won't work for post unless we use the cgi version of php. Will dig in to that next.

the post variables are in the request body (written to stdin after a blank line and the headers) according to the CGI spec. I was thinking that the php cli...

Wow! #setRequestBody could be a project saver! I am just getting back to it now. I really had hoped to be ready to launch my browser based prototyping product and...

I found out how wp.run uses wp.#setRequestBody and got it working with wp.run on stackblitz and on vslite.dev. Now it comes with a php error: ``` Warning: Undefined array key...