diff options
| author | cassiopc <cassiopc@gmail.com> | 2012-08-22 14:39:03 +0000 |
|---|---|---|
| committer | cassiopc <cassiopc@gmail.com> | 2012-08-22 14:39:03 +0000 |
| commit | fc7990c62d85fdebef4a438a1fbc9d69a3710d55 (patch) | |
| tree | ba6e1a305b0e63fbeb719e1a682c8e5e578b726e /boca-1.5.0/doc/INSTALL.txt | |
| parent | 059e2fdcf0cef7e3594a66e21b3fd682ac736856 (diff) | |
| download | boca-fc7990c62d85fdebef4a438a1fbc9d69a3710d55.tar.gz boca-fc7990c62d85fdebef4a438a1fbc9d69a3710d55.zip | |
small bug fixes, inclusion of file size limit configurable
Diffstat (limited to 'boca-1.5.0/doc/INSTALL.txt')
| -rw-r--r-- | boca-1.5.0/doc/INSTALL.txt | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/boca-1.5.0/doc/INSTALL.txt b/boca-1.5.0/doc/INSTALL.txt index a9d3bc3..6319c82 100644 --- a/boca-1.5.0/doc/INSTALL.txt +++ b/boca-1.5.0/doc/INSTALL.txt @@ -121,6 +121,23 @@ setting up the correct values. Ex: 5) It's all done. Now you have to manage the contest with a browser and boca. Proceed to the ADMIN.TXT file. + +---------- +==> DETAIL ABOUT MOVING FROM POSTGRES 8.x TO 9.1 +LARGE OBJECTS GET WRONG OWNERSHIP. TO FIX, RUN WITHIN psql: +# su - postgres +# psql -d bocadb + +do $$ +declare r record; +begin +for r in select loid from pg_catalog.pg_largeobject loop +execute 'ALTER LARGE OBJECT ' || r.loid || ' OWNER TO bocauser'; +end loop; +end$$; +\q + + Security Issues --------------- It is strongly recommended that BOCA be installed on a computer |