Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Network Solutions decided to upgrade their PHP version to 5.3.8 a short while ago which broke my site. I developed it way back using Codeigniter. So instead of updating the core and dealing with the errors that will inevitably arise, I thought it might be a nice stopgap to revert to an older version of PHP (assuming it's still available and installed). Is there any way to do this given my client's hosting? So far their forums, tech support and php.net have turned up little that I can understand. I'm not very good at setting up server environments...

Thanks for your help!

share|improve this question
Not enough details. Guessing server configurations and providing support is off-topic here. But google for SetHandler or CGI configurations. – mario Mar 13 '12 at 22:09
4  
You should really consider fixing your code than downgrading php version. Newest versions contains many bugfixes and improvements. – piotrekkr Mar 13 '12 at 22:09
you want that sort of control buy a vps. – Dagon Mar 13 '12 at 22:12
What version did you previously have? If you were on PHP 5.3.x, then your fix is probably trivial. However if you were relying on 5.2.x, then it might be more complicated. Upgrade your dev machine to PHP 5.3.x and see if you can bring your site back to life (I should think CodeIgnitor itself is fine with 5.3) - and if that fails, switch hosting plans. But, as @piotrekkr says, going back to an old version permanently is not recommended. – halfer Mar 13 '12 at 22:21
@Dagon is right also that a VPS might help you out. They're so cheap now (my 4.50GBP/month nets me a 512MB/10GB server, which is great for a bunch of small sites) so the switch may be a good idea even if you're on a budget. – halfer Mar 13 '12 at 22:23

closed as off topic by mario, jeroen, webbiedave, martin clayton, Andrew Marshall Mar 14 '12 at 5:14

Questions on Stack Overflow are expected to relate to programming or software development within the scope defined in the FAQ. Consider editing the question or leaving comments for improvement if you believe the question can be reworded to fit within the scope. Read more about closed questions here.

1 Answer

in short - no. PHP is included in a webserver as a "module", so calls to a php-file are routed to the php interpreter. As you have no control over the location of this php interpreter, you have no way of changing the php binary to your own version (which you'd have to do to downgrade to a later php version).

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.