Posts
Search
Contact
Cookies
About
RSS

Progress with C-Script

Added 13 Oct 2022, 8:37 a.m. edited 18 Jun 2023, 1:12 a.m.

My for edutainment purposes Apache module, mod_cscript is slowly taking shape as I find the odd bit of free time for it. I moved from using cookie sessions to using mod_session_dbd, but I still need to investigate a simple but robust method for serialising data to a session - something like structs rather than simple string key / value pairs. Ideally I'd like to be able to have some kind of individual domin per "page" so that each web page in a C-Script app could have its own set of stateful variables.

I've decided that in order to drive development of C-Script I'm going to develop a simple web "app" with it, along the lines of having user login and maintenance and some simple manipulation of paginated tables.

I have to say that I've found the process of developing a module using Apaches portable runtime (APR) and using other "standard" modules, at times challenging but certainly interesting. While there is ample API documentation, sometimes information on just how the API is intended to be used can be a little thin on the ground...

Don't forget you can check out (sorry pun sadly intended) the progress C-Script here

Enjoy!