IHP - How to send and receive data between clients via custom Web Socket controller?
Makefile:7: /../lib/IHP/Makefile.dist: No such file or directory
it will now say IHP not found! Run the following command to fix this: nix-shell --run 'make .envrc'
In the latest IHP version, I'm getting ""Your system has run out of application memory" after adding AutoRefresh to my project. I'm running only Brave Browser & VSCode.
Also, IHP doesn't restart on save on views with AutoRefresh enabled, I instead get "Thread killed by Timeout Manager" when I save a file
DEBUG=1 ./start
and share the output log? maybe best to open a github issue for this
After upgrading IHP to 0.17, I'm getting the following message in the Schema Designer:
Unmigrated Changes Your app database is not in sync with the Schema.sql
After migrating the changes, the message goes away but on restarting the server, it popups again with the same migrations.
I'm trying to build a form in which all Posts will be display along side the checkbox to select each post
renderPost post = [hsx|
<tr>
<td><input name="posts" type="checkbox" value={get #id post}></td>
<td>{get #postDesc post}</td>
</tr>
|]
For checkboxes, I want it's value attribute to be Id of the post, but it's not working. Error I get is below:
Couldn't match type Id' "question"' with
Text'
Can anyone help me understand the issue and alternative approach?