こんばんは。
nwpub_cal1.path="[(site_url)]manager/media/";
この対処は "Use friendly alias path" の NOTE に書かれている通りです。
Use friendly alias path
NOTE:
When setting this option to 'Yes' (turning on alias paths), reference
items (such as images, css, javascripts, etc) using the absolute path:
e.g., '/assets/images' as oppose to 'assets/images'. By doing so you
will prevent the browser (or web server) from appending the relative
path to the alias path.
(2) フレンドリーURLを使用した時、「blog it!」をクリックした後、
アクセスされるべきURLがおかしい (ドキュメントID.htmlになってる)
これは、ドキュメントが登録された後、$modx->documentListing が更新されて
いない事が原因だと思います。
スニペット NewsPublisher のパラメータに &clearcache を設定すると、説明
の通り、assets/caches/siteCache.idx.php が更新されると思われます。
&clearcache - when set to 1 the system will automatically clear the site cache after publishing an article.
DocumentParser クラスがロードされた時に $modx->documentListing は初期化
されますので、その後投稿された内容は、$modx->documentListing には反映さ
れていないようです。
$modx->documnetListing の中に指定された id はないので、仕方なく id のま
ま url に使われたという次第のようです。
ですので、投稿後に $modx->documentListing を更新してやれば正しい
FriendlyURLs を得られると思います。
....で、データの更新を正しくやる手順が未だ分かっていません。
p.s.
----
これが ditto というものだったのですね、今まで知りませんでした。