CiceroUIWndFrame has error

today, i found one window control float in left top screen,

image

and like this:

image

this is spy++ screenshot:

image

i used windows 8 x64 cracked version. i have no money to buy official version operator system.

this error may be is main reason , my other computer, in ie, cann’t type any character in text control,after i installed some bank activex secrety control.

nowdays,i remerber this log,and if have free timer,to check then.

发表在 windows8 | 标签为 , | 留下评论

wordpress setup donate plugin–paypal

1.in administrative console,setup plugin –> search ‘paypal’, i choose “donate via paypal”,then click setup button,after that enabled this new plugin.

image

2.in already setuped plugin list,your can found “donate via playpal”,click setting button.

image

and it look like this:

image

Enter Your Paypal Email id on which you want to recieve donations:liandeliang@gmail.com
Enter the text you want to display above donation banner:Thanks for your helper!
Where you want to display paypal donation banner ?:Posts and Pages
Your Prefered currency to recieve payment:United states dollars(default)
Your Paypal Return Url:https://www.paypal.com/cgi-bin/webscr?item_name=Donation+to+pkrss&cmd=_donations&business=liandeliang%40gmail.com

then click “update options” button.

(Say:)That return click is setuped in some years age,i not test it yet.

(Tip:)Your can change my email to your paypal login email,and your can have the donate button,no need to setup any operator.

3.result, your can see it:

image

Reference:

Donations – Use PayPal to Easily Accept Donations on Your Site

发表在 blog | 标签为 , , | 留下评论

amazon linux ami install openvpn log

 

1.install

sudo -i
yum install openvpn
openvpn --genkey --secret /etc/openvpn/openvpn-key.txt

2.edit configure file

vim /etc/openvpn/openvpn.conf
port 1194
proto udp
dev tun
secret openvpn-key.txt
ifconfig 192.168.2.1 192.168.2.2
keepalive 10 120
comp-lzo
persist-key
persist-tun
status server-tcp.log
verb 3

3.restart server

service openvpn restart

then amazon secret group add inbound 1194 udp for this.

   image

4.client download openvpn client for windows,then install it.

download openvpn。becaused i used windows8 x64 and i am in china, so i cann’t download from openvpn from official website. in here:

http://www.windows8downloads.com/win8-openvpn-x64-zpmxsfou/download.html

5.modify openvpn client.

in installpath\OpenVPN\config\

   openvpn-key.txt

          is same as server’s generator /etc/openvpn/openvpn-key.txt file content.

  client.ovpn

dev tun
proto udp
remote YOURSERVERHERE 1194
resolv-retry infinite
nobind
secret openvpn-key.txt
ifconfig 192.168.2.2 192.168.2.1
comp-lzo
verb 3
dhcp-option DNS 8.8.8.8
redirect-gateway def1
发表在 server(服务器) | 标签为 , , | 留下评论

microsoft visual 2012 c++ build log 2

today i want to build microsoft visual studio 2012,with release build some c# and vc++ projects.

project depends output project file
sspBase   pdf.lib make.msvc
SSPViews pdf.lib SSPView.dll SSPViews.vcxproj

1.error:

1>pdf.lib(PDF.obj) : error LNK2038: 检测到“_ITERATOR_DEBUG_LEVEL”的不匹配项: 值“0”不匹配值“2”(Decrypt.obj 中)
1>pdf.lib(PDF.obj) : error LNK2038: 检测到“RuntimeLibrary”的不匹配项: 值“MT_StaticRelease”不匹配值“MDd_DynamicDebug”(Decrypt.obj 中)
1>     正在创建库 D:\work\svn\jm\esign\src\Release\SSPViews.lib 和对象 D:\work\svn\jm\esign\src\Release\SSPViews.exp
1>SSPViews.exp : warning LNK4070: .EXP 中的 /OUT:SSPViews.OCX 指令与输出文件名“D:\work\svn\jm\esign\src\Release\SSPViews.dll”不同;忽略指令
1>LINK : warning LNK4098: 默认库“msvcrtd.lib”与其他库的使用冲突;请使用 /NODEFAULTLIB:library
1>LINK : warning LNK4098: 默认库“LIBCMT”与其他库的使用冲突;请使用 /NODEFAULTLIB:library
1>D:\work\svn\jm\esign\src\Release\SSPViews.dll : fatal error LNK1319: 检测到 2 个不匹配项
========== 全部重新生成: 成功 0 个,失败 1 个,跳过 0 个 ==========

 

operator 1:

SSPViews project property –> c/c++ –> code generator –> Runtime library :

old:Mulitthread DLL Debug/MDd

new: Multithread DLL /MD

 

error result:

1>pdf.lib(PDF.obj) : error LNK2038: 检测到“RuntimeLibrary”的不匹配项: 值“MT_StaticRelease”不匹配值“MD_DynamicRelease”(Decrypt.obj 中)
1>     正在创建库 D:\work\svn\jm\esign\src\Release\SSPViews.lib 和对象 D:\work\svn\jm\esign\src\Release\SSPViews.exp
1>SSPViews.exp : warning LNK4070: .EXP 中的 /OUT:SSPViews.OCX 指令与输出文件名“D:\work\svn\jm\esign\src\Release\SSPViews.dll”不同;忽略指令
1>LINK : warning LNK4098: 默认库“msvcrt.lib”与其他库的使用冲突;请使用 /NODEFAULTLIB:library
1>LINK : warning LNK4098: 默认库“LIBCMT”与其他库的使用冲突;请使用 /NODEFAULTLIB:library
1>D:\work\svn\jm\esign\src\Release\SSPViews.dll : fatal error LNK1319: 检测到 1 个不匹配项

operator 2:

sspBase project file :

add compiler flag: /MD

发表在 cpp(vc++) | 标签为 , , , | 留下评论

visual studio 2012 c++ develop build error log problem

1.error log:

1>d:\work\svn\jm\esign\src\third\sample\dsoframer\src\XMLHttpClient.h(42): error C4430: 缺少类型说明符 - 假定为 int。注意: C++ 不支持默认 int

fixed:

old is:
operator==(const __XML_HTTP_ARGUMENT &argV){
            return !_tcscmp(szName, argV.szName) && !_tcscmp(szValue, argV.szValue);
        }
new is:
bool operator==(const __XML_HTTP_ARGUMENT &argV){
            return !_tcscmp(szName, argV.szName) && !_tcscmp(szValue, argV.szValue);
        }

2.error log

1>d:\work\svn\jm\esign\src\third\sample\dsoframer\src\dsoframer.h(180): error C2143: 语法错误 : 缺少“;”(在“*”的前面)

the error code is:

IHTMLDocument2 *  m_spDoc;

fixed:

#include <mshtml.h>

3.error log

1>E:\Program Files (x86)\Microsoft Visual Studio 11.0\VC\atlmfc\include\atlcomcli.h(456): error C2065: “GUID_NULL”: 未声明的标识符

becaused old old code is:

mainentry.cpp:

#define INITGUID // Init the GUIDS for the control...
#include "dsoframer.h"

dsoframer.h:

#include <afxcmn.h>
#include <mshtml.h>

fixed:remove #define INITGUID in mainentry.cpp

//#define INITGUID // Init the GUIDS for the control...
#include "dsoframer.h"

4.error log:

1>HttpPostDat.lib(XMLHttpClient.obj) : error LNK2026: 模块对于 SAFESEH 映像是不安全的。

because project need HttpPostDat.lib,and HttpPostDat.lib has no safeseh option. so we need close it.

image

in project property –> link –> All option –> Image has a security exception handler : yes(/SAFESEH) change to no(SAFESEH:NO)

image

image

5. error log:

1>LINK : fatal error LNK1104: 无法打开文件“libc.lib”

fixed:

in project property –> link –> input ignore special library: /NODEFAULTLIB:LIBC.LIB;LIBCP.LIB

6.error log:

1>dsofauto.obj : error LNK2001: 无法解析的外部符号 _LIBID_DSOFramer
发表在 cpp(vc++) | 标签为 , , , | 留下评论

windows phone 8 jquery mobile localStorage.setItem Error:The system cannot find the file specified

1.error log:localStorage.setItem(key) when used in jquery mobile 1.3.x in windows phone 8

Error:The system cannot find the file specified

fixed:add lastest modernizr.js in the first javascript reference.

<script type="text/javascript" src="./js/third/modernizr/modernizr.js"></script>

ok!

发表在 html5 | 标签为 , , , , | 留下评论

visual studio 2012 tip:add folder as link

1.how to add other folder(eg:“..\..\android_pkrssv2\assets\www\”) to my pkrss windows 8 project’s client link folder:

    <Content Include="..\..\android_pkrssv2\assets\www\**\*.*">
      <Link>client\%(RecursiveDir)%(FileName)%(Extension)</Link>
      <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
    </Content>

after like this:

image

the externer “..\..\android_pkrssv2\assets\www\” foder like this:

image

 

reference:

“Add as Link” for folders in Visual Studio projects: http://stackoverflow.com/questions/3610845/add-as-link-for-folders-in-visual-studio-projects

发表在 visual studio | 标签为 , , | 留下评论