|
From: Chris W. <la...@us...> - 2001-10-30 02:55:48
|
Update of /cvsroot/openinteract/OpenInteract
In directory usw-pr-cvs1:/tmp/cvs-serv14060
Modified Files:
FAQ
Log Message:
added HUP restart failure and edited slightly some of the other items
Index: FAQ
===================================================================
RCS file: /cvsroot/openinteract/OpenInteract/FAQ,v
retrieving revision 1.11
retrieving revision 1.12
diff -C2 -d -r1.11 -r1.12
*** FAQ 2001/10/17 12:09:19 1.11
--- FAQ 2001/10/30 02:55:45 1.12
***************
*** 10,13 ****
--- 10,26 ----
QQQQQQQQQQ
+ I installed a new package (using 'oi_manage apply_package') or
+ upgraded an existing package (using 'oi_manage upgrade_package') and
+ restarted Apache, but my changes aren't taking effect.
+
+ AAAAAAAAAA
+
+ OpenInteract (specifically, SPOPS) doesn't agree with a simple restart
+ (using '-HUP' or 'apachectl restart') of Apache. You have to stop
+ Apache completely, then start it back up.
+
+
+ QQQQQQQQQQ
+
When trying to run 'oi_manage install_sql' I see one of the following
messages:
***************
*** 72,75 ****
--- 85,89 ----
your 'conf/server.perl' file.
+
QQQQQQQQQQ
***************
*** 86,92 ****
Will apply the packages listed from the base installation directory to
! your site. (Remember that you also need to run 'install_sql' and
! 'install_template' to complete the trifecta.)
QQQQQQQQQQ
--- 100,107 ----
Will apply the packages listed from the base installation directory to
! your site. (Remember that you also need to run 'install_sql' to
! complete the task.)
+
QQQQQQQQQQ
***************
*** 123,126 ****
--- 138,142 ----
to let you know the settings it's using.
+
QQQQQQQQQQ
***************
*** 137,144 ****
following:
! local $R->db->{AutoCommit} = 0;
eval { $object_type_a->save };
if ( $@ ) {
! $R->db->rollback;
# throw error message and exit from procedure
}
--- 153,162 ----
following:
! my $db = $R->db( 'main ');
! local $db->{AutoCommit} = 0;
!
eval { $object_type_a->save };
if ( $@ ) {
! $db->rollback;
# throw error message and exit from procedure
}
***************
*** 146,155 ****
eval { object_type_b->save };
if ( $@ ) {
! $R->db->rollback;
# throw error message and exit from procedure
}
! $R->db->commit;
QQQQQQQQQQ
--- 164,174 ----
eval { object_type_b->save };
if ( $@ ) {
! $db->rollback;
# throw error message and exit from procedure
}
! $db->commit;
+
QQQQQQQQQQ
***************
*** 228,232 ****
problem went away upgrading to Apache 1.3.20.
! The problem is that it would not correctly parse lines like this:
RewriteRule ^/(.*) http://oi.server.com:8080/$1 [P]
--- 247,252 ----
problem went away upgrading to Apache 1.3.20.
! The problem seems to be that it would not correctly parse lines like
! this:
RewriteRule ^/(.*) http://oi.server.com:8080/$1 [P]
***************
*** 248,252 ****
-
QQQQQQQQQQ
--- 268,271 ----
***************
*** 281,285 ****
-
QQQQQQQQQQ
--- 300,303 ----
***************
*** 307,312 ****
/home/httpd/...)
- How come?
-
AAAAAAAAAA
--- 325,328 ----
***************
*** 323,327 ****
I edited a (news|classified|random) item and OpenInteract saved my
! changes but created a new one at the same time. What's up?
AAAAAAAAAA
--- 339,343 ----
I edited a (news|classified|random) item and OpenInteract saved my
! changes but created a new (and empty) record at the same time.
AAAAAAAAAA
***************
*** 361,364 ****
--- 377,381 ----
easier to capture by the static front-end proxy server.
+
QQQQQQQQQQ
***************
*** 383,393 ****
I'm getting some harsh aqua shades in background colors, row colors,
! etc. What's happening?
AAAAAAAAAA
Make sure you don't have a space between your pound and color
! declaration in the various theme color definitions. For instance, IE
! seems to interpret '# eeeeee' as '#00eeee'.
Similarly, if you don't chomp whitespace properly in a TT tag, you
--- 400,410 ----
I'm getting some harsh aqua shades in background colors, row colors,
! etc
AAAAAAAAAA
Make sure you don't have a space between your pound and color
! declaration in the various theme color definitions. For instance, MS
! Internet Explorer seems to interpret '# eeeeee' as '#00eeee'.
Similarly, if you don't chomp whitespace properly in a TT tag, you
***************
*** 401,404 ****
--- 418,422 ----
<...bgcolor="#00eeee">
+ Yuck-o.
==================================================
|