Oh no! Where's the JavaScript?
Your Web browser does not have JavaScript enabled or does not support JavaScript. Please enable JavaScript on your Web browser to properly view this Web site, or upgrade to a Web browser that does support JavaScript.
Not a member yet? Click here to register.
Forgot Password?

Well its not powered by PHP Fusion 6 but its powered by 7 :-)

Asked Modified Viewed 2,498 times
G
ghostwx
G
  • Newbie, joined since
  • Contributed 7 posts on the community forums.
  • Started 1 thread in the forums
  • Started this discussions
asked
Newbie

Well Its a small site im working on getting started. Just a place where you can get various information and downloads. (ALL LEGAL) http://phasethis.com So check it out and give me feed back and suggestions.
Edited by ghostwx on 25-06-2008 23:07,
0 replies

13 posts

G
googlebot
G
Visit the new home of the merge between Hacking Vs. Security and Security Override!
My copyright removal has been switched over from HvS to SecurityOverride.
  • Senior Member, joined since
  • Contributed 638 posts on the community forums.
  • Started 28 threads in the forums
answered
Senior Member

Why don't you make http://phasethis.com a url (use the [url ] tags without the space) so it's clickable.

"No download categories defined"

Are downloads only for members? I'd advise you to allow guests to *at least* see what your site has to offer.
0 replies
G
ghostwx
G
  • Newbie, joined since
  • Contributed 7 posts on the community forums.
  • Started 1 thread in the forums
  • Started this discussions
answered
Newbie

well the reason why its members, cause I want you to register before you download. Unless there was an option i can use to make it where guests can view but cant download i would do that!
0 replies
G
googlebot
G
Visit the new home of the merge between Hacking Vs. Security and Security Override!
My copyright removal has been switched over from HvS to SecurityOverride.
  • Senior Member, joined since
  • Contributed 638 posts on the community forums.
  • Started 28 threads in the forums
answered
Senior Member

Quote

ghostwx wrote:
well the reason why its members, cause I want you to register before you download. Unless there was an option i can use to make it where guests can view but cant download i would do that!

I figured that..

Well, if I found your site and figured out what it was about (i.e. downloads), and I viewed the downloads and nothing showed up, I wouldn't be motivated to register. Why not? I think that you don't have any downloads, when you do.

I suggest searching/asking to find out how to do that.
0 replies
G
ghostwx
G
  • Newbie, joined since
  • Contributed 7 posts on the community forums.
  • Started 1 thread in the forums
  • Started this discussions
answered
Newbie

im just gonna open downloads to the public until i figure something out
0 replies
G
googlebot
G
Visit the new home of the merge between Hacking Vs. Security and Security Override!
My copyright removal has been switched over from HvS to SecurityOverride.
  • Senior Member, joined since
  • Contributed 638 posts on the community forums.
  • Started 28 threads in the forums
answered
Senior Member

Quote

ghostwx wrote:
im just gonna open downloads to the public until i figure something out

Smart decision. Also, you should offer support for downloads on your site. That would get me to register if I had an issue, or wanted to discuss a download, or so on..
0 replies
G
ghostwx
G
  • Newbie, joined since
  • Contributed 7 posts on the community forums.
  • Started 1 thread in the forums
  • Started this discussions
answered
Newbie

ok what do you mean by support? like if the download dont work or actual support for the program/script
0 replies
G
googlebot
G
Visit the new home of the merge between Hacking Vs. Security and Security Override!
My copyright removal has been switched over from HvS to SecurityOverride.
  • Senior Member, joined since
  • Contributed 638 posts on the community forums.
  • Started 28 threads in the forums
answered
Senior Member

Well, that's all up to you. You may also want forum categories such as comparing downloads to others on your site (if you have downloads for similar purposes) or comparison to products you have to pay for, etc - basically all things downloads... :P
0 replies
G
ghostwx
G
  • Newbie, joined since
  • Contributed 7 posts on the community forums.
  • Started 1 thread in the forums
  • Started this discussions
answered
Newbie

oh ok so basically a section of the forums for download related items?
0 replies
G
googlebot
G
Visit the new home of the merge between Hacking Vs. Security and Security Override!
My copyright removal has been switched over from HvS to SecurityOverride.
  • Senior Member, joined since
  • Contributed 638 posts on the community forums.
  • Started 28 threads in the forums
answered
Senior Member

Yeah, but ultimately, it's all up to you. I'm just giving ideas.
0 replies
G
ghostwx
G
  • Newbie, joined since
  • Contributed 7 posts on the community forums.
  • Started 1 thread in the forums
  • Started this discussions
answered
Newbie

well that is why i posted here! lol
0 replies
G
googlebot
G
Visit the new home of the merge between Hacking Vs. Security and Security Override!
My copyright removal has been switched over from HvS to SecurityOverride.
  • Senior Member, joined since
  • Contributed 638 posts on the community forums.
  • Started 28 threads in the forums
answered
Senior Member

You might want to add to your download categories:

games
video (you have audio, so why not?)
FTP clients
antivirus/antispyware
windows utilities (and/or linux and/or mac, whatever you want)
other (or uncategorized)

And think about adding a Giveaway of the Day ticker or link (you'll find the ticker when you visit that link).
0 replies
G
ghostwx
G
  • Newbie, joined since
  • Contributed 7 posts on the community forums.
  • Started 1 thread in the forums
  • Started this discussions
answered
Newbie

games is on there as well as music, you just have to register as those are gonna be bigger files so I would want them kinda controlled in a way
0 replies
H
HobbyMan
H
Just some Guy
  • Veteran Member, joined since
  • Contributed 1,486 posts on the community forums.
  • Started 91 threads in the forums
answered
Veteran Member

If you want your visitors to be able to view your downloads but only members to be able to download.

Open downloads.php

go to line 82 find...

echo "<td width='30%' class='tbl1'><strong>".$locale['415']."</strong> ".$data['download_count']."</td>\n<td width='40%' class='tbl2'><a href='".FUSION_SELF."?cat_id=".$_GET['cat_id']."&amp;download_id=".$data['download_id']."' target='_blank'>".$locale['416']."</a> (".$data['download_filesize'].")</td>\n</tr>\n";


Change to....

               echo "<td width='30%' class='tbl1'><strong>".$locale['415']."</strong> ".$data['download_count']."</td>\n<td width='40%' class='tbl2'>\n"; 
 if (iMEMBER) {echo" <a href='".FUSION_SELF."?cat_id=".$_GET['cat_id']."&amp;download_id=".$data['download_id']."' target='_blank'>".$locale['416']."</a> (".$data['download_filesize'].")</td>\n</tr>";
         } else {
       echo "&nbsp;</td>\n</tr>";
               }


This will remove the download link to anyone not logged in.

You could also change "&nbsp;" to a locale in locale/downloads.php eg; Members Only or some other.

Tested ok on localhost, NOT tested on a live site.
0 replies

Category Forum

Post Your Site

Labels

None yet

Statistics

  • Views 0 views
  • Posts 13 posts
  • Votes 0 votes
  • Topic users 3 members

3 participants

H
H
Just some Guy
  • Veteran Member, joined since
  • Contributed 1,486 posts on the community forums.
  • Started 91 threads in the forums
G
G
Visit the new home of the merge between Hacking Vs. Security and Security Override!
My copyright removal has been switched over from HvS to SecurityOverride.
  • Senior Member, joined since
  • Contributed 638 posts on the community forums.
  • Started 28 threads in the forums
G
G
  • Newbie, joined since
  • Contributed 7 posts on the community forums.
  • Started 1 thread in the forums
  • Started this discussions

Notifications

Track thread

You are not receiving notifications from this thread.

Related Questions

Not yet