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

as web designers we had a good year 2011 with more than 50 (different) cms & other php 5.2 driven applications. Some had customizations to core as well. How does someone upgrade such amount of apps to php 5.3?

Do developers of php ever thought about that? Much (popular) functions are just depreciated causing a lot of work to people like us.

I really don't know how to best proceed

share|improve this question
3  
Don't customize frameworks/CMSs other than via approved means (plugins and what not) in the first place. You'll have to upgrade PHP, and then hand-correct the issues. And you may not be able to upgrade the frameworks/CMSs without great effort. – DampeS8N May 10 '12 at 16:33
2  
@DampeS8N That's sort of a blanket statement there. I've been forced to modify core before because the framework I used didn't support functionality that I needed. A plugin wouldn't have changed that. – jprofitt May 10 '12 at 16:35
2  
No Framework, except the one you do yourself, can satisfy 100% of your needs. There are time where you need to do modifications. – Grashopper May 11 '12 at 7:37
1  
However, i know that touching core files is wrong. There are times where you need to do modifications to achieve specific functionality. Different clients have different custom needs. Even if you have to touch your own framework, it does not matter, there is much headache caused.. But: it is not a secret to developers of such popular scripting language, and they know what stupid effort it is to mass-update (now outdated) applications. – Grashopper May 11 '12 at 7:50
1  
@Grashopper No framework, including the one you write yourself, can satisfy 100% of your needs for very long, as in any non-trivial project requirements will change. I've been naive enough to think I covered all my bases in custom work, and I did for about 2 weeks. – Bracketworks May 31 '12 at 14:00
show 5 more comments

7 Answers

up vote 0 down vote accepted

Problems in your scripts when updating to PHP 5.3 / 5.4:

5.3 and 5.4 are not 100% backward-compatible ! Simply updating to 5.3/5.4 can make your application completely unuseable - and damage your database data seriously (in case you use functions/methods that are now broken).

An update to 5.3 / 5.4 can give you a lot of NOTICES, WARNINGS and ERRORS. NOTICES simply warn you about "bad programming style", while warnings and errors can & will make your application unuseable. You will have to rewrite parts your code.

The most seen thing in updates to 5.3.: PHP gives out masses of notices, due to "undefined variables", even a lot of highly professional tools were not prepared for usage on PHP 5.3 for a long time (wordpress, several frameworks, major scripts etc). You can override those messages by setting your error reporting to error_reporting(E_ALL ^ E_NOTICE); But remember: That's just a Quick&Dirty Solution ! It's bad style to do so.

The official backwards Incompatibility Lists of PHP 5.3/ 5.4 are quite long and have listed a lot of fatal errors and massive changes in the logic of how several things work and a lot lot bug fixes by the way (that may also change the way some things behave).

Official Backward Imcompatibility List 5.3: http://php.net/manual/en/migration53.incompatible.php

Official Backward Imcompatibility List 5.4: http://php.net/manual/en/migration54.incompatible.php

Which makes me ask the big question, according to your initial question:

Do I really need to update to a newer PHP version ?

When have a free-time project and want to be up-to-date just because it's nice to have: Do it ! But if you are working in a professional environment, with clients who pay you and absolutly need to have their sites 100% online, ask yourself do i/them really need that ? Don't do updates if there is a big change of having NEGATIVE EFFECTS on your application, performance, cashflow or relationship to the client. In bad cases PHP messes up your app silently, and you realize a major bug months later (with a database full of duplicates etc.). Ask yourself: What are the pros for an update ? What are the cons ? It's always a time & money thing, so don't do things that are not necessary.

My personal opinion: DON'T UPDATE YOUR PHP IF YOU DON'T NEED TO ! ALWAYS RUN IT WITH THE ENVIRONMENT IT WAS DEVELOPED IN ! JUST UPDATE IF YOU KNOW EXACTLY WHY YOU DO THAT.

How to upgrade multiple php applications to newer versions / PHP 5.3/5.4:

  • mirror your server(s) EXACTLY including configs (php, mysql, apache, ...)
  • mirror your applications on these new server(s)
  • update your development servers to the version you need (note how you do this)
  • read the PHP Incompatibility lists (see above)
  • go through your code (dev servers), line by line, and check for any of the above incompatibilities
  • testing, testing, testing, testing, testing, testing
  • if everything is cool, update the live servers and deploy your rewritten application
share|improve this answer
Yes, that is what we decided: never touch a well running app. Sad to realize that everyone in this developer world starts typing & improving without leaving space for upgrades – Grashopper May 22 '12 at 7:05
Some additional thoughts: It's awesome how oldschool major companies and "professional tools" are ! I mean, Flickr has run on PHP4 until 2010, PayPal still uses cgi-bin (!), a lot of established tools are messed up with 5.3 (and 5.4 too), especially when it comes to undefined variables. The backside of a fast-developing world. – Panique May 22 '12 at 7:13
That's because the effort to upgrade manually is enormous, the risks are high,and the benefits are hazy. Those companies are actually pretty smart. IMHO, what would (and will) change this is the availability of automated tools that can reliably carry out massive changes; this will allow companies to move forward at very modest costs with little risk, and that will change the equation. – Ira Baxter May 31 '12 at 14:05
3  
You should always be running with error_reporting(~0), as to ensure all errors are displayed at all times. Only when your code is free of notices is it "working". If "not defined" errors are a problem, then you have to step back and assess the problem for what it is, and not put a Snoopy band-aid on it (or worse yet, ignore it) – Bracketworks Jun 2 '12 at 1:46
@Panique: cgi-bin doesn't mean much. It only means they are running an external process to deal with the request. Doesn't tell you much about what that external process is. There may be good reasons for doing it that way -- process isolation of the request processing from the web server itself isn't something to scoff at. They probably kept the cgi-bin path visible for nostalgia reasons anyway -- the fact that it's visible doesn't necessarily imply that cgi is actually used. – Kuba Ober Jun 4 '12 at 13:22

The short answer

It depends.

The strategy for migration would be influenced by the quality and content of the source itself, as well as the architecture and workflow. There is no "silver bullet" to make it work.

Longer answer

How it should be done

You automatically upgrade all the staging sites, run all the unit tests and if they all pass - run the acceptance tests. Fix the issues that arise till you can pass all the test. Then let your QA people make sure, that everything is really 100% OK. This whole process would mostly run by your continuous integration system/framework.

When all works on the staging environment, you take down each site for maintenance, deploy the updated code to production environment, upgrade the server's software and bring the sites back up.

How you will (most likely) HAVE to do it

Since none of your software has any unit/acceptance tests, no up-to-date specification or even notion of continuous integration system, you will have to do it the hard way:

'step 1' take a survey of different servers setups on which your projects 
         are deployed (if you have all project on single box with 
         virtual-hosts, you can skip this bit )
'step 2' find somewhere a computer, which can temporary act as local server
<foreach setup>

    'step 3' install/configure this temporary server to be exactly like 
             the "setup"
    <foreach project on that setup>

        'step 4' BACKUP ALL THE STUFF
        'step 5' copy the latest source and DB from the production server
        'step 6' upgrade the software
        'step 7' see what has *blown* up and fix what you can find    
        'step 8' pass to the QA team 
        'step 9' store the source

    </endforeach project>
    'step 10' take the server with this configuration down for maintenance
    'step 11' upgrade software on the server
    'step 12' deploy all the projects from this server 
    'step 13' prayer (optional)

<endforeach setup>

This is kinda the "brief" version. Basically you will have to go server-by-server, clone it locally, then upgrade, patch projects. Then upgrade each server and put the patched version on. An hope.

Should you upgrade ?

Clients will not pay for this.

Since you have ~50 different projects, you would have to investigate, if it's even worth the time and money. After such analysis, you might discover, that it would make more sense for a business to mark most of the projects as "legacy" and just upgrade server(s) to latest 5.2.x. Then leave it alone.

Of course even if you decide to not upgrade most of projects, there will be some that will require it. Particularly project with ongoing contracts, which generate a steady stream of income for the company.

I would recommend to start buy upgrading those cash-cow projects, because you will have to anyway. And then from this experience you can calculate the costs for the rest of your "portfolio".

What about next time ?

PHP 5.4 is out (at the time of last edit, 5.5 is already coming). Most of companies by the end of this year will be faced with a question: "Is it time to start using 5.4 ?". Some sooner, some a bit later. The frameworks and CMSs, that you use, too have a tendency to get updates.

Bottom line: your company as whole should start to investigate ways to streamline this process.

And what about when you upgrade to PHP 5.5 and mysql_* functions start showing E_DEPRECATE warnings? See the red box in mysql_affected_rows() documentation. This is not a one-time thing.

It might be wise to invest in implementing better deployment strategy (something that involves unit-tests and continuous integration).


<rant>

Do developers of php ever thought about that? Much (popular) functions are just depreciated causing a lot of work to people like us.

The functions and functionality, that has been deprecated, has been marked as such in documentation for ages. For example, the notice, that ereg() and passing object by reference should not be used, has been there since I begin learning PHP. The deprecation warnings would affect mostly PHP4 codebase (in which case, you question is a bit disingenuous).

I do not see how enforcing practices, which have been accepted in community for years, is "causing a lot of work".

</rant>

share|improve this answer

First, by having your programmes stored in packages (RPM, DEB, etc) installed via a package management system (yum, apt-get, etc) with the dependancy information correctly set.

Then by having a proper release chain with an integration step that tests if code breaks when you upgrade dependancies. A CI server such as Jenkins can run your automated tests and build packages for you.

If there are problems, they show up quickly and you can get to work on fixing them. Use your usual internal processes for prioritisation and fixing of bugs (noting that it is worth focusing on all bugs introduced by a dependancy upgrade in a given package as a batch, and not splitting effort by working on a dozen programs in parallel).

share|improve this answer

The best way to proceed would be to follow the PHP 5.3 Migration Guide (and then to PHP 5.4).

share|improve this answer
of course. OP is objecting to the level of effort it takes to do this for a large number of applications. – Ira Baxter Jun 1 '12 at 17:29

Obviously you should follow suggested upgrade practices; other answers are providing them.

There are process and procedural steps to take; I have no specific suggestions there, and in fact tereško's answer is pretty good IMHO

But where the code base itself has to be changed, you may have a choice:

  • You can do it all by hand (that seems to be the implicit assumption). This isn't surprising advice.
  • You might be able to automate the application of the changes.

The purely manual approach requires you to discover all the types of incompatibilities (language changes, framework changes, infrastructure replacement, ...), figuring out how to fix them generally, and then applying each fix type where appropriate. That last part is really expensive because it requires you to examine every line of code, and fix it if it is wrong.

Automated change can't help with the discovery of issues, or the general working out of solutions. But once you figure out how to solve a problem, it could probably help with applying that solution in all the places necessary.

What's needed for each problem is a kind of "if you see this in the code, change it to that". That informal idea can be packaged as a program transformation, formal rules for modifying code.

My company offers a tool, the DMS Software Reengineering Toolkit, which is a program transformation engine. It can analyze and transform many kinds of computer source code using language-specific front ends; it has a PHP front end (parser/prettyprinter) suitable for this task. DMS was designed for this kind of task, which is why part of its name is "software reengineering toolkit". We've used it for much nastier reengineering tasks.

So the idea is to package up the needed changes as program transformations, and use a tool like DMS to apply them. It will be effort to write the rules that fix the issues in your code, but once done DMS can apply those rules reliably. So you invest in the first few systems (to get the rules tuned and validated) to make updating the last 48 odd efficient.

This isn't a panacea; you can't always easily write a transformation for what you want. But when you have a lot of changes to make, and you want to make them all over your code, doing as many as you can reliably with a tool is far better than doing everything by hand.

share|improve this answer
2  
Common people.. that is exactly the problem. Programmers think like programmers and really don't care if their developed code (and changes) causes serious problems and workload to others. You all proposing solutions which a) need additional knowledge and practice b) complex approach to a simple problem: build your code so others can use, work, update with ease – Grashopper May 11 '12 at 23:51
@Grashopper Word, Dude ! 100% Agreement ! – Panique May 31 '12 at 15:44
2  
@Grashopper: Forgive my denseness... "You all proposing solutions solutions.... " you are referring to my answer? "... which need additional knowledge and practice ... " well, yes; it is clear that to update your 50 systems you need knowledge about what is wrong with them; I'm just suggesting casting that knowledge in a form that helps you apply it repeatedly, "... complex approach to simple problem" Hmm. DMS is complex, true. The issue is how complex or expensive is your problem in comparison? Steamshovels are more complex than spoons, but if you want a big hole spoons are a bad choice. – Ira Baxter Jun 4 '12 at 13:10
@Grashopper: "... build your code so others can use, work, update with ease..." Are you complaining about the PHP engine, or your code base? – Ira Baxter Jun 4 '12 at 13:33
@Grashopper There aren't too many deprecated functions in PHP. Converting them programatically with knowledge and practice is easy, by creating your own parser in c, c++, java, .net or even in PHP, and if you don't want to create it, you can always use a third party tool since you had a good 2011 year. And in the worst escenario you can even edit PHP 5.4 source to keep all deprecated functions... I don't really see any trouble. – user1202495 Jun 5 '12 at 6:48
show 1 more comment

I suppose this list: http://php.net/manual/en/migration53.incompatible.php is all you have to worry about.

share|improve this answer

If you are using an alternative Webserver like cherokee you can use parallel Installations of PHP. If you are unable to do so because of installation restrictions in your os you can always use a chrooted environment and change the ports of your php interpreter.

If I have to update a php version I add a second domain to the page e. g. updated.domain.com that uses the new php version. Normal users will see no difference. But unfortunately this will only work, if you work with relative paths and without hard coded domains in your files.

share|improve this answer
Why can't I use parallel installations of PHP with the non-alternative webserver? Don't you construct differences here a little? However, the idea is not bad to allow differentiated updates of the PHP version and switching PHP versions on a per application level and not globally. – hakre Jun 7 '12 at 8:09
I didn't work with a apache for about 5 years. Maybe it works, maybe not - don't know. But I have done this a few times with cherokee and nginx. – Oliver Jun 7 '12 at 10:26

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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