wp_simpleviewer is cool wp flash image viewer plugin, http://www.airtightinteractive.com/simpleviewer/.

I tested it in one site in bluehost, when I changed image path then always looking for old path, checked gallery.xml from cPanel is new path.

when I verify gallery.xml from address bar manually, it’s strange – the image path in gallery.xml is still old path.

http://domain/wp-content/photos/gallery.xml 

I click refresh button in IE, the printout changed to new path, means bluehost server doesn’t refresh when wp_simpleviewer trying to read gallery.xml.

Madrid

October 1, 2007

Malaysia

October 1, 2007

how to setup BMR client

October 1, 2007

you can setup BMR client when it lost in BMR GUI.

go to BMR client, run
#/opt/BareMetal/bmrsetupclient

BMR client will show up again in BMR web gui.

cannot drag tape drive to Robot as expected, also got error on next time:
Cannot discover devices. (MM status 44)
Netbackup could not detect any removable media decices to use for backup.

easy solution is removing this tape drive from Robot in left Device tree, then run Device Configuration Wizard again, will scan this tape drive under Robot.

E4800/E4900 domain console setup
needed:
1) 9M-25F null modem serial cable
2) crossover cable
steps:
1) connect to system control 0 (activated) via serial console port
choice platform shell from menu
>setplatform
network IP address : 100.100.100.20
netmask: 255.255.255.0
gateway: 100.100.100.1
logical IP : 100.100.100.30 // floating IP when failover turn on
>reboot // reboot console, no impact on running system
2) connect to system control 1 (inactivated) via serial console port
repeate above steps except logical IP

V890 RSC setup
needed:
1) 9M-25F null modem serial cable
2) crossover cable
steps:
0) need to install Solaris at first from serial console
1) then install RSC package:
#/usr/sbin/pkgadd -d rsc2.2.3_package_s9.zip
3) config rsc console
#/usr/platform/`uname -i`/rsc/rsc-config
setup V890 net mgt port
network IP: 100.100.100.10
netmask: 255.255.255.0
gateway: 100.100.100.1
4) redirect console
from ok
ok> setenv diag-out-console true (default – false)
ok> setenv input-device rsc-console (default keyboard)
ok> setenv output-device rsc-console (default screen)
or from solaris
#eeprom diag-out-console=true
#eeprom input-device=rsc-console
#eeprom output-device=rsc-console
#init 6

then you have 2 RSC console ports:
1) net mgt port
using crossover cable from laptop to V890
2) serial port
using RJ45 network cable with DB25/DE9 adaptor

switch RSC console and system
1) from system to console
~.
2) from console to system
rsc>console

V240/V440 console setup
needed:
1) DB25/DE9 + RJ45 cable
2) crossover cable
steps:
1) connect to serial port, get access to ALOM console
SC>
2) setup network for net mgt port
network IP: 100.100.100.40
netmask: 255.255.255.0
gateway: 100.100.100.1

switch console and system
1) from system to console
#.
2) from console to system
SC>console -f

now you can use both serial port and net mgt port to access ALOM console.

I got this error message around 2 weeks, pointed to “C:\Program Files\system32\explorer.exe”, the system will be died when click OK for this popup window.

searched google, it casued by some latest installed softwore and usually happened when launching IE 6.0, I removed all unnecessary stuff in my laptop, changed to firefox, then introduced new issues: firefox is extreme slow when loading pages, sometime doesn’t work when loading script page.

still waiting final solution to this buffer overrun error.

blog post import/export

February 26, 2007

found easy way to transfer post between diff blog system.

1. sphpblog to wp
export post from sphpblog via RSS, import to wp via RSS, not supported by yourname.wordpress.com, don’t know why they disabled this feature.

2. blogger to wordpress.com
wordpress.com can import posts from gmail account associated blogspot, including images !

3. wp to wp
wp export XML for another wp, only problem it’s not easy to edit post in another wp since posts formatted by html code.

add link to WordPress menubar

February 24, 2007

wp-content\themes\back-in-black-11\sidebar.php

<!– begin sidebar –>
<div id=”menu”>
<span class=”menu”>[ <a href="<?php bloginfo('url'); ?>/?display=archives"> archives </a> ]</span>
<span class=”menu”>[ <a href="<?php bloginfo('url'); ?>/?display=categories"> categories ]</a></span>
<span class=”menu”>[ <a href="<?php bloginfo('url'); ?>/?display=links">links</a> ]</span>
<span class=”menu”>[ <a href="<?php bloginfo('url'); ?>/?display=meta">meta</a> ]
<a href=”http://localhost/dreamdev” mce_href=”http://localhost/dreamdev”>| [DreamDev]</a>
<a href=”http://localhost/devforum” mce_href=”http://localhost/devforum”>[DevForum]</a>
</div>
<!– end sidebar –

convert sphpblog to wp

February 24, 2007

generate rss from sphpblog,

http://sphpblog/rss.php?n=1000

save to text file, remove CDATA before import to WP due to this item not handled well by WP.

“- <![CDATA["

"]]>”

import RSS from WP Manage/Import/RSS, all posts, categories loaded to WP.