Posts

Showing posts from April, 2014

My prouduct launch notes

Surprisingly I spent a lot of time playing around with OptimizePress 2.0 Do a split test on sales page Driving FB PPC traffic to sales page.  And finally I understand this statement: You do not have any traffic problem.  It is true because you can always buy traffic from different source. Set your daily PPC budget at the maximum of your product price so that, if you have one sale a day, you just cover your PPC expense.  My product is $9.95 so that my daily PPC budget is $10. Later on it seems that it would be a good idea to create a free report first, then drive traffic to squeeze page, then create 3 email follow up on client. Using Ryan Deiss free email follow up as a template, you can rewrite it to deliver some value on your email, and at the end of email you add a link to your sales page.  E.g. if you want to learn more tips and tricks about this, you can go to website here. Frank Kern recently released an "article" promoting his advance training.  The article he w

Linux Installing APR and Tomcat Native Library on Tomcat 7.0

Key notes: The objective: install APR and Tomcat Native Library on Tomcat 7.0.41.  I am using Icetea java 1.6 open JDK as when I download JAVA from Oracle, it has rt.jar missing on 1.6 and 1.7 The linux platform is RHEL 6.3 I download and compile tar source of APR (1.5) and APR util (1.5.3).  I found that when I use yum install, the apr library is incompleted. Need to yum install java openjdk.  I am using 1.6. Untar APR and follow readme to configure and compile.  make && make install Follow this (Eng) and this (S.Chi) to configure, compile and install Tomcat Native Library The command I use is: ./configure --with-apr=/usr/local/apr --with-java-home=/usr/lib/jvm/java-openjdk/ In setenv.sh (under <tomcat_dir>/bin, if not exists, create one), I set the following:  export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/usr/local/apr/lib JAVA_HOME=/usr/lib/jvm/java-openjdk CLASSPATH=$CLASSPATH:/usr/local/tomcat7/webapps/ CATALINA_OPTS="-server -Xms6G -Xmx6G $CATALINA_