XFileSharing Pro - How to fix this?

Message
Author
awaisuk
Posts: 39
Joined: May 25, 2009 4:08 am

How to fix this?

#1 Postby awaisuk » Nov 01, 2009 2:33 am

When someone arrives at the download page, and they have 2 buttons, FREE DOWNLOAD and PREMIUM DOWNLOAD.

When they click PREMIUM DOWNLOAD they are forwarded to LOGIN PAGE.

Why is that?

Shouldnt they be redirected to Premium.html page?

Here is what the Premium button shows in source: <TMPL_VAR lang_premium_download>

Please tell me why it is taking them to login page and how to make it go to Premium.html?

Thanks.

cuty
Posts: 103
Joined: Apr 14, 2009 11:20 pm

#2 Postby cuty » Nov 01, 2009 4:56 am

BECAUSE they clicked premium download and its expecting them to have a premium account so it redirects them to the login page .If they dont have a premium account they should click free download.

awaisuk
Posts: 39
Joined: May 25, 2009 4:08 am

#3 Postby awaisuk » Nov 01, 2009 9:10 pm

How can i redirect it to Premium.html?

User avatar
PilgrimX182
Posts: 2186
Joined: Mar 22, 2006 1:39 pm

#4 Postby PilgrimX182 » Nov 02, 2009 2:25 pm

Check download0.html - all clear there.

awaisuk
Posts: 39
Joined: May 25, 2009 4:08 am

#5 Postby awaisuk » Nov 02, 2009 7:51 pm

<input type="submit" name="method_premium" value="<TMPL_VAR lang_premium_download>" style="width:140px;height:30px;font-family: Tahoma;font-size: 13px;font-weight: bold;cursor: pointer;cursor: hand">

Is this it?

What do i edit in there to make it go to Premium.html page?

User avatar
PilgrimX182
Posts: 2186
Joined: Mar 22, 2006 1:39 pm

#6 Postby PilgrimX182 » Nov 03, 2009 8:25 pm

replace it with

Code: Select all

<input type="button" name="method_premium" value="<TMPL_VAR lang_premium_download>" style="width:140px;height:30px;font-family: Tahoma;font-size: 13px;font-weight: bold;cursor: pointer;cursor: hand" onClick="window.location='/premium.html';">