MySphere Posts

I’m working on a project to migrate the portal version.  The  portal server use a remote WCM.
We need to migrate a Portal Server environment and WCM environment.
There  is no path to migrate Portal Server V6.0 to Portal Server V7.0, only Express, Enable and Extend and this situation is not documented by IBM.
I opened a PMR and the lab told me to upgrade Portal Server V.6.0 using WCM 7.0 binaries.
If you didn´t know, in Portal V6, Portal and WCM was the same binaries and if you wish WCM after the setup process you run a command line to setup the wcm authoring interface, etc, etc.
Since Portal 6.1 the binaries of WCM and Portal is not the same, you need to download different images from passport advantage.

IBM forgot that some customers have Portal Server installed. Imagine if my client doesn´t have the WCM license….

Uncategorized

There are two different ways you can setup the size restriction of message on Domino server

1) you can create a mail server rule on the Domino server, it’s in the Domino configuration document -> Router/SMTP tab -> Restrictions and Controls tab -> Rules tab

Create a mail server rule for Size (in bytes) is less than or is greater than any size you want, and you have options to journal this messages, move to database, don’t accept message, don’t deliver message, change routing state or stop processing.

2) you can also restrict the message size using a setting in the Domino configuration document -> Router/SMTP tab -> Restrictions and controls tab -> Restrictions tab -> “Maximum message size” field.

The maximum message size in KB the server accepts.  The router rejects any messages that exceed this size for both transfer and delivery.  A non delivery message will be returned to the sender reporting the reason of the failure. The default is 0 KB, which does not limit message size.  

Both Size restriction is applied on total size of messages, not attachment.  Total size of messages which include the attachment, body of messages and headers information.  So if you need to make sure certain size of attachment go through you have to add some additional size for the size restriction on the server.

Uncategorized

The maximum number of worker thread for each Internet protocols is by default 40. Using notes.ini you can modify the worker threads for each protocol

LDAPMaxWorkerThreads=#

SMTPMaxWorkerThreads=#

IMAPMaxWorkerThreads=#

POPMaxWorkerTreads=#

DIIOPMaxWorkerThreads=#

HTTPMaxWorkerThreads=#

  Note: that HTTP is currently the only protocol where worker threads can be set in the server document.

Uncategorized

Excelent video if you want to compare files on Connections and MS Sharepoint

Uncategorized

Option 1:  Increase the minimum attachment size for DAOS and remove the small .nlo files

* In order to have a better understanding of how to choose an attachment size, you should download and run the DAOS estimator.

  1. Increase the “Minimum size of object before Domino will store in DAOS” setting to the newly desired value in the server document.  Note:  Do not use special characters such as commas or periods when entering the minimum size.
  2. Restart the Domino server to enable the new minimum size.
  3. Run a copy style compact (compact -c) on all databases that currently have DAOS enabled to allow the server  to bring the small attachments back into the mail file.
  4. Wait for the “object deletion” interval to pass for prune to remove the small .nlo files.  If you have taken a recent backup and would like to delete the small files more immediately you can run the following command:

tell  daosmgr  prune  <#_of_days_since _last_full_backup>

Option 2:  Decrease the number of days for the “Defer object deletion” interval.

* In order to ensure you have all data saved in a disaster recovery situation you must not set your “defer object deletion” less than the largest number of days between full saves.

  1. Change the “Defer object deletion” interval to your newly desired value.
  2. Wait for prune to run at 2:00 a.m. or start manually with the console command:

tell  daosmgr  prune <#_of_days_to_retain_nlo_files>

Uncategorized

In general, as mentioned in the Portal info center, Page builder menus located at :  fs-type1/themes/PageBuilder2/menuDefinitions

http://www-10.lotus.com/ldd/portalwiki.nsf/dx/Page_builder_menus_wcm7

So to remove/hide the Sign up link do the following :

1) Connect to your fs-type1 using a webDav :
http://localhost:10039/wps/mycontenthandler/dav/fs-type1

2) Go to  fs-type1/themes/PageBuilder2/menuDefinitions/ directory

3) modify bannerLink.json

from

visibilityFn: com.ibm.pb.contextMenu.sharedActions.isAnonymous,
id: “BannerLinks:signUp”

to

visibilityFn: function(ID, resourceType, metadata, obj){ return false;},
id: “BannerLinks:signUp”

To remove/hide the Edit my profile link do the following :
1) modify userActions.json file in  fs-type1/themes/PageBuilder2/menuDefinitions/ directory

 from

visibilityFn: com.ibm.pb.contextMenu.sharedActions.isAuthenticated,
id: “UserActions:selfCare”

to

visibilityFn: function(ID, resourceType, metadata, obj){ return false;},
id: “UserActions:selfCare”

Note: you may want to clear the browser cookies and cache before testing and remove the sign up link from the login portlet. Just go to confirguration page of the portlet.

Uncategorized

This problem happened with a few weeks again with a project I was working on.
In a WebSphere Portal v7.0.0.2 cluster, content changes (such as portlet preference updates) may not replicate to all nodes in the cluster until the nodes are restarted.

Is advised to install this fix

Uncategorized

Started today a new project. We need to migrate a Portal and WCM environment to 7.0.0.2.  Will be great adventure :-).

The first step was to download a ton of files, plan the migration and tomorrow i will start the setup process.

Uncategorized

Interim Fix 1 for Lotus iNotes 8.5.3 Fix Pack 2 is now available for download from Fix Central. This Interim Fix is required only if running IBM Connections Mail 1.0. This Interim Fix is NOT required for stand-alone IBM Lotus iNotes and/or IBM Lotus Domino.

Get the fix here

Uncategorized

Updates made to the Firefox browser in Firefox 15 and later, may result in iNotes no longer working as expected.   For example, mail will not send when pressing the Send button after composing a mail message.

The use of signed scripts in Firefox by iNotes can be disabled at the server with a notes.ini setting.  
After this is applied, aAttachments will use the older DHTML user interface, but will work.   Mail, calendar events, and to do’s will send and save, but URLs will not be automatically converted into URL hotlinks.   (However, many mail clients convert URLs into hotlinks when mail is received, so the absence of this conversion by iNotes may not be noticeable.)

In order to disable signed scripts in Firefox, set “iNotes_WA_FirefoxSignedScript=0” in the notes.ini, and then restart the http task for this to take effect.

To make this update, enter the following server console commands:

set config iNotes_WA_FirefoxSignedScript=0
restart task http

The information above is from TN 1610926

Uncategorized