Index: /trunk/ippMonitor/Makefile.in
===================================================================
--- /trunk/ippMonitor/Makefile.in	(revision 38199)
+++ /trunk/ippMonitor/Makefile.in	(revision 38200)
@@ -217,4 +217,5 @@
 $(DESTWWW)/simplePlotStaticskyImage.php \
 $(DESTWWW)/simplePlotSkycalImage.php \
+$(DESTWWW)/simplePlotFullForceImage.php \
 $(DESTWWW)/simplePlotDiffImage.php \
 $(DESTWWW)/subsetPlotDiffImage.php \
Index: /trunk/ippMonitor/czartool/czarpoll.pl
===================================================================
--- /trunk/ippMonitor/czartool/czarpoll.pl	(revision 38199)
+++ /trunk/ippMonitor/czartool/czarpoll.pl	(revision 38200)
@@ -97,5 +97,6 @@
 
     print "* Updating labels\n";
-    my @servers = ("stdscience", "distribution", "publishing", "update");
+    # my @servers = ("stdscience", "distribution", "publishing", "update");
+    my @servers = ("stdscience", "distribution");
 
     my $server = undef;
Index: /trunk/ippMonitor/czartool/czartool/CzarDb.pm
===================================================================
--- /trunk/ippMonitor/czartool/czartool/CzarDb.pm	(revision 38199)
+++ /trunk/ippMonitor/czartool/czartool/CzarDb.pm	(revision 38200)
@@ -280,5 +280,5 @@
 #        push @{$labels}, 'LAP.PV3.20140730.restack';
 #        push @{$labels}, 'LAP.PV3.20140730.bigmem';
-#        push @{$labels}, 'LAP.PV3.20140730.sky01';
+        push @{$labels}, 'LAP.PV3.20140730.skycal01';
         push @{$labels}, 'LAP.PV3.20140730.sky01.remote';
         push @{$labels}, 'LAP.PV3.20140730.diff01';
Index: /trunk/ippMonitor/czartool/czartool/Pantasks.pm
===================================================================
--- /trunk/ippMonitor/czartool/czartool/Pantasks.pm	(revision 38199)
+++ /trunk/ippMonitor/czartool/czartool/Pantasks.pm	(revision 38200)
@@ -14,6 +14,6 @@
         "distribution", 
         "pstamp", 
-        "update", 
-        "publishing", 
+#        "update", 
+#        "publishing", 
         "registration", 
         "replication", 
Index: /trunk/ippMonitor/def/simplePlotFullForceImage.d
===================================================================
--- /trunk/ippMonitor/def/simplePlotFullForceImage.d	(revision 38200)
+++ /trunk/ippMonitor/def/simplePlotFullForceImage.d	(revision 38200)
@@ -0,0 +1,30 @@
+TABLE fullForceRun, fullForceResult, skycalRun, stackRun, skycell 
+TITLE New sky plot - fullForce
+FILE  simplePlotFullForceImage.php
+MENU  ipp.plots.dat
+
+WHERE fullForceResult.ff_id  = fullForceRun.ff_id
+WHERE fullForceRun.skycal_id = skycalRun.skycal_id
+WHERE skycalRun.stack_id     = stackRun.stack_id
+WHERE stackRun.tess_id       = skycell.tess_id
+WHERE stackRun.skycell_id    = skycell.skycell_id
+WHERE fullForceRun.state != 'new' 
+
+#    field                size  format  name           show     link to         extras
+FIELD fullForceRun.ff_id,	  5, %d,     FullForce ID,       restrict
+FIELD skycalRun.skycal_id,	  5, %d,     Skycal ID,       restrict
+FIELD stackRun.stack_id,          5, %d,     Stack ID,        restrict
+FIELD fullForceRun.label,        10, %s,     Label, 	      restrict
+FIELD skycell.radeg,             10, %.6f,   RA (deg), 	      restrict
+FIELD skycell.decdeg,            10, %.6f,   DEC (deg),       restrict
+FIELD stackRun.filter,           10, %s,     FILTER, 	      restrict
+FIELD skycalResult.sigma_ra,	  5, %.2f,   sigma_ra,        restrict
+FIELD skycalResult.sigma_dec,     5, %.2f,   sigma_dec,       restrict
+FIELD skycalResult.zpt_obs,       5, %.2f,   zpt_obs,         restrict
+FIELD skycalResult.zpt_stdev,     5, %.2f,   zpt_stdev,       restrict
+FIELD skycalResult.quality,       5, %d,     quality,         restrict
+
+# What to plot
+TOPLOT skycell.radeg,skycell.decdeg,stackRun.filter
+PLOTTER skycellplot.php
+PLOTTITLE Sky Plot Full Force
Index: /trunk/ippMonitor/raw/czartool_labels.php
===================================================================
--- /trunk/ippMonitor/raw/czartool_labels.php	(revision 38199)
+++ /trunk/ippMonitor/raw/czartool_labels.php	(revision 38200)
@@ -202,4 +202,5 @@
 if ($selectedMode == "update") {echo "<br>"; createPStampDataTable();}
 echo "<br>";
+      # XXX EAM : 2015.04.23 : debugging slowness
       createServersTable($pass, $proj,$selectedMode,$czardb, $servers, $selectedLabel, $selectedStage, $plotType);
 echo "<br>";
@@ -217,5 +218,5 @@
       createTableColumnHeader("Status (sec behind master)");
       showReplicationsStatus($REPL_HOST_GPC1, $REPL_USER_GPC1, $REPL_PASSWORD_GPC1, $REPL_DBNAME_GPC1);
-      showReplicationsStatus($REPL_HOST_NEBULOUS, $REPL_USER_NEBULOUS, $REPL_PASSWORD_NEBULOUS, $REPL_DBNAME_NEBULOUS);
+      # XXX EAM : problem showReplicationsStatus($REPL_HOST_NEBULOUS, $REPL_USER_NEBULOUS, $REPL_PASSWORD_NEBULOUS, $REPL_DBNAME_NEBULOUS);
       showReplicationsStatus($REPL_HOST_PSTAMP, $REPL_USER_PSTAMP, $REPL_PASSWORD_PSTAMP, $REPL_DBNAME_PSTAMP);
       showReplicationsStatus($REPL_HOST_IPPADMIN, $REPL_USER_IPPADMIN, $REPL_PASSWORD_IPPADMIN, $REPL_DBNAME_IPPADMIN);
Index: /trunk/ippMonitor/raw/ipp.plots.dat
===================================================================
--- /trunk/ippMonitor/raw/ipp.plots.dat	(revision 38199)
+++ /trunk/ippMonitor/raw/ipp.plots.dat	(revision 38200)
@@ -8,5 +8,5 @@
 menulink  | menuselect      | link    | Simple plot - staticsky             | simplePlotStaticskyImage.php
 menulink  | menuselect      | link    | Simple plot - skycal                | simplePlotSkycalImage.php
-menulink  | menuselect      | link    | Simple plot - fforce                | simplePlotFForceImage.php
+menulink  | menuselect      | link    | Simple plot - fforce                | simplePlotFullForceImage.php
 menulink  | menuselect      | link    | Simple plot - chip queue            | simplePlotChipQueue.php
 menulink  | menuselect      | link    | Simple plot - diff                  | simplePlotDiffImage.php
Index: /trunk/ippMonitor/raw/site.php.in
===================================================================
--- /trunk/ippMonitor/raw/site.php.in	(revision 38199)
+++ /trunk/ippMonitor/raw/site.php.in	(revision 38200)
@@ -47,8 +47,8 @@
 $REPL_DBNAME_ISP = "ippc17 (isp)";
 
-$REPL_HOST_NEBULOUS_SECONDARY = "ippdb04.IfA.Hawaii.Edu";
+$REPL_HOST_NEBULOUS_SECONDARY = "ippdb06.IfA.Hawaii.Edu";
 $REPL_USER_NEBULOUS_SECONDARY = "ippMonitor";
 $REPL_PASSWORD_NEBULOUS_SECONDARY = "ippMonitor";
-$REPL_DBNAME_NEBULOUS_SECONDARY = "ippdb04 (secondary nebulous)";
+$REPL_DBNAME_NEBULOUS_SECONDARY = "ippdb06 (secondary nebulous)";
 
 ?>
