技術情報メモ

コンピュータ等の技術情報をメモっていきます。
mysqlやqmailなど...。

サイボウズ8において、アンインストール時のトラブル

2009年12月14日 | 一般
サイボウズ8において、アンインストール時に「アンインストールを実行するファイルが見つかりません。」が表示された場合の対処法

この事象は、主にアンインストールが出来ない場合に使用すると思います。

一度、他の識別子でインストール後、作成される識別子のディレクトリ名を、アップデート出来ない識別子にリネーム。
その次にアンインストールしたい識別子でアップグレード。
その後、アンインストールしたい識別子でアンインストール。

PoweredBlueでMySQL4.0を5.0にアップグレードするメモ

2008年10月27日 | mysql
------------
[mysql]$ rpm -qa | grep mysql
mysql-shared-4.0.20-30
mysql-server-4.0.20-30
mysql-client-4.0.20-30
mysql-devel-4.0.20-30
php4-mysql-4.3.11-25
mysql-bench-4.0.20-30

------------
# rpm -e mysql-shared mysql-server mysql-client mysql-devel mysql-bench php4-mysql base-database-capstone phpmyadmin
install-info: warning: no entries found for `/usr/share/info/mysql.info.gz'; nothing deleted

-------------
mysql-serverをインストール中に以下のエラー

# rpm -ivh MySQL-server-5.0.67-0.glibc23.i386.rpm
warning: MySQL-server-5.0.67-0.glibc23.i386.rpm: V3 DSA signature: NOKEY, key ID 5072e1f5
error: Failed dependencies:
perl(vars) is needed by MySQL-server-5.0.67-0.glibc23
perl(warnings) is needed by MySQL-server-5.0.67-0.glibc23



hetemlで (SS)C-BOARD v3.8を動作させる時の注意点

2007年10月08日 | 一般
hetemlで (SS)C-BOARD v3.8を動作させる時の注意点。
cgi全般でも言えることかもしれません。


ディレクトリのアクセス権について。 付属のreadme.htmには。

ディレクトリ
c-board.cgiが入ってるディレクトリ」 [757] (忘れがち), data [757], filelog [757], image [757], cache [757]

とかかれているけれど、c-board.cgiが入ってるディレクトリのパーミッションを757にすると、500エラーが発生して動作しない。705(デフォ?)にすると動作するので注意をば。


phpインストール後のメッセージ(pear関連)

2007年09月23日 | php

warning! a PEAR user config file already exists from a previous PEAR installation at '/root/.pearrc'. You may probably want to remove it.
Wrote PEAR system config file at: /usr/local/etc/pear.conf
You may want to add: /usr/local/lib/php to your php.ini include_path
Installing PDO headers: /usr/local/include/php/ext/pdo/

apacheインストール時のconfigure

2007年08月08日 | apache
./configure --with-mpm=worker --enable-cache --enable-disk-cache --enable-mem-cache --enable-proxy --enable-proxy-balancer --enable-rewrite

あるいは...


./configure --with-mpm=worker --enable-cache --enable-disk-cache --enable-mem-cache --enable-proxy --enable-proxy-balancer --enable-rewrite --with-included-apr

Ubuntuの文字化け対策

2007年07月28日 | Linux管理
export LANG=ja_JP.EUC-JPを

PHPでのメール送信時に...

2007年06月18日 | php
PHPのmbencodemimeheaderは事前にmbinternalencodingが必要 akiyancom

$mail_from = mb_encode_mimeheader(mb_convert_encoding($mail_from_name,"JIS","auto"),"UTF-7","Q")."<".$mail_from_addr.">";

RaQからPoweredBLUEへの移行ツール

2007年05月09日 | PoweredBLUE
Sun Cobalt互換のWeb管理ツールBlueQuartzとLinux OSを融合させたインターネットサーバー構築ソフトウェア


[インポート時のコマンド]

/usr/sbin/cmuImport -h

↓ヘルプ
Reading config file: /etc/cmu/cmuConfig.xml
usage: cmuImport [OPTION]
-a import admin's files
-c import configuration only
-d directory of that contains the exported files
-p do not import user passwords, userPasswd in /etc/cmu/cobaltBase.xml will be used instead
-s use session id #####
-i import all virtual sites with this IP address (RaQ only)
-n import only these sites ie -n "ftp.foo.com,www.bar.com" (RaQ only)
-A skip adjust script, this is dangerous
-S skip conflict resolution
-C skip scanin script, this is useful for see what conflict exsist
-h help, this help text

Windowsでサムネイルを作成する方法

2007年02月20日 | Windows
Cazperのつれづれ日記 ウェブサイトのサムネイル画像を作るには How to make the Web site thumbnails

からトラックバックを頂きました。

書き忘れていたのですが、windows用のフリーソフトで"Webnail2"というものがありました。これも使えます。

詳細は、以下のページを参照下さい。

http://romitechio.com/log/archives/2005/05/fyi.php

allow_url_include

2006年12月10日 | 一般
yohgakis blog - allow_url_includeオプションの追加

PHP2.2.0インストール後にpearをインストールしようとしたところ、エラー。

php.iniの
allow_url_includeをOnしたところ、OKに。