Posts

Showing posts from June, 2014

android 开发 此版本的应用未配置为通过GOOGLE PLAY结算

错误消息: android 开发 此版本的应用未配置为通过GOOGLE PLAY结算 修复: 上传一个含BILLING权限的版本到PLAY后,在手机上也使用这个版本测试。使用调试版会出现这个错误。

Error checking for billing v3 support. (response: 3:Billing Unavailable)

1.Error: Error checking for billing v3 support. (response: 3:Billing Unavailable) 2.Fixed: By here: http://stackoverflow.com/questions/16168361/billing-isbillingsupported-always-unavailable   I can now confirm that this is a real problem and has nothing to do with my devices or code. Problem is with Google Play Store and my location in Serbia. Here are the official details for this issue from Google: Currently, users in Serbia are reporting that they are no longer able to purchase Android apps on Google Play. We’re working hard to resolve this issue so that users in this country can download paid apps again; however, at this time, there is no workaround to the issue. If you’re in Serbia and you’re getting errors when trying to purchase, or you don’t see paid apps at all, then you’re experiencing this known issue. We’ll continue to update this page with developments, so check back soon. Issue first reported on: February 1, 2012 Last updated on: April 10, 2013 Now, my intent ...

J2ee myeclipse develop error log for maven parameter problem

Error: Unable to parse configuration of mojo org.apache.maven.plugins:maven-resources-plugin: 2.6:copy-resources for parameter directory: Error evaluating the expression '$ {project.parent.basedir}/openmeetings-service/src/main/java' for configuration value 'directory' (org.apache.maven.plugins:maven-resources-plugin:2.6:copy-resources:copy-web- templates:process-resources)   Fixed: old: <directory>${project.parent.basedir}/openmeetings-service/src/main/java</directory> to: <directory>${project.basedir}/../openmeetings-service/src/main/java</directory>

J2ee myeclipse develop error log for tomcat 7 deploy problem

Error: An internal error occurred during: "Launching zkxmeetings on MyEclipse Tomcat 7". Cannot change deployment state from ERROR to REDEPLOYING.   Fixed: Right click Project –> MyEclipse –> Add and remove project deployments … in deployments,i found one error icon in the myeclipse tomcat 7 row,so i selected that row,click redeploy.It said: An internal error occurred during: "Redeploy". Cannot change deployment state from ERROR to REDEPLOYING.   So i click remove.then click ok. close this window. Then retried debug as myeclipse server application.and select the tomcat 7 plateform.it is ok now!

amazon linux ami ec2 install nginx + php5.5 +mysql

what when i used other credit card to register one new account,i want to retest it. i request one amazon linux ami ec2 t1.micro 64bit + one windows server 2012 64bit instance in west-1c zone. how after your get virtual machine,do follow me: 2.1 linux 2.1.1 setup nginx and mysql and php # sudo -I # yum update # yum install nginx mysql php55 php55-cli php55-common php55-xml php55-bcmath php55-embedded php55-fpm php55-imap php55-intl php55-mbstring php55-mcrypt php55-mysqlnd php55-opcache php55-pdo php55-pecl-apcu # chkconfig nginx on # chkconfig php-fpm-5.5 on # vi /etc/php-fpm.d/www.conf listen = 127.0.0.1:9000 listen.owner = nginx listen.group = nginx listen.mode = 0664 user = nginx group = nginx />vi /etc/nginx/nginx.conf # For more information on configuration, see: # * Official English Documentation: http: //nginx.org/en/docs/ # * Official Russian Documentation: http: //nginx.org/ru/docs/ user nginx; worker_processes 1; error_log /var/log/nginx/error.log; #error_log ...

php develop error: curl_setopt(): CURLOPT_FOLLOWLOCATION cannot be activated when an open_basedir is set in

error: curl_setopt(): CURLOPT_FOLLOWLOCATION cannot be activated when an open_basedir is set fixed: To solve this problem, simply put safe_mode = Off and clear open_base_dir at php.ini file.