How much is too much

  • February 24, 2009

In regards to submits..how many galleries/images are too many for the current free site structure?
I sometimes get submits with 4 - 6 galleries with 12 - 15 pics each. So that’s 48 - 90 images.
Read more at: greenguyandjim.com

one-way quality links-???

  • February 24, 2009

Im not sure what this means but I heard It is good for SEO for your site. please if any knows what this is let me know…
Read more at: netpond.com

tutorial: how to make ad-filled error pages

  • February 24, 2009

I just built an error page and decide to write up how I did it. This assumes a PHP/Unix hosting environment. all files referred to sit in the domain root.
Note I wasn’t planning to write a tutorial, so I wasn’t thinking in terms of that as I made the page; I was just working. So I may have left something out, feel free to ask questions.
winkwink.gif

There’s four steps and at the end of this post, a link to download the code I used.

TUTORIAL
1. Edit your .htaccess to add this:
Code: ErrorDocument 400 /400.phpErrorDocument 401 /401.phpErrorDocument 403 /403.phpErrorDocument 404 /404.phpErrorDocument 500 /500.phpFor the most common errors, this redirects users to the pages listed.

2. Make the redirect pages. These are just one line of code each. For example, the 400.php just consists of this:
Code: <? $error_status = ‘400′; include ‘error.php’; ?>So you make the five redirect pages, just changing the error status for each one.

3. Make the error.php page. Following is the PHP code:
Code: <?phpswitch ($error_status) { case ‘400′: $title = "Bad Request"; $body = "Your browser (or proxy) sent a request that this server could not understand."; break; case ‘401′: $title = "Authorization Required"; $body = "This server could not verify that you are authorized to access the URL. You either supplied the wrong credentials (e.g., bad password), or your browser doesn’t understand how to supply the credentials required."; break; case ‘403′: $title = "Forbidden"; $body = "You don’t have permission to access " . $_SERVER["REQUEST_URI"] . " on this server."; break; case ‘404′: $title = "Not Found"; $body = "The requested URL " . $_SERVER["REQUEST_URI"] . " was not found on this server."; break; case ‘500′: $title = "Internal Server Error"; $body = "The server encountered an internal error and was unable to complete your request. Either the server is overloaded or there was an error in a CGI script."; break; default: $title = "Unknown Error"; $body = "Unknown Error"; $error_status = ”; break;}?>All the PHP does is take the error code and set variables that will be used in the HTML. Here’s the skeleton HTML I used:
Code: <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en-gb" lang="en-gb" ><head> <meta http-equiv="Content-Type" content="text/html;charset=utf-8" /> <meta http-equiv="pics-Label" content=’(pics-1.1 "http://www.icra.org/pics/vocabularyv03/" l gen true for "http://mistresstalia.com" r (n 3 s 3 v 3 l 3 oa 2 ob 2 oc 2 od 2 oe 0 of 2 og 2 oh 0 c 1) gen true for "http://mistresstalia.com" r (n 3 s 3 v 3 l 3 oa 2 ob 2 oc 2 od 2 oe 0 of 2 og 2 oh 0 c 1))’ /> <meta http-equiv="PICS-Label" content=’(PICS-1.1 "http://www.classify.org/safesurf/" L gen true for "http://mistresstalia.com/" r (SS~~000 9 SS~~001 8 SS~~002 9 SS~~003 9 SS~~004 8 SS~~005 9 SS~~008 2 SS~~009 9))’ /> <title><? echo "$error_status $title"; ?></title> <style type="text/css"> /* page defaults */ html * {margin:0; border:0; padding:0} html, body {width:100%; height:100%; font-family:Verdana, Geneva, sans-serif; font-size:0.8em; background-color:#eeeeee; color:#111111; text-align:center; overflow:auto;} a:link {color:#0000ff;} a:visited {color:#880088;} a:hover {color:#ff00ff;} a:active {color:#ff0000;} ul {margin:1.5em; list-style:none;} li {margin:.5em 0;} h1 {margin-top:.5em; font-size:1.5em;} h2 {margin:1em; font-size:1.3em;} h3 {margin-top:1em; font-variant:small-caps; font-size:1.1em;} h4 {font-style:italic; font-size:0.9em;} p, address {margin:.5em 1em;} blockquote {margin:.5em 2em; font-style:italic;} /* page layout */ #wrapper {width:810px; margin:0 auto;} #leaderboard {width:810px; margin:0 auto; background-color:#ffeeff;} #leftSidebar {width:160px; margin:0 auto; float:left; background-color:#ffeeff;} #rightSidebar {width:160px; margin:0 auto; float:right; background-color:#ffeeff;} #content {width:488px; float:left; background-color:#eeeeee; text-align:center;} #error {width:468px; background-color:#eeeeee; text-align:left; margin:0 auto;} #links {width:468px; background-color:#eeeeee; text-align:left; margin:0 auto;} #footer {float:left; width:808px; background-color:#ffeeff; text-align:center;} .clr {clear:both; height:20px;} </style></head><body><div id="wrapper"> <div id ="leaderboard"> <p>put some ads here</p> <div class="clr">&nbsp;</div> </div><!– end leaderboard –> <div id="leftSidebar"> <p>put some ads here</p> <div class="clr">&nbsp;</div> </div> <div id="rightSidebar"> <p>put some ads here</p> <div class="clr">&nbsp;</div> </div> <div id="content"> <div id="error"> <h1>MistressTalia.com web site error</h1> <p>We’re sorry, but there’s been an error accessing our site. Your browser has been given this information:</p> <blockquote> <p> <? echo $title ?> <br/><? echo $body; ?> </p> <? echo str_replace ( ‘ADDRESS’ , ‘address’, $_SERVER["SERVER_SIGNATURE"] ) ?> </blockquote> </div> <div id="links"> <h2>links you may find helpful</h2> <ul> <li><a href="http://mistresstalia.com">Mistress Talia Presents…</a> - a regularly-updated collection of freesites &amp; galleries on BDSM, fem domme and other fetish topics</li> <li><a href="http://womeninbondage.mistresstalia.com">Women in Bondage blog</a> - dedicated to artistic bondage imagery, both clothed and nude softcore bondage pictures and hardcore lesbian bondage scenes including women bound &amp; girls tied up, shibari: Japanese rope bondage, PVC, rubber &amp; latex bondage.</li> <li><a href="http://sadisticdomme.com">femdom phonesex</a> - the kinkiest phone domination on Niteflirt including fetishes for sissies, giantess fans, masochists, humiliation slaves, money pigs, hypnotic submissives and more.</li> <li><a href="http://sadisticdomme.com/blog">Sadistic Domme blog</a> - Mesmerizing, spellbinding, exquisite torment. Mistress Talia and Lady Johanna’s femdomme blog at http://www.sadisticdomme.com covers fetish discussions (including sadomasochism, forced bi, giantism, bondage, strap-on, cuckolds, erotic hypnosis, sissies and cbt), scene reports (crossdressing, dildos, anal play, corporal punishment, tickling, OTK), our favorite BDSM fantasies (often leatherdyke-oriented) and reviews of toys, books and web sites. We update daily for your reading pleasure.</li> </ul> <p>put a bunch of banners here</p> </div> </div><!– end content –> <div id="footer"> <p>put more ads here</p> </div> <div class="clr">&nbsp;</div></div><!– end wrapper –></body></html>The PHP variables we set earlier are just printed out within the content to make it look "official". The only tricky bit at all was this line:
Code: <? echo str_replace ( ‘ADDRESS’ , ‘address’, $_SERVER["SERVER_SIGNATURE"] ) ?>which was necessary because the $_SERVER["SERVER_SIGNATURE"] variable has an uppercase HTML tag in it and that fails XHTML validation.
The basis setup is a header across the top (for ads), a left and right sidebar (floated left and right respectively, for more ads), a content section for the error message, useful links and some banners, and a footer (for even more ads).
It’s not an SEO-friendly template as the sidebars come first in the code, before the content. I did this for two reasons, first, I don’t expect search engines to actually index error pages. Second, if I’m wrong, I stuffed a lot of text in the sidebars so prefer they get indexed first anyways.
Obviously, you edit up the styles to suit you. Because I have many different sites I’m going to use this for, I didn’t do an elaborate look-and-feel. Instead, I just did a very plain site, so it wouldn’t clash with anything else. A light gray background, a dark gray text, default link colors, and a light pink background on the header, sidebars and footer to make them stand out a bit.
This page validates for both CSS and XHTML.
This shows you what the skeleton looks like (no error is passed): Unknown Error
You’ll notice the columns don’t go to the bottom; I fix that after putting in the ads.
If you use this skeleton yourself, be sure to edit the meta PICS tags for your own site.

4. Stuff it with ads.
I used a few Flash ads which caused me some problems (see postscript)
After stuffing it with ads, the last thing I needed to do was make the columns the same length. Each column ends with a
Code: <div class="clr">&nbsp;</div>I edited to add some length to the shorter column:
Code: <div class="clr" style="height:48px;">&nbsp;</div>It was trial-and-error to figure out the height to add, I’ve got it so one column is a pixel short in FF and the other column is a pixel short in IE6, a compromise not terribly noticeable in either.
Also, in FF, it looks like there’s room for an additional banner, but in IE it’s clear there’s not. The problem is a lot of stuff provided by sponsors uses CSS border or padding (which I usually avoid to skip the problems with IE’s box model), so the ability to make it look the same in all browsers is kinda limited when you use sponsor stuff.
The final pages with ads and an error code can be viewed here: http://mistresstalia.com/blah

CODE
All the code in this tutorial, including ads, can be downloaded here: http://mistresstalia.com/error.zip
You *could* just unzip it in your web root and then start editing, but if you do so, if you have anything necessary in your own .htaccess it will overwrite it.
winkwink.gif

P.S. All this is "advanced" stuff, most people don’t have to worry about it.
I had difficulties getting the code provided from Amazon widgets to validate. I tried the FlashSatay hack, but it didn’t work on the Amazon widgets. Since the widgets are served from Amazon’s server, I can’t figure out what the problem is. I can get a lot of the way towards validation, replacing ampersands, replacing uppercase tags, adding closing tags to param tags, swapping out the script language attribute for the type, etc. But not all the way, and I opted for it to work rather than validate, so the page has 18 validation errors, 6 for each embed.
The VirtuaGirl Flash validates, but I had to edit it a bit to get it there, and I also needed a couple IE hacks for the CSS to get it to work for IE6.
Read more at: netpond.com

Too much Media, please help..

  • February 24, 2009

We are in desperate need of some technical help regarding NATS integration in a new product of ours.. It seems impossible to get a few hours of your time to provide us the info we so badly need.
Going trough the ticket system is unworkable as we need to communicate in real-time with one of your technical peeps.. We are not a client, we are a software company trying to integrate your great product into ours.
Please, be so kind to dedicate someone to answer the questions we have so we can move on and release our product.
Many of your NATS clients will be very happy as they are standing in line to start using our new product.
This is not a flame post but we have tried every other way to try and get the info we need from Too Much Media..
Thank you..
Read more at: gfy.com

Canadian alternative girls?

  • February 24, 2009

I’m going to be travelling around Canada in spring and summer and I’d like to know who all the alternative (punk, nerd, rock, raver, whatever) girls are in Canada so that I can contact some to shoot with while I’m travelling. Content to be used by both of us (my site will be up in August or September).
I know Spunkycash is Canadian, and that’s cool, but more specifically I’m looking for girls that run their own site like me.
Read more at: gfy.com

Pornhub needs alternative advertisers / affiliate programs!!

  • February 23, 2009

Hi,
Post Here if you own an affiliate program or would like to advertise one of these products.
- Replica Watches
- Sex Toys
- Penis Extenders
- Pills (any kind that would convert on porn sites)
- Pheromones
- Poker (We can skim out US traffic)
- Quit Smoking Programs
- Weight Loss
- Get rich quick.. etc
Get your Share of 10 000 000 daily Visitors
Contact Info In Sig.
P.S. I know there will be heat, keep on bumping my thread please
Read more at: gfy.com

I’m getting pumped up.

  • February 23, 2009

Me and some of the old Rage Cash/EPC employees are getting ready to roll out an exciting new program packed with some of the hottest micro niches around.
We all figured after Rage/EPC was sold to DeeCash. We all got to talking about how we built Rage/EPC into a multmillion dollar operattion and figured, we can do the same..but reap the rewards, John did.
So, right now..me, Spunky, one of the old programmers Spunk knows and James Earl will be all in this as partners.
So, in about a month or so..we will be spitting out some of the hottest new sites, to hit the net.
Where some of the flaws with EPC failed at..with updates for the sites. We have content already loaded for updates to last into the next 2 years. ALL Exclusive. Just like Rage and EPC were.
The updattes will be weekly.
I’ll post a few more details later..as we get them worked out and maybe throw up a few sneak peeks sometime in the next few days.
But, right now..some of the people over at GG&J, there buzzing already about it. Few other people know about it, as well and we are being asked daily, when things will be rolling out. We are working on it.
I’m sure..we’ll make a major splash into the market. Just by the reputation and hard work of the old Rage/EPC had. We already have a few of the heavy hitters that pushed Rage..ready to push us, soon as we release things.
Some of the niches we are rolling out are;
Tranny
Anal / Ass to Mouth
Facials
Fatties
Special teen type site..something a little different than you are used to seeing.
Hmm..there’s more..but, I’m not going into great details yet.
Some of those are directed towards the above..but with a twist.
The economy maybe in a rut right now. But, I do believe that 2009 is gonna be an awesome year for us. We are gonna take this 10X futher than alot of the other programs have ever done.
If there is anything you guys like to see. Please let us know.
I’ll get whatever everyone wants.
Jeff
Read more at: bbs.mediumpimpin.com

Is there any way to know how much $$ a site makes?

  • February 23, 2009

I compete against a microniche dating site that has 200k members, but many are free members. I’m dying to know how much money they make because I want to know what the potential is for me to earn. And i want to know the % of paying members they get.
Is there any way to find out? they dont have an affiliate program so I cant just ask them, plus they know I compete with them and they hate me anyways lol.
I just want to know so bad how much they make. theres got to be a way to find out
Read more at: gfy.com

the recipe for starting a new sologirl, girl-run, site

  • February 23, 2009

Hey boys!
Okay so here’s the deal. I’m a new girl and I want to know what a webmaster thinks makes a sologirl site good enough that he’ll promote it. I’ve been content before and I’ve had websites but not a paysite so I want to make my affiliates happy for my first one!
I’ve spent the last few days surfing porn and bought a few memberships to see inside the member areas of a couple sologirl sites. I’ve also looked at affiliate programs some sologirl sites offered and I’ve been reading this board too.

I don’t have a photo I feel comfortable posting as I’m not at home and only have access to my facebook photos but am going to take one tomorrow and post it as a reply to this thread as I know you’ll ask for it! I been trying to get this account set up all day and have been anxious to make this post so please bare with me on the photo.
I’m 28 (real age, look 22-28 depending on hair/makeup/etc). I have a tattoo on my back, a tattoo on my tummy, a tattoo on one wrist, a tattoo on a forearm (not a sleeve, just a black design). I’m 5′8" and 105lbs, thin with small Bcups. I do not have piercings except naval. My hair is currently blue, I might dye it black tomorrow, I change the colour often, cut it, get extensions, etc. I just like playing dressup and that is why I’m really excited about this site! It’s the ultimate game of dressup!
I plan to cover a lot of alternative sub-niches with several sets so that the different niches can be promoted:
Raver, Punk, Rocker, Balloons, Food, Feet, Peeing, Cosplay, Uniform, etc (please let me know what other niches might be good).
Solo to start, will add GG and BG later.
I know that I need to have a real blog, do shows, and have updates once a week at least (probably 2 updates a week, one a video and one a photoset) plus fan signs, panty giveaways and stuff like that. I plan to shoot 1 year’s worth of updates before I even launch the site and to launch with 30 sets of 20 pics and 30 videos (is this enough for exclusive content for my niche to launch?).
So that is what I know so far, please tell me what else I should look into. And yes, I know there is not a ton of money to be made, blah blah blah. I don’t really care about other people failing, I want to know what I need to do to have longevity and make my affiliates happy.
Read more at: gfy.com

MediumPimpin stats: 1:419258!!

  • February 23, 2009

I just checked my mediumpimpin stats:
01/01/2007-present: 1:419258 (1 sales)
01/01/2006-01/01/2007: 1:32644 (3 sales)
01/01/2005-01/01/2006: 1:5329 (35 sales)
01/01/2004-01/01/2005: 1:3552 (84 sales)
WTF is that? from 1:3552 to 1:419258??
same sites, traffic source..
i can’t believe they converts so bad these days..
or do they started shaving??
Read more at: gfy.com