One dangerous option I included in the PA updater is the one to update all files that don't have conflicts, but leave everything else in place. This usually breaks your system :)
If you've used this option and ended up with a broken install, here's how to fix it. The example below uses the previously-broken idubb.com install.
First, cd into your PA root dir. Then check out a copy of the latest code from Subversion and move the .svn directories into your install:
cd ~/public_html
svn checkout http://update.peopleaggregator.org/svn/release/pa pa_svn_latest
cd pa_svn_latest
for f in `find . -name .svn`; do mv $f ../; done
Now go into MySQL (using the host/login/password/db in local_config.php)
mysql -u peopleaggregator -p peopleaggregator
(enter password)
select * from svn_objects where is_active=1 and held_revision is not null;
Now you've got to update each of these files in turn. For each file, you've got to make a copy of what's on your system, then check out the appropriate version from Subversion, then move your file back in, and update to the latest version.
for f in api/Invitation/Invitation.php web/Themes/Alpha/images/pa-logo.gif web/homepage.php web/BlockModules/InvitationModule/public_inner_html.tpl web/Themes/Alpha/header_all.tpl web/Themes/Alpha/footer.tpl config.inc; do mv $f _asdf; svn update -r16 $f; mv _asdf $f; svn update $f; done
You'll see something like this:
Restored 'api/Invitation/Invitation.php'
U api/Invitation/Invitation.php
Updated to revision 16.
G api/Invitation/Invitation.php
Updated to revision 22.
Restored 'web/Themes/Alpha/images/pa-logo.gif'
U web/Themes/Alpha/images/pa-logo.gif
Updated to revision 16.
C web/Themes/Alpha/images/pa-logo.gif
Updated to revision 22.
Restored 'web/homepage.php'
U web/homepage.php
Updated to revision 16.
C web/homepage.php
Updated to revision 22.
Restored 'web/BlockModules/InvitationModule/public_inner_html.tpl'
U web/BlockModules/InvitationModule/public_inner_html.tpl
Updated to revision 16.
C web/BlockModules/InvitationModule/public_inner_html.tpl
Updated to revision 22.
A web/Themes/Alpha/header_all.tpl
Updated to revision 16.
D web/Themes/Alpha/header_all.tpl
Updated to revision 22.
Restored 'web/Themes/Alpha/footer.tpl'
U web/Themes/Alpha/footer.tpl
Updated to revision 16.
C web/Themes/Alpha/footer.tpl
Updated to revision 22.
If everything in there is A, U, G, or D, you're fine. If you see any Cs (C = conflict), your site is probably now even more broken than before. Not to worry, you now have enough clues to finish off the job :)
Open each conflicting (C) file and look for text like this:
<<<<<<< .mine
$invite_title = "Invite Colleagues and Friends to iDubb.com:";
=======
$invite_title = "Invite friends and colleagues to join PeopleAggregator:";
>>>>>>> .r22
Now replace this whole lot with the correct version. (In this case it looks like the PA code had a grammar fix, but the same line had already been changed by the site operator to refer to iDubb.com, and Subversion isn't quite magical enough to merge this sort of thing.)
Once you've done that for everything, run svn resolved to mark each file as up to date: