Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - Dred

Pages: 1 2 [3]
31
Trade Pulse Bug Reports / Re: My site goes blank
« on: December 06, 2008, 03:03:02 PM »
solved yesterday via ICQ and forgot to post, thx!

what was the problem? PHP error in your page?
Don't use the Overload Protection...it's not fully functional.

32
Trade Pulse Support / Re: toplists?
« on: December 05, 2008, 06:28:17 PM »
You have to build a separate template for each toplist you want to use, a .tpl (or .src) and a .html.

My main_toplist template looks like this:
Code: [Select]
<center>
<table cellpadding="0" cellspacing="2" border="0" bordercolor="000000" align="center">
<tr><td><font face="Arial" size="+1"><a href="/tp/out.php?link=toplist&to=%%DOMAIN1%%"><img src="%%THUMB1-1-1%%" width="240" height="180" /><br>%%NAME1%%</a></font></td><td><font face="Arial" size="+1"><a href="/tp/out.php?link=toplist&to=%%DOMAIN2%%"><img src="%%THUMB2-1-1%%" width="240" height="180" /><br>%%NAME2%%</a></font></td><td><font face="Arial" size="+1"><a href="/tp/out.php?link=toplist&to=%%DOMAIN3%%"><img src="%%THUMB3-1-1%%" width="240" height="180" /><br>%%NAME3%%</a></font></td><td><font face="Arial" size="+1"><a href="/tp/out.php?link=toplist&to=%%DOMAIN4%%"><img src="%%THUMB4-1-1%%" width="240" height="180" /><br>%%NAME4%%</a></font></td></tr>
<tr><td><font face="Arial" size="+1"><a href="/tp/out.php?link=toplist&to=%%DOMAIN5%%"><img src="%%THUMB5-1-1%%" width="240" height="180" /><br>%%NAME5%%</a></font></td><td><font face="Arial" size="+1"><a href="/tp/out.php?link=toplist&to=%%DOMAIN6%%"><img src="%%THUMB6-1-1%%" width="240" height="180" /><br>%%NAME6%%</a></font></td><td><font face="Arial" size="+1"><a href="/tp/out.php?link=toplist&to=%%DOMAIN7%%"><img src="%%THUMB7-1-1%%" width="240" height="180" /><br>%%NAME7%%</a></font></td><td><font face="Arial" size="+1"><a href="/tp/out.php?link=toplist&to=%%DOMAIN8%%"><img src="%%THUMB8-1-1%%" width="240" height="180" /><br>%%NAME8%%</a></font></td></tr>
<tr><td><font face="Arial" size="+1"><a href="/tp/out.php?link=toplist&to=%%DOMAIN9%%"><img src="%%THUMB9-1-1%%" width="240" height="180" /><br>%%NAME9%%</a></font></td><td><font face="Arial" size="+1"><a href="/tp/out.php?link=toplist&to=%%DOMAIN10%%"><img src="%%THUMB10-1-1%%" width="240" height="180" /><br>%%NAME10%%</a></font></td><td><font face="Arial" size="+1"><a href="/tp/out.php?link=toplist&to=%%DOMAIN11%%"><img src="%%THUMB11-1-1%%" width="240" height="180" /><br>%%NAME11%%</a></font></td><td><font face="Arial" size="+1"><a href="/tp/out.php?link=toplist&to=%%DOMAIN12%%"><img src="%%THUMB12-1-1%%" width="240" height="180" /><br>%%NAME12%%</a></font></td></tr>
<tr><td><font face="Arial" size="+1"><a href="/tp/out.php?link=toplist&to=%%DOMAIN13%%"><img src="%%THUMB13-1-1%%" width="240" height="180" /><br>%%NAME13%%</a></font></td><td><font face="Arial" size="+1"><a href="/tp/out.php?link=toplist&to=%%DOMAIN14%%"><img src="%%THUMB14-1-1%%" width="240" height="180" /><br>%%NAME14%%</a></font></td><td><font face="Arial" size="+1"><a href="/tp/out.php?link=toplist&to=%%DOMAIN15%%"><img src="%%THUMB15-1-1%%" width="240" height="180" /><br>%%NAME15%%</a></font></td><td><font face="Arial" size="+1"><a href="/tp/out.php?link=toplist&to=%%DOMAIN16%%"><img src="%%THUMB16-1-1%%" width="240" height="180" /><br>%%NAME16%%</a></font></td></tr>
<tr><td><font face="Arial" size="+1"><a href="/tp/out.php?link=toplist&to=%%DOMAIN17%%"><img src="%%THUMB17-1-1%%" width="240" height="180" /><br>%%NAME17%%</a></font></td><td><font face="Arial" size="+1"><a href="/tp/out.php?link=toplist&to=%%DOMAIN18%%"><img src="%%THUMB18-1-1%%" width="240" height="180" /><br>%%NAME18%%</a></font></td><td><font face="Arial" size="+1"><a href="/tp/out.php?link=toplist&to=%%DOMAIN19%%"><img src="%%THUMB19-1-1%%" width="240" height="180" /><br>%%NAME19%%</a></font></td><td><font face="Arial" size="+1"><a href="/tp/out.php?link=toplist&to=%%DOMAIN20%%"><img src="%%THUMB20-1-1%%" width="240" height="180" /><br>%%NAME20%%</a></font></td></tr>
</table>
</center>

For the main i use 20 thumbs, 5 rows of four thumbs.
My input in tp toplist section is:
Code: [Select]
/usr/local/apache/sites/MY_USERNAME/MY_DOMAIN.com/htdocs/tp_toplist/main_toplist.tpl
/usr/local/apache/sites/MY_USERNAME/MY_DOMAIN.com/htdocs/tp_toplist/main_toplist.html

This goes on my page where i want it to appear:
since i use an index.php -
Code: [Select]
<?php include "./tp_toplist/main_toplist.html"?>

I was toying with using a row of four and it's done the exact same way, except you have 4 four sets of templates:
Code: [Select]
/usr/local/apache/sites/MY_USERNAME/MY_DOMAIN.com/htdocs/tp_toplist/row_toplist1.tpl
/usr/local/apache/sites/MY_USERNAME/MY_DOMAIN.com/htdocs/tp_toplist/row_toplist1.html
Code: [Select]
/usr/local/apache/sites/MY_USERNAME/MY_DOMAIN.com/htdocs/tp_toplist/row_toplist2.tpl
/usr/local/apache/sites/MY_USERNAME/MY_DOMAIN.com/htdocs/tp_toplist/row_toplist2.html
Code: [Select]
/usr/local/apache/sites/MY_USERNAME/MY_DOMAIN.com/htdocs/tp_toplist/row_toplist3.tpl
/usr/local/apache/sites/MY_USERNAME/MY_DOMAIN.com/htdocs/tp_toplist/row_toplist3.html
Code: [Select]
/usr/local/apache/sites/MY_USERNAME/MY_DOMAIN.com/htdocs/tp_toplist/row_toplist4.tpl
/usr/local/apache/sites/MY_USERNAME/MY_DOMAIN.com/htdocs/tp_toplist/row_toplist4.html

The template i made and put in the form box:
Code: [Select]
<center>
<table cellpadding="0" cellspacing="2" border="0" bordercolor="000000" align="center">
<tr><td><font face="Arial" size="+1"><a href="/tp/out.php?link=toplist&to=%%DOMAIN1%%"><img src="%%THUMB1-1-1%%" width="240" height="180" /><br>%%NAME1%%</a></font></td><td><font face="Arial" size="+1"><a href="/tp/out.php?link=toplist&to=%%DOMAIN2%%"><img src="%%THUMB2-1-1%%" width="240" height="180" /><br>%%NAME2%%</a></font></td><td><font face="Arial" size="+1"><a href="/tp/out.php?link=toplist&to=%%DOMAIN3%%"><img src="%%THUMB3-1-1%%" width="240" height="180" /><br>%%NAME3%%</a></font></td><td><font face="Arial" size="+1"><a href="/tp/out.php?link=toplist&to=%%DOMAIN4%%"><img src="%%THUMB4-1-1%%" width="240" height="180" /><br>%%NAME4%%</a></font>
</td></tr>
</table>
copy/paste each section from the main_toplist template to make each row (instead of making each template row by hand over-and-over again).

This goes on my page between each block:
since i use an index.php -
Code: [Select]
<?php include "./tp_toplist/row_toplist1.html"?>
Code: [Select]
<?php include "./tp_toplist/row_toplist2.html"?>
Code: [Select]
<?php include "./tp_toplist/row_toplist3.html"?>
Code: [Select]
<?php include "./tp_toplist/row_toplist4.html"?>
Hope it's not too confusing but once you understand how to do this it's a breeze for every site you build afterwards.
Hope this helps.

33
Trade Pulse Bug Reports / Re: My site goes blank
« on: December 05, 2008, 05:46:35 PM »
solved yesterday via ICQ and forgot to post, thx!

34
Trade Pulse Bug Reports / NEW PROB....
« on: December 04, 2008, 05:25:04 AM »
NEW prob now. My site loads as a blank page and i have to hit refresh or reload in order for the page to reload and actually show the page.

What's wrong now?

thx!

35
Trade Pulse Support / TradePulse and TradePulseReturn...
« on: December 03, 2008, 02:57:32 PM »
What's the difference between TradePulse and TradePulseReturn?

Under, Settings, Out

Algorithm settings
the first setting,
Used Trade Algorithm dropdown

36
Trade Pulse Bug Reports / Re: TP toplist bug
« on: December 03, 2008, 02:48:49 PM »
The proper html code for 'non-breaking space' is &nbsp;

37
Trade Pulse Bug Reports / Re: My site goes blank
« on: December 03, 2008, 02:45:19 PM »
Thanks y'all!
Code: [Select]
<?php include('./tp/ssi_in.php'); ?>worked.

I didn't notice it was 'virtual' and not 'include' in the manual.
Had i noticed i wouldn't have started this thread...lol
Well, now this thread can help future users.

38
Trade Pulse Bug Reports / Re: My site goes blank
« on: December 03, 2008, 08:46:06 AM »
Yep, my include is straight from the manual.
Includes work because i use them for my other tradescripts, plus the script counted 2 clicks in from two different sites while i was reverting the template back to it's original working condition.

39
Trade Pulse Feature Requests / Copy/paste default templates
« on: December 03, 2008, 05:00:22 AM »
Just what the title states...need a couple of copy/paste templates.

A text toplist template
a thumbs toplist template
a template to use for your site with the variables plugged in.

Especially the last one, i see use %%URL#%% and then use to= and various other legends for plugging in variables and values.
Use this on toplists, use this for thumbs...too frikkin' confusing if you ask me. Took me forever to figure which value to use where.

It shouldn't take hours to set this up in your template...no matter the thumb script. I had probs (my site ended up as blank page after all that work) with two different rotators on live sites, VanillaTGP and Comus, so i decided not to even attempt using this on ST.

40
Trade Pulse Bug Reports / My site goes blank
« on: December 03, 2008, 04:43:16 AM »
I installed the script, plugged in all the values, started getting hits and everything but when i tried to view my site it came up as a blank page with Done in the status bar. Needless to say i had to revert back to my original design and tradescript.

This has happened on two sites. One using VanillaTGP and the other using Comus.
Wth am i doing wrong? I'd really like to use this script.

41
Trade Pulse Bug Reports / Re: login keeps sending back to the news page
« on: December 03, 2008, 02:09:03 AM »
Looks like closing the browser works to fix this issue. Thanks y'all!  :)

42
Trade Pulse Bug Reports / login keeps sending back to the news page
« on: December 02, 2008, 12:22:11 PM »
Followed the install instructions and got in.
Tried to login later, the page refreshes to the news.
What am i doing wrong?

Pages: 1 2 [3]