Hello, I was just wondering how to use dl(), or getting to work, I should say
I used
dl("gd.so"); and it didnt' work
it gave an error (fatal) that said
it can't find the library or what not. That's ok, so I check my php.ini
And I find under:
;;;;;;;;;;;;;;;;;;;;;;
; Dynamic Extensions ;
;;;;;;;;;;;;;;;;;;;;;;
I have none listed, such as:
extension=msql.so
So, if I want to activate gd.so and xml.so with dl(), do I just add the lines
extension=xml.so
extension=gd.so
and then reload apache and then try again?
Is it that simple?