Webmaster blog with daily new free Templates, Fonts, Tutorials, Tips and Tricks,
Open-Source Scripts, E-books and lots of Information....
Q-rls basicly has everything a webdesigner
needs to build a succesful website
Best adult advertizing and publishing platform
Nov 20th
I've have tried almost every adult advertising website online was never satisfied with how much they pay and there costumer support until I came across Ero-Advertising.
They pay really good, don't have viruses and offer weekly payouts with a minimum of only € 10.
Below some details for PUBLISHERS:
- Accurate, reliable tracking and payments weekly and monthly
- Relationships with the world's largest brands
- A firm commitment to high ethical standards
- Innovative campaign management tools
- Experienced, friendly account managers
Become a EroAdvertising.com publisher and start generating results from your online activities.
- You will be able to partner with some of the most popular online brands
- Be sure to receive regular communication from our highly responsive account management teams. Keep you up to date with the latest programme news via email, telephone, forums, social networking platforms etc.
- Receive regular payments
Below some details for ADVERTISERS:
As a EroAdvertising advertiser, we can help you create and maintain a more successful advertising solution for your product. From day one, we work to understand your business as well as your performance goals, enabling us to design an successful campaign to maximise your results.
EroAdvertising is an extension of your marketing team. Together, we discover what works for your individual campaign.
Our approach is centered on four key areas:
- GeoTargeted Traffic - Served in more than 200 countries across the globe
- Technology - Next-generation solutions tailored to your product's requirements
- Team - Well balanced, experienced account managers to monitor and deliver your campaign
- Tranperant system - Detailed stats so you can control where is the traffic coming from
CLICK HERE to go to Ero-Advertising, register to start publishing or advertising on adult websites.

Make money selling adult products (affiliate program)
Aug 25th
Earning lots of cash made easy with this affiliate program.
You can build you own store using there products and checkoutsystem.
Earning 25% from all the sales you've made in your shop.
Selling for the largest adult product shop in the world with:
- 40,000 Toys & Lingerie
- 40,000 DVDs
- 100,000 VOD Titles
The template is customizable, it has realtime sales statistics and you can use your own domain.
No need to take care of Processing orders, shipping, and handling customer service.
It been taken care of so all you have to do is market your store and make sales!
Below a small admin side preview:
See a live demo of this shop now
Register your account and start making money with your customized shop
Centering your Website - CSS Snippet
Mar 4th
The following CSS snippet helps you center the content of your webpage
|
<body> |
|
#page-wrap { |
Howto Install Red5 Flash Server in Linux
Mar 3rd
This tutorial shows you how to install red5 on your Linux server. Red5 is the program that makes real time streaming work on the server.
Before you begin, make sure you have root access.
1. Download and Install Java
yum -y install java-1.6.0-openjdk java-1.6.0-openjdk-devel
2. Download and Install Ant
cd /usr/src
wget http://mirrors.kahuki.com/apache/ant/binaries/apache-ant-1.8.1-bin.tar.bz2
tar jxvf apache-ant-1.8.1-bin.tar.bz2
mv apache-ant-1.8.1 /usr/local/ant
3. Export all Variables
export ANT_HOME=/usr/local/ant
export JAVA_HOME=/usr/lib/jvm/java
export PATH=$PATH:/usr/local/ant/bin
export CLASSPATH=.:$JAVA_HOME/lib/classes.zip
Make the commands available to everyone on your server:
echo 'export ANT_HOME=/usr/local/ant' >> /etc/bashrc
echo 'export JAVA_HOME=/usr/lib/jvm/java' >> /etc/bashrc
echo 'export PATH=$PATH:/usr/local/ant/bin' >> /etc/bashrc
echo 'export CLASSPATH=.:$JAVA_HOME/lib/classes.zip' >> /etc/bashrc
4. Install SVN (Skip if SVN is already installed)
yum install perl-URI
yum install subversion
5. Download and install Red5
cd /usr/src
svn co http://red5.googlecode.com/svn/java/server/tags/0_9_1/ red5
mv red5 /usr/local/
cd /usr/local/red5
ant prepare
ant dist
cp -r dist/conf .
NOTE: This will install version 0.9.1 of Red5. If you wish to use a previous version, go to - http://red5.googlecode.com/svn/java/server/tags/
and get the link to the version of Red5 you wish to use and substitute it in the "svn co" field.
6. Change Permissions of red5.sh
chmod 755 red5.sh
7. Start Red5
./red5.sh
8. If everything is working fine, test Red5 at http://yourip:5080
9. Make the Init script
nano /etc/init.d/red5
Copy and paste the code below. If your using putty, press ESC and then type :wq to save the init file.
#!/bin/sh
# For RedHat and cousins:
# chkconfig: 2345 85 85
# description: Red5 flash streaming server
# processname: red5
PROG=red5
RED5_HOME=/usr/local/red5
DAEMON=$RED5_HOME/$PROG.sh
PIDFILE=/var/run/$PROG.pid
# Source function library
. /etc/rc.d/init.d/functions
[ -r /etc/sysconfig/red5 ] && . /etc/sysconfig/red5
RETVAL=0
case “$1″ in
start)
echo -n $”Starting $PROG: ”
cd $RED5_HOME
$DAEMON >/dev/null 2>/dev/null &
RETVAL=$?
if [ $RETVAL -eq 0 ]; then
echo $! > $PIDFILE
touch /var/lock/subsys/$PROG
fi
[ $RETVAL -eq 0 ] && success $”$PROG startup” || failure $”$PROG startup”
echo
;;
stop)
echo -n $”Shutting down $PROG: ”
killproc -p $PIDFILE
RETVAL=$?
echo
[ $RETVAL -eq 0 ] && rm -f /var/lock/subsys/$PROG
;;
restart)
$0 stop
$0 start
;;
status)
status $PROG -p $PIDFILE
RETVAL=$?
;;
*)
echo $”Usage: $0 {start|stop|restart|status}”
RETVAL=1
esac
exit $RETVAL
10. Change the permissions of the init file
chmod 755 /etc/init.d/red5
11. Restart and test Red5
/etc/init.d/red5 stop
/etc/init.d/red5 start
/etc/init.d/red5 status
/etc/init.d/red5 restart
12. Add Red5 to your startup init scripts
chkconfig red5 start
