Fix l10n of "more"
[aur.git] / upgrading / 1.9.0.txt
blob45ac0ebe95f1c82824265aa2d25b9e3430a10d6d
1 1. Translation files are now gettext compatible and need to be compiled after
2 each AUR upgrade by running `make install` in the "po/" directory.
4 2. Remove the "NewPkgNotify" column from the "Users" table:
6 ALTER TABLE Users DROP COLUMN NewPkgNotify;
8 3. Fix up issues with depends performance on large dataset.
10 ALTER TABLE PackageDepends ADD INDEX (DepName);
12 4. Rename "web/lib/config.inc" to "web/lib/config.inc.php".
14 5. Merge "web/lib/config.inc.php.proto" with "web/lib/config.inc.php".
16 6. Run the upload directory transform script ("scripts/uploadbuckets.sh") and
17 rotate the converted directory structure into place.
19 7. In order to to provide backward compatible package URLs, enable mod_rewrite
20 and add the following to your Apache configuration (inside the "VirtualHost"
21 container or optionally create a ".htaccess" file in the upload directory):
23 ----
24 RewriteEngine on
25 RewriteRule ^/packages/([^/]{1,2})([^/]*/(PKGBUILD|[^/]*\.tar\.gz|))$ /packages/$1/$1$2
26 ----
28 The following equivalent rule can be used for lighttpd setups:
30 ----
31 url.rewrite-once = ( "^/packages/([^/]{1,2})([^/]*/(PKGBUILD|[^/]*\.tar\.gz|))$" => "/packages/$1/$1$2" )
32 ----
34 If you use a non-standard URL_DIR, slight modifications might be necessary.
36 8. Merge "scripts/aurblup/config.h.proto" with "scripts/aurblup/config.h".