Welcome to the GoFuckYourself.com - Adult Webmaster Forum forums.

You are currently viewing our boards as a guest which gives you limited access to view most discussions and access our other features. By joining our free community you will have access to post topics, communicate privately with other members (PM), respond to polls, upload content and access many other special features. Registration is fast, simple and absolutely free so please, join our community today!

If you have any problems with the registration process or your account login, please contact us.

Post New Thread Reply

Register GFY Rules Calendar
Go Back   GoFuckYourself.com - Adult Webmaster Forum > >
Discuss what's fucking going on, and which programs are best and worst. One-time "program" announcements from "established" webmasters are allowed.

 
Thread Tools
Old 08-02-2009, 10:11 AM   #1
Robocrop
Confirmed User
 
Robocrop's Avatar
 
Industry Role:
Join Date: Aug 2008
Location: Hollywood
Posts: 2,785
Arrowscripts ATL 3 Help.

Hello, I just have a simple question regarding ATL 3.

How do ya set up a toplist? I have done this before like 2.5 years ago but now its all blank. I cannot think clearly since I suffer from yesterdays night out.

Can anyone push me in the right direction? Maybe guide me thru ICQ.

I would appreciate it!
Robocrop is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 08-02-2009, 10:21 AM   #2
paymeback
Confirmed User
 
paymeback's Avatar
 
Join Date: May 2005
Location: Sydney, Australia
Posts: 1,478
Pretty sure arrowscript forum has it in the faq?

http://www.arrowscripts.com/atl3/g-toplist/index.shtml
__________________
ICQ:36-43-49-11

Last edited by paymeback; 08-02-2009 at 10:25 AM..
paymeback is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 08-02-2009, 10:38 AM   #3
brassmonkey
Pay It Forward
 
brassmonkey's Avatar
 
Industry Role:
Join Date: Sep 2005
Location: Yo Mama House
Posts: 75,394
make sure u keep updating the packages that script is dangerous
__________________
EMAIL ==>[email protected] ==> #NOBIDEN2024
TRUMP 2024!!! | END DACA!!!! | HCR2060 <= ILLEGAL ALIENS!!!!...👮
=> TRUMPS PAYDAY!!!!... - Support The Laken Riley Act!!! - Trump Nobel Prize...
brassmonkey is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 08-02-2009, 10:41 AM   #4
fusionx
Confirmed User
 
Industry Role:
Join Date: Nov 2003
Location: Olongapo City, Philippines
Posts: 4,618
Here's a small fragment of one of mine. This one is styled through CSS, so it probably won't work for you as is.

Code:
            <ul>
                <li><a href="/cgi-bin/at3/out.cgi?id=%%tid_000%%&tag=toplist&trade=%%url_000%%" target="_blank">%%tit_000%%</a></li>
                <li><a href="/cgi-bin/at3/out.cgi?id=%%tid_001%%&tag=toplist&trade=%%url_001%%" target="_blank">%%tit_001%%</a></li>
		<li><a href="/cgi-bin/at3/out.cgi?id=%%tid_002%%&tag=toplist&trade=%%url_002%%" target="_blank">%%tit_002%%</a></li>
		<li><a href="/cgi-bin/at3/out.cgi?id=%%tid_003%%&tag=toplist&trade=%%url_003%%" target="_blank">%%tit_003%%</a></li>
		<li><a href="/cgi-bin/at3/out.cgi?id=%%tid_004%%&tag=toplist&trade=%%url_004%%" target="_blank">%%tit_004%%</a></li>
	        <li><a href="/cgi-bin/at3/out.cgi?id=%%tid_005%%&tag=toplist&trade=%%url_005%%" target="_blank">%%tit_005%%</a></li>
	        <li><a href="/cgi-bin/at3/out.cgi?id=%%tid_006%%&tag=toplist&trade=%%url_006%%" target="_blank">%%tit_006%%</a></li>
	        <li><a href="/cgi-bin/at3/out.cgi?id=%%tid_007%%&tag=toplist&trade=%%url_007%%" target="_blank">%%tit_007%%</a></li>
		<li><a href="/cgi-bin/at3/out.cgi?id=%%tid_008%%&tag=toplist&trade=%%url_008%%" target="_blank">%%tit_008%%</a></li>
		<li><a href="/cgi-bin/at3/out.cgi?id=%%tid_009%%&tag=toplist&trade=%%url_009%%" target="_blank">%%tit_009%%</a></li>
            </ul>
Here's one that uses an HTML Table:

Code:
<table align="center" width="100%" border="0" cellspacing = "5" cellpadding="5">
	<tr>
		<td colspan="4" class="header">
			My Site Loves These:
		</td>
	</tr>
	<tr>
		<td><A href="/cgi-bin/at3/out.cgi?id=%%tid_000%%&tag=toplist&trade=%%url_000%%" target="_blank">%%tit_000%%</A> - (%%rin_000%%)</td>
		<td><A href="/cgi-bin/at3/out.cgi?id=%%tid_001%%&tag=toplist&trade=%%url_001%%" target="_blank">%%tit_001%%</A> - (%%rin_001%%)</td>
		<td><A href="/cgi-bin/at3/out.cgi?id=%%tid_002%%&tag=toplist&trade=%%url_002%%" target="_blank">%%tit_002%%</A> - (%%rin_002%%)</td>
		<td><A href="/cgi-bin/at3/out.cgi?id=%%tid_003%%&tag=toplist&trade=%%url_003%%" target="_blank">%%tit_003%%</A> - (%%rin_003%%)</td>
	</tr>
	<tr>
		<td><A href="/cgi-bin/at3/out.cgi?id=%%tid_004%%&tag=toplist&trade=%%url_004%%" target="_blank">%%tit_004%%</A> - (%%rin_004%%)</td>
		<td><A href="/cgi-bin/at3/out.cgi?id=%%tid_005%%&tag=toplist&trade=%%url_005%%" target="_blank">%%tit_005%%</A> - (%%rin_005%%)</td>
		<td><A href="/cgi-bin/at3/out.cgi?id=%%tid_006%%&tag=toplist&trade=%%url_006%%" target="_blank">%%tit_006%%</A> - (%%rin_006%%)</td>
		<td><A href="/cgi-bin/at3/out.cgi?id=%%tid_007%%&tag=toplist&trade=%%url_007%%" target="_blank">%%tit_007%%</A> - (%%rin_007%%)</td>
	</tr>

... deleted for space...
</table>
fusionx is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 08-02-2009, 10:48 AM   #5
Robocrop
Confirmed User
 
Robocrop's Avatar
 
Industry Role:
Join Date: Aug 2008
Location: Hollywood
Posts: 2,785
Quote:
Originally Posted by fusionx View Post
Here's a small fragment of one of mine. This one is styled through CSS, so it probably won't work for you as is.

Code:
            <ul>
                <li><a href="/cgi-bin/at3/out.cgi?id=%%tid_000%%&tag=toplist&trade=%%url_000%%" target="_blank">%%tit_000%%</a></li>
                <li><a href="/cgi-bin/at3/out.cgi?id=%%tid_001%%&tag=toplist&trade=%%url_001%%" target="_blank">%%tit_001%%</a></li>
		<li><a href="/cgi-bin/at3/out.cgi?id=%%tid_002%%&tag=toplist&trade=%%url_002%%" target="_blank">%%tit_002%%</a></li>
		<li><a href="/cgi-bin/at3/out.cgi?id=%%tid_003%%&tag=toplist&trade=%%url_003%%" target="_blank">%%tit_003%%</a></li>
		<li><a href="/cgi-bin/at3/out.cgi?id=%%tid_004%%&tag=toplist&trade=%%url_004%%" target="_blank">%%tit_004%%</a></li>
	        <li><a href="/cgi-bin/at3/out.cgi?id=%%tid_005%%&tag=toplist&trade=%%url_005%%" target="_blank">%%tit_005%%</a></li>
	        <li><a href="/cgi-bin/at3/out.cgi?id=%%tid_006%%&tag=toplist&trade=%%url_006%%" target="_blank">%%tit_006%%</a></li>
	        <li><a href="/cgi-bin/at3/out.cgi?id=%%tid_007%%&tag=toplist&trade=%%url_007%%" target="_blank">%%tit_007%%</a></li>
		<li><a href="/cgi-bin/at3/out.cgi?id=%%tid_008%%&tag=toplist&trade=%%url_008%%" target="_blank">%%tit_008%%</a></li>
		<li><a href="/cgi-bin/at3/out.cgi?id=%%tid_009%%&tag=toplist&trade=%%url_009%%" target="_blank">%%tit_009%%</a></li>
            </ul>
Here's one that uses an HTML Table:

Code:
<table align="center" width="100%" border="0" cellspacing = "5" cellpadding="5">
	<tr>
		<td colspan="4" class="header">
			My Site Loves These:
		</td>
	</tr>
	<tr>
		<td><A href="/cgi-bin/at3/out.cgi?id=%%tid_000%%&tag=toplist&trade=%%url_000%%" target="_blank">%%tit_000%%</A> - (%%rin_000%%)</td>
		<td><A href="/cgi-bin/at3/out.cgi?id=%%tid_001%%&tag=toplist&trade=%%url_001%%" target="_blank">%%tit_001%%</A> - (%%rin_001%%)</td>
		<td><A href="/cgi-bin/at3/out.cgi?id=%%tid_002%%&tag=toplist&trade=%%url_002%%" target="_blank">%%tit_002%%</A> - (%%rin_002%%)</td>
		<td><A href="/cgi-bin/at3/out.cgi?id=%%tid_003%%&tag=toplist&trade=%%url_003%%" target="_blank">%%tit_003%%</A> - (%%rin_003%%)</td>
	</tr>
	<tr>
		<td><A href="/cgi-bin/at3/out.cgi?id=%%tid_004%%&tag=toplist&trade=%%url_004%%" target="_blank">%%tit_004%%</A> - (%%rin_004%%)</td>
		<td><A href="/cgi-bin/at3/out.cgi?id=%%tid_005%%&tag=toplist&trade=%%url_005%%" target="_blank">%%tit_005%%</A> - (%%rin_005%%)</td>
		<td><A href="/cgi-bin/at3/out.cgi?id=%%tid_006%%&tag=toplist&trade=%%url_006%%" target="_blank">%%tit_006%%</A> - (%%rin_006%%)</td>
		<td><A href="/cgi-bin/at3/out.cgi?id=%%tid_007%%&tag=toplist&trade=%%url_007%%" target="_blank">%%tit_007%%</A> - (%%rin_007%%)</td>
	</tr>

... deleted for space...
</table>
Hey, looks great..do you mind me hitting you up for some questions?
Robocrop is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 08-02-2009, 11:34 AM   #6
Robocrop
Confirmed User
 
Robocrop's Avatar
 
Industry Role:
Join Date: Aug 2008
Location: Hollywood
Posts: 2,785
I can get everything to work except ATL doesnt fetch the .html file with the command <!--#include virtual="toplist.html" -->
Robocrop is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 08-02-2009, 12:35 PM   #7
Tube Ace
So Fucking Banned
 
Industry Role:
Join Date: Nov 2008
Location: with your dream girl
Posts: 4,941
Quote:
Originally Posted by Robocrop View Post
I can get everything to work except ATL doesnt fetch the .html file with the command <!--#include virtual="toplist.html" -->
SSI (server side includes) would need to be enabled for that method to work. You may need to rename the page you're trying to include on with an extension of .shtml

OR use the PHP include method if you can:

<?php virtual ("/cgi-bin/at3/in.cgi"); ?>
Tube Ace is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 08-02-2009, 01:20 PM   #8
Robocrop
Confirmed User
 
Robocrop's Avatar
 
Industry Role:
Join Date: Aug 2008
Location: Hollywood
Posts: 2,785
Alright I will try that. Thanks Tube Ace
Robocrop is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 08-03-2009, 07:19 AM   #9
fusionx
Confirmed User
 
Industry Role:
Join Date: Nov 2003
Location: Olongapo City, Philippines
Posts: 4,618
Quote:
Originally Posted by Robocrop View Post
Hey, looks great..do you mind me hitting you up for some questions?
No problem. I'm in and out all day, so just hit me up and I'll get back to you.
fusionx is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 08-03-2009, 07:48 AM   #10
Twoface31
Confirmed User
 
Twoface31's Avatar
 
Join Date: Sep 2006
Posts: 2,746
try to contact their suppport
__________________

Email: [email protected]
HentaiG4h * Lusty Life
ICQ: 291-953
Twoface31 is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Post New Thread Reply
Go Back   GoFuckYourself.com - Adult Webmaster Forum > >

Bookmarks

Tags
arrowscripts, atl, atl 3



Advertising inquiries - marketing at gfy dot com

Contact Admin - Advertise - GFY Rules - Top

©2000-, AI Media Network Inc



Powered by vBulletin
Copyright © 2000- Jelsoft Enterprises Limited.