Reputation: 67928
I am on shared hosting, and I noticed the PHP does not include bzip2. It seems I would have to re-compile PHP inorder to use this. I don't think shared hosting allows this, so is there any alternative to my situation or bzip2?
Upvotes: 0
Views: 144
Reputation: 66465
If your host allows dl()
(I doubt it), you can dynamically load a shared extension.
Checklist for dl
:
dl
should not be listed in disable_functions
safe_mode
offenable_dl
OnThe best thing you can do is asking your host to enable bzip2 support, and otherwise search for an alternative. There are plenty hosts with bzip2 supported.
Upvotes: 1