Welcome, Guest. Please login or register.
Did you miss your activation email?

Login with username, password and session length
Pages: 1 [2] 3
Send this topic | Print
Topic: New Website !  (Read 2774 times)
« Reply #15 on: November 08, 2007, 12:58:38 PM »
joshr35 Offline
Newbie

View Profile
*
Posts: 32



Ok !  I just finished the new buttons !!  Uh...do I DARE ask anyone to take a look?
Report to moderator   Logged

 
« Reply #16 on: November 08, 2007, 02:18:01 PM »
JOE24
Dollar Offline
Jr. Member

View Profile
**
Posts: 99



Well I see you took my advice and hid the Affilaiate links with a redirect. Except you used .html file.

Use .php its way better. With .html it has to direct to a page then redirect with javascript or a meta redirect, Which is bit slow, php is instant redirection.
This is the Code.
Just put this in a text file and save as .php
Code:
<?
Header( "Location: http://yourlinkhere. com" );
?>
Report to moderator   Logged

« Reply #17 on: November 08, 2007, 02:35:44 PM »
joshr35 Offline
Newbie

View Profile
*
Posts: 32



Ok great !  Thanks for the advice Joe.  Lemmie get to work on it then get it re uploaded.

Thanks again for the advice !

Josh R.
Report to moderator   Logged
« Reply #18 on: November 08, 2007, 02:57:49 PM »
chickenmeister Offline
master of chickens
Global Moderator
Member

View Profile WWW
*****
Posts: 220



I just took a quick look at the source url of your download button images, and it seems you have the same image hosted multiple times with several different urls.

for example,
http://topsoftwaredownloads.t35.com/images/button18.jpg
http://topsoftwaredownloads.t35.com/images/button19.jpg
http://topsoftwaredownloads.t35.com/images/button1d.jpg
http://topsoftwaredownloads.t35.com/images/button1e.jpg
all point to images of download buttons.

You'd be better off if you uploaded the download button image once, and used that image wherever you needed your download button.
Report to moderator   Logged

Hello world!
« Reply #19 on: November 08, 2007, 03:12:54 PM »
joshr35 Offline
Newbie

View Profile
*
Posts: 32



Ok, will do.

I have a question about the php files. I created them, but when I click on the link it opens the php file instead of the target link.

Here's what the php looks like:

<?
Header( "Location:http://sitet35.fulltv.hop.clickbank.net" );
?>

Oh and uh..I have no idea how to use php either...lol it might as well be in Russian.
is php easier than html?
Report to moderator   Logged
« Reply #20 on: November 08, 2007, 03:34:07 PM »
JOE24
Dollar Offline
Jr. Member

View Profile
**
Posts: 99



Ok, will do.

I have a question about the php files. I created them, but when I click on the link it opens the php file instead of the target link.

Here's what the php looks like:

<?
Header( "Location:http://sitet35.fulltv.hop.clickbank.net" );
?>

Oh and uh..I have no idea how to use php either...lol it might as well be in Russian.
is php easier than html?

Yes if you put that in text file and save it as .php extension and name it say,

whatever.php and link to your button so when they click on it, the server will fetch the php file and follow the code in it and redirect them instantly.

if its opening the .php file its probably becuase you don't have extensions viewable on your Windows, its probably mistaken it as whatever.php.txt
You have to save it as whatever.php. to fix this go into FTP and see if it says

whatever.php.txt and remove the  the ".txt" from it.

Also a good fix, (this is for more windows savvy users) is
go into a Folder and at the top select  tools>Folder Options> View> and uncheck "hide know file extension types.

This way you can now change the file extension of your files.  So just rename they text file to whatever.php   Whatever is after the last  DOT  (.)  is the file extension.  Be carefull changing file extension on your files! Though, becuase it will not work if you change for some files. LIke if you a jpg file and name to .exe then your computer will think its a program. lol Sorry that was bit long. I hope you understand. wink
« Last Edit: November 08, 2007, 03:36:48 PM by joe24 » Report to moderator   Logged

« Reply #21 on: November 08, 2007, 03:48:13 PM »
joshr35 Offline
Newbie

View Profile
*
Posts: 32



Ok, I'm confused. 
I changed the folder settings and the files have the php extension but they still open with my dreamweaver program as a php file. I just dont understand why its not following the link.

For the html mete refresh I took the "href off and only put in the http....  could that be the problem?
Report to moderator   Logged
« Reply #22 on: November 08, 2007, 04:32:18 PM »
chickenmeister Offline
master of chickens
Global Moderator
Member

View Profile WWW
*****
Posts: 220



Ok, I'm confused. 
I changed the folder settings and the files have the php extension but they still open with my dreamweaver program as a php file. I just dont understand why its not following the link.

For the html mete refresh I took the "href off and only put in the http....  could that be the problem?
unless you have php installed and running on your computer, viewing php files on your computer won't work. When you upload it to your site, it should work.
Report to moderator   Logged

Hello world!
« Reply #23 on: November 08, 2007, 11:07:32 PM »
joshr35 Offline
Newbie

View Profile
*
Posts: 32



Ok, I uploaded it and it works GREAT !!

One question though.  Is there any way to have all the redirects on the same php page or do I hafta create a php page for each and every link?
omg...that will take years !!!
Report to moderator   Logged
« Reply #24 on: November 09, 2007, 12:42:04 PM »
chickenmeister Offline
master of chickens
Global Moderator
Member

View Profile WWW
*****
Posts: 220



One question though.  Is there any way to have all the redirects on the same php page or do I hafta create a php page for each and every link?
omg...that will take years !!!

you can do something like this:
Code:
<?php
Header
("Location: " $_GET['url'] );
?>

if you save that as redirect.php, then when you want to redirect somebody to another site, you can just put the url at the end of redirect.php's url.
for example,

http://yoursite.t35.com/redirect.php?url=http://www.t35.com/forums/index.php

When I click on that link it will redirect to http://www.t35.com/forums/index.php (this forum).

although, I don't see how redirecting to a site has any advantage over simply linking to the site that you are redirecting to.
« Last Edit: November 09, 2007, 12:57:01 PM by chickenmeister » Report to moderator   Logged

Hello world!
« Reply #25 on: November 09, 2007, 09:14:10 PM »
joshr35 Offline
Newbie

View Profile
*
Posts: 32



From what I'm hearing its not good to have your affiliate link show in the address bar.
Report to moderator   Logged
« Reply #26 on: November 09, 2007, 10:10:07 PM »
JOE24
Dollar Offline
Jr. Member

View Profile
**
Posts: 99



From what I'm hearing its not good to have your affiliate link show in the address bar.

There is no way really to avoid that its going to happen. Unless you want to take another step and hid the real pages url with a Hidden iframe.
Which in that case you will not be using redirects but using a .html file that loads the another site into the frame.

Kinda like those free domain site. like co.nr  if you ever go to one of this site in firefox and right click>Remove Frame
You will see that the co.nr is just a frame overlapping the real url.




Code:
<html><head><!-- www.freedomain.co.nr -->
<title>RC</title>
<META http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<META name="resource-type" content="document">
<META name="audience" content="all">
<META name="distribution" content="global">
<META name="robots" content="INDEX, FOLLOW">
<META name="revisit-after" content="5 days">
<META name="description" content="The creative works of Noah Medling">
<META name="keywords" content="rc, rabidcow, rabid cow, noah medling, game design, game programming">
<script language="JavaScript">
if(top.frames.length > 0)
top.location.href=self.location;
</script>
</head>
<frameset rows="100%,*" frameborder="NO" border="0" framespacing="0">
<frame name="conr_main_frame" src="http://youraffliatelinkshere.whatever">
</frameset>

<noframes>
<body>
<div align=center>
<h1>RC</h1>
<p><b>The creative works of Noah Medling</b></p>
<p>Please <a href="http://www.fluffington.com/rcblog/">Click here</a> to visit <a href="http://www.fluffington.com/rcblog/"><b>RC</b></a></p><br><br>
<p>Powered by <a href="http://www.freedomain.co.nr/"><b>Free Domain Name</b></a> - <a href="http://www.freedomain.co.nr/"><b>Free URL Redirection</b></a> and <a href="http://www.freedomain.co.nr/"><b>Free Subdomain</b></a> @ .CO.NR</p>
</div>
</body>
</noframes>
</html>

On the other hand you may be allowed to that with some affliates, so check their Terms of Service.
Report to moderator   Logged

« Reply #27 on: November 30, 2007, 08:33:31 PM »
T35 Head Forum Administrator
dWhite Offline
Administrator
Sr. Member

View Profile WWW
*****
Posts: 340



I have to say, your website is getting alot better since the last time I checked it out.

Keep up the work!
Report to moderator   Logged

« Reply #28 on: December 08, 2007, 09:47:49 AM »
OS Master Offline
Newbie

View Profile WWW
*
Posts: 12



I am using Firefox, and the things that should be improved is that there is a "section" sticking out to the right of the rest of the "sections."  It is the one with "Antispyware 2007".  To the left of that there is another section that seems empty; if you aren't going to use it remove it.  Lastly, you should add some things to download.  The Movies and Music section are empty.

You have nice colors and design.  I like how you change the theme of the page as you go to "Movies" and "Music", etc. 

Your site is very good, and if you add some content you will definintely get visitors and revenue.

8/10
Report to moderator   Logged
« Reply #29 on: December 10, 2007, 12:16:25 AM »
LincolnAve Offline
Newbie

View Profile
*
Posts: 9



You site looks good. The wording on the left seems to break the template. Either get rid of it make it smaller or re-align it so that it doesn't make the template look bad.

I viewed it with Firefox 2.0

Good Luck,

LincolnAve
Report to moderator   Logged
 
Pages: 1 [2] 3
Send this topic | Print
Jump to:  

Powered by SMF | SMF © 2006-2008, Simple Machines LLC