重新上线及感谢
“JustNeo涂鸦屋”再次上线,较之前对名称做了小的改动。原来是涂鸦房,现在是涂鸦屋。之前是ww.justneo.org/blog,如今是www.justneo.org/doodle,想必大家知道含义吧。先前的那个blog被和谐了:(,加之工作忙,忘了这事。这次上线导了原来的几篇涂鸦回来,同志们那,备份很重要额。
这里,我要感谢,非常感谢,十分感谢,严重感谢,强烈感谢rojoro,感谢其无私的共享精神,把自己的DH空间分了点给我。你也可以去申请由rojoro免费赠送的哦,名额有限,大家抓紧时间。不过呐,貌似我没申请的说,是rojoro主动问我要不要的。这就是天上掉馅饼吧,免费且不需要广告,还有热心的技术支持(这里面不会有什么阴谋吧,呵呵)。哦,rojoro,你就是那个天使。
再次感谢rojoro。
小屋装扮慢慢再折腾,以后多码字,少说话。
WLMD中msmail.dll不能初始化问题的解决办法
Windows Live Mail Desktop测试这么长时间,有些问题似乎总是没有解决好。
安装完成WLMD后,点击桌面上的图标。返回的却是错误的提示信息”Starting Windows Live Mail Desktop for the first time requires an online connection. Please connect to the internet and try again. (0×80048883).” 点OK之后又是一个提示错误,”Windows Live Mail Desktop Beta could not be started because msmail.dll could not be initialized. Windows Live mail desktop beta may not be installed correctly.”
官方用户支持给出的解决办法:
首先连上网。在开始->运行里输入”fixmapi”,执行该文件。系统会在system32文件夹下生成一个mapi32.dll文件。如果出现监控软件提示,允许它生成。(如果在运行fixmapi时返回错误提示,说找不到这个文件。进入ms-dos,输入”dir %systemroot%\system32\fixmapi.exe /s”,看看是否有这个文件。如果提示文件未找到,很不幸,从别处拷一份吧。)
如果问题依然存在,在”添加/删除程序里面”卸载WLMD,再重新安装。如果还不行去官方重新下载一份,再装。
除了上面用fixmapi修复mapi32.dll文件这个有点建设性建议,剩下的谁都会做。
通过反编译,发现微软真的很阴险,WLMD第一次运行时会从passport.net下载两个文件ppcrlconfig.dll和ppcrlui.dll存放到”系统盘:\Documents and Settings\你的用户名\Application Data\Microsoft\IdentityCRL\Production”文件夹下,WLMD需要它们来完成帐户的配置,但有时这个任务并不能完成。所以最简单的办法就是复制这两个文件到那个文件夹下。可以从
http://clientconfig.passport.net/ppcrlconfig.bin
http://clientconfig.passport.net/ppcrlui.bin
下载这两个文件并改名为.dll,存放到上面说的文件下就可以了。
【原创+整理】Opera浏览器新手指南
一直用的Opera 9.0,昨天升级到了9.20b,大跨越呀。嘿嘿。
IE不安全,这个不必解释了吧,微软的东东被叮的体无完肤。FireFox功能少,要装插件,然后就启动N慢。就让我们用Opera吧。Opera的UI很漂亮,给人感觉就很舒服,就像Skype一样,很柔和。用我自己的话说,就是软软的感觉:-)
从IE转到Opera,可能会很不适应,这里将会帮你克服这些困难^_^
英文段落来自官方说明文件http://www.opera.com/docs/plugins/
你可以不用看:-)
Installing/Upgrading the Flash Player
To view content on Web sites using the latest versions of Flash Player, go to the Adobe site to download the player, and follow instructions.
安装flash播放器
从adobe网站上下个flashplayer,安装,重启Opera就搞定了。
地址:http://www.adobe.com/products/flashplayer/
Read the rest of this entry »
【原创】RedHat 9.0下Apache+PHP+MySQL服务器安装配置
一、安装环境
操作系统:Linux RedHat 9.0
web服务软件:Apache httpd-2.2.3.tar.gz
数据库软件:MySQL-server-5.0.26-0.i386.rpm(服务端)
MySQL-client-5.0.26-0.i386.rpm(客户端)
MySQL-devel-5.0.26-0.i386.rpm(开发包)
MySQL-shared-5.0.26-0.i386.rpm(共享库)
PHP脚本程序语言:php-5.1.2.tar.gz
图形库文件:JPEG:jpegsrc.v6b.tar.gz
FreeType:freetype-2.2.1.tar.gz(字体)
ZLIB:zlib-1.2.3.tar.gz
PNG:libpng-1.2.12.tar.gz
GD:gd-2.6.26.tar.gz
优化程序:ZendOptimizer-3.0.2-linux-glibc21-i386.tar.gz
二、安装顺序
1、安装MySQL 数据库
2、安装Apache Web服务器
3、安装GD图形库和XML
4、安装PHP5、修改Apache配置文件
5、安装Zend优化程序
Read the rest of this entry »
【原创】开3389的批处理
过年的时候写的一个批处理文件,可以开本机的3389。自动识别系统版本,可以更改连接端口,通过修改注册表来到达开3389的目的。写完之后,才发现一点作用都没,不能远程执行,需要管理员权限,容易被发现。就一点好处,不会被杀软kill。权当是练习写批处理文件吧,也没什么技术含量的:)
:INIT
@echo off
cls
setlocal
echo.
echo ===========================================================
echo TSOPEN.bat written by JustNeo.
echo This program is to open TermService on target computer.
echo It is a free software; you can redistribute it and/or
echo modify it as you like.
echo ===========================================================
set port=d3d
if /I "%1"=="" goto :START
if /I "%1"=="%*" goto :SYNTAX
if /I not "%2"=="" set port=%2
if /I "%1"=="-p" goto :START
:SYNTAX
echo.
echo TSOPEN.bat [-p portnumber]
echo -p portnumber Specify the TermService PortNumber(Hexdecimal)
echo.
echo If there is no parameter, use 3389 as the default port.
goto :QUIT
:START
set regedit=%SystemRoot%\regedit.exe
set find=%SystemRoot%\System32\find.exe
if not exist “%regedit%” set regedit=%SystemRoot%\system32\dllcache\regedit.exe
if not exist “%regedit%” goto:NOREGEDIT
if not exist “%find%” set find=%SystemRoot%\system32\dllcache\find.exe
if not exist “%find%” goto :NOFIND
:VERSION
echo.
echo Checking system version …
REM Checking for running system version
ver | find /i “Windows 2000″ > NUL
if not errorlevel 1 goto :OS2KCHK
ver | find /i “Windows XP” > NUL
if not errorlevel 1 goto :OSXP
type %systemroot%\system32\prodspec.ini | find /i “2003″ > NUL
if not errorlevel 1 goto :OS2K3
goto :NOVERSION
Read the rest of this entry »





