A accassar Active Member Mar 1, 2012 #1 Mar 1, 2012 #1 Hello, I have a custom C fastcgi application that I am trying to migrate to LSAPI. I use the function fcgi_putenv quite a bit, however I cannot find a corresponding LSAPI function. How can I do this with LSAPI?
Hello, I have a custom C fastcgi application that I am trying to migrate to LSAPI. I use the function fcgi_putenv quite a bit, however I cannot find a corresponding LSAPI function. How can I do this with LSAPI?
W webizen Well-Known Member Mar 1, 2012 #2 Mar 1, 2012 #2 There are a few environment variables that can be tweaked to control the behavior of LSAPI application. http://www.litespeedtech.com/php-litespeed-sapi.html => Configuration
There are a few environment variables that can be tweaked to control the behavior of LSAPI application. http://www.litespeedtech.com/php-litespeed-sapi.html => Configuration
M mistwang LiteSpeed Staff Mar 1, 2012 #3 Mar 1, 2012 #3 I guess you use fcgi env as storage of temp variables, it wont affect LSAPI request/response in any way, so it is not implemented in LSAPI. You need to implement your own storage for that purpose. a hash associate array is recommended.
I guess you use fcgi env as storage of temp variables, it wont affect LSAPI request/response in any way, so it is not implemented in LSAPI. You need to implement your own storage for that purpose. a hash associate array is recommended.