Greenguy's Board

Greenguy's Board (http://www.greenguysboard.com/board/index.php)
-   Newbie Questions (http://www.greenguysboard.com/board/forumdisplay.php?f=5)
-   -   Epassporte (http://www.greenguysboard.com/board/showthread.php?t=34792)

Xallow 2006-09-26 10:35 AM

Epassporte
 
Hi guys

I wanna set up a Epassporte account, but do I need a commerce account to get paid to epassporte from sponsors or can I just get a personal account?

Thanks for the help

Xallow

Fonz 2006-09-26 10:38 AM

You just need a personal account to get your payments from sponsors.

Keyser Soze 2006-09-26 03:40 PM

Thanks Fonz

Yes a personal account is what you need if its for receiving payments from sponsors.

alessandro 2006-09-26 03:41 PM

Quote:

Originally Posted by Fonz (Post 302469)
You just need a personal account to get your payments from sponsors.

Yes, Fozn is absolutely right. What I wanted to add is that I heard many people saying they have LOTS of issues signing up for a personal account ( there's a verification process you have to pass throught which seems to be quite "hard" ) by themselves, so I'd recommend you to sign up for a sponsor that would create an account for you.

I know vividcash.com and flashcash.com can open an epassporte account for their webmasters, so try the "easy" way ;).

camel 2006-09-26 04:24 PM

Yes, you need personal account and Adult Webmaster Empire can open personal ePassporte account for you for free, and with FREE VISA ATM card! |thumb

Fonz 2006-09-26 04:42 PM

Quote:

Originally Posted by camel (Post 302569)
Yes, you need personal account and Adult Webmaster Empire can open personal ePassporte account for you for free, and with FREE VISA ATM card! |thumb

You just have to throw in a link with a referal code on every possible occasion now do you?

Chop Smith 2006-09-26 06:54 PM

You go Fonz. |bananna| Now, check out this link.

Xallow 2006-09-26 11:31 PM

I am actually already registered with a sponsor that can open an account for me, and they state that I get a Visa for free, but then when I read the further terms of their opening my epassporte account, it says that they will deduct the 40$ Visa from my earnings. I dont call that free, I call it a 40$ Visa.

Fonz 2006-09-27 04:21 AM

Quote:

Originally Posted by Chop Smith (Post 302590)
You go Fonz. |bananna| Now, check out this link.

LOL, btw, your link doesn't work :D

alessandro 2006-09-27 10:26 AM

Quote:

Originally Posted by Xallow (Post 302633)
I am actually already registered with a sponsor that can open an account for me, and they state that I get a Visa for free, but then when I read the further terms of their opening my epassporte account, it says that they will deduct the 40$ Visa from my earnings. I dont call that free, I call it a 40$ Visa.

I don't call it free neither, but at least you'll not go throught that awful verifying process.

Satan 2006-09-28 07:23 PM

Quote:

Originally Posted by Xallow (Post 302633)
I am actually already registered with a sponsor that can open an account for me, and they state that I get a Visa for free, but then when I read the further terms of their opening my epassporte account, it says that they will deduct the 40$ Visa from my earnings. I dont call that free, I call it a 40$ Visa.

AWE DO actually pay for the card for the first year so it is absolutely free. They also give you a $100 bonus when you get your first $100 paycheck (took me 4 weeks from a standing start) only snag is that you dont get the card and account until you earn your first payment - but if you can send 3-400 uniques a day that should come pretty fast.

The virtual visa is pretty good. contrary to some reports I have heard you CAN use it for Adsense payments. I use it online to buy groceries as well....Devils Food Cake Naturally :D

Xallow 2006-09-28 10:25 PM

I am signed up with AWE already, but their free content isn't all that great, so it is kinda hard to build free sites for them, which means not that many uniques

Satan 2006-09-29 05:41 AM

Quote:

Originally Posted by Xallow (Post 303089)
I am signed up with AWE already, but their free content isn't all that great, so it is kinda hard to build free sites for them, which means not that many uniques

The key to conversions on AWE is quite simply to use their XML features and good seo. Lots of members type in the girls names (they have favourites) and since its a 2 week cookie you will soon find some that convert. My 'Net' is

http://www.livejasmin-2.com
http://www.liveprivates-2.com
http://www.joyourself-2.com

and those sites do pretty well. Gallery building is not the way to go to build cam traffic anyway imho.

Xallow 2006-10-02 12:07 PM

satan I need Your help, I am trying to set up a site to promote livejasmin, but when I try to use the perflister.php, I get this error

Warning: file_get_contents() [function.file-get-contents]: URL file-access is disabled in the server configuration in /home/.fluffee/xallow/netcamperformers.com/livejasmin/perflister.php on line 21

Warning: file_get_contents(http://www.livesexbar.com/xml/jsm.xml) [function.file-get-contents]: failed to open stream: no suitable wrapper could be found in /home/.fluffee/xallow/netcamperformers.com/livejasmin/perflister.php on line 21
Error while trying to open the XML file.

I dont have a clue what to do about it

Satan 2006-10-02 12:29 PM

Quote:

Originally Posted by Xallow (Post 303737)
satan I need Your help,

I dont have a clue what to do about it

Well if God wont help you then I suppose praying to Satan is the next best thing. Problem is your host is not allowing easy file access via the File command but I bet they have CURL installed. So you can edit the code and instead of using a simple file("$xml_source") use:

if (!function_exists("curl_init")) {
echo ("No PHP Curl installed");
exit;
}
//use curl to get a cache file
$ch = curl_init("$xml_source");
$fp = fopen("pcache.txt", "w");
curl_setopt($ch, CURLOPT_FILE, $fp);
curl_setopt($ch, CURLOPT_HEADER, 0);
curl_exec($ch);
curl_close($ch);
fclose($fp);


then where you have the if file("$xml_source") put if file("pcache.txt")

Note you will probably need to create a text file called pcache.txt and set permissions to 777 first.

Xallow 2006-10-02 06:00 PM

Do I still need to change to pcache.txt when I have chmodded permissions to 777?

I am afraid I suck at php and dont really have a clue what I am doing with it

Satan 2006-10-02 06:37 PM

Yep. And buy a book on php...

Xallow 2006-10-02 06:56 PM

I have a book on php, I have 2 actually, I just haven't figured out how to open them yet :D

How do I set permissions in a txt file? or do I just need to create an empty file and chmod the permissions?


All times are GMT -4. The time now is 02:18 PM.

Powered by vBulletin® Version 3.8.1
Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
© Greenguy Marketing Inc