Re: [users@httpd] how to simply set a cookie?

2017-09-29 Thread eeadev dev
thank you. yes, it is under the header but what if I want to see it under "cookies". is it possible with apache? 2017-09-29 5:38 GMT-07:00 Eric Covener : > On Fri, Sep 29, 2017 at 8:27 AM, eeadev dev wrote: > > I tried with this function > > > > apr_table_add(r->headers_out,"Set-Cookie","doo

Re: [users@httpd] how to simply set a cookie?

2017-09-29 Thread Eric Covener
On Fri, Sep 29, 2017 at 8:27 AM, eeadev dev wrote: > I tried with this function > > apr_table_add(r->headers_out,"Set-Cookie","doodle=hello"); > > but I am not seeing the cookie I set when querying my website in chrome dev > tool under application->storage->Cookies > Was it a 200 response? I

[users@httpd] how to simply set a cookie?

2017-09-29 Thread eeadev dev
I tried with this function apr_table_add(r->headers_out,"Set-Cookie","doodle=hello"); but I am not seeing the cookie I set when querying my website in chrome dev tool under application->storage->Cookies Thanks