Check Out Our Shop
Page 3 of 3 FirstFirst 1 2 3
Results 51 to 66 of 66

Thread: Your website is coming......

  1. #51
    Join Date
    Nov 2003
    Location
    London : the L is for Value!
    Posts
    4,574
    Originally posted by Blurred Elevens
    I'm going to bed brother...(it's almost 3 AM here) But, I cut and pasted this from my hosts site.

    Features
    Email
    Unlimited POP3 Email
    Unlimited IMAP Email
    Unlimited Forwarders
    Unlimited Filters
    Spam Assassin
    Webmail - NeoMail
    Webmail - Horde
    Webmail - Squirrel

    Scripting / Programming environment
    PHP 4+
    Perl
    JSP (Tomcat)
    Apache::ASP

    Relational Databases
    Unlimited MySQL databases
    Unlimited Postgresql databases
    Oracle (extra)
    DB2 (extra)

    Remote Shell / Console access
    OpenSSH / SSH access*
    * (picture id and utility bill is required - fax request to 888-453-1240)

    Extra's
    RealAudio HTTP streaming
    RealAudioVideo HTTP streaming
    Microsoft Audio HTTP streaming
    Microsoft Video HTTP streaming
    MP3 Audio streaming
    Shopping Cart - osCommerce
    Shopping Cart - Interchange
    Shopping Cart - Agora
    Chatrooms
    Search engine submission
    Bulletin Board / Forums
    Forums / Bulletin Boards
    PHP-Nuke

    Domain Features
    Parked Domains - Unlimited
    Addon Domains - $22 per year per domain
    Subdomains - Unlimited


    FTP Features
    FTP Accounts - Unlimited
    Backup features
    Password Protection Manager
    Custom Error Pages
    Sheeeeeeeeetttttt! Nice little list :-) There are plenty of possible solutions with that set up then

    edg

  2. #52
    Join Date
    Apr 2004
    Posts
    1,833

    Exclamation We are not Men, We are Devo

    Originally posted by edg
    Is that 5mb imposed by upload_max_filesize? If so, look at the PHP documentation, it can be changed by either the ini OR PHP_INI_PERDIR - so you can get round it using .htaccess (I'm making presumptions on the part of your host here though, they may not allow .htaccess files).

    If they do, however, just create a file called '.htaccess' with 'php_value upload_max_filesize <byte value, eg. 100mb =104,857,600>' and you should be able to overide those restrictions.

    2Mb isn't a suprise though, that's the default setting...

    edg


    I would have never thought I'd ask this type of question in front of my radical skiing peers...

    I've put a htaccess file on my server...
    RewriteEngine On
    RewriteCond %{HTTP_REFERER} !^http://yourdomain.com [NC]
    RewriteCond %{HTTP_REFERER} !^http://www.yourdomain.com [NC]
    RewriteRule [^/]+.(.*)$ http://www.yourdomain.com/accessdenied.gif [R,L]

    with my domain URL string added to replace the stock URL.

    It still lets me display the image from a browser using the hotlink, which I want to stop. I only want people to hit the image from my URL which has password protected access to those links. If someone were to "find" the link directly they could view the image file. BAD!

    This web page talks about it:
    thesitewizard.com/archive/bandwidththeft

    but the code I used is shown above, it's from the creator of the image asset library that I use.

    My questions:

    Is that code wack?
    Is it the Apache Servers choice to allow htaccess files? config file?
    Is it possible to "find" hotlinks on the web to images? Some type of war dialer URL string creator/tester?
    Am I paranoid?
    Is big Brother watching?

  3. #53
    Join Date
    Oct 2003
    Location
    Outside the cube
    Posts
    6,941
    Hey Blurred... please add me to the list for helping out on this project. I can help w/ html, design of pages/images, just putting content up on pages. I would be able to assist w/ maintaining the site if that's something you'd like help with. Just PM or Email me and let me know whatcha need!
    Sprite
    (webmistress)
    "I call it reveling in natures finest element. Water in its pristine form. Straight from the heavens. We bathe in it, rejoicing in the fullest." --BZ

  4. #54
    Join Date
    Nov 2003
    Location
    London : the L is for Value!
    Posts
    4,574

    Re: We are not Men, We are Devo

    Originally posted by Baconzoo
    I would have never thought I'd ask this type of question in front of my radical skiing peers...

    I've put a htaccess file on my server...
    RewriteEngine On
    RewriteCond %{HTTP_REFERER} !^http://yourdomain.com [NC]
    RewriteCond %{HTTP_REFERER} !^http://www.yourdomain.com [NC]
    RewriteRule [^/]+.(.*)$ http://www.yourdomain.com/accessdenied.gif [R,L]

    with my domain URL string added to replace the stock URL.

    It still lets me display the image from a browser using the hotlink, which I want to stop. I only want people to hit the image from my URL which has password protected access to those links. If someone were to "find" the link directly they could view the image file. BAD!

    This web page talks about it:
    thesitewizard.com/archive/bandwidththeft

    but the code I used is shown above, it's from the creator of the image asset library that I use.

    My questions:

    Is that code wack?
    Is it the Apache Servers choice to allow htaccess files? config file?
    Is it possible to "find" hotlinks on the web to images? Some type of war dialer URL string creator/tester?
    Am I paranoid?
    Is big Brother watching?
    1). Never bothered blocking external access to my images. If the area in which the images are stored are already password protected, then the direct link shouldn't work anyway.

    This code should work :
    RewriteEngine On
    RewriteCond %{HTTP_REFERER} !^$
    RewriteCond %{HTTP_REFERER} !^http://aaa.com.*$ [NC]
    RewriteCond %{HTTP_REFERER} !^http://www.aaa.com.*$ [NC]
    RewriteRule .*\.(gif|GIF|jpg|JPG|swf|SWF)$ http://www.aaa.com/bad.gif [R]

    You can see there are subtle differences, but these are important, I feel.

    If you're using IE type this out into a text editor, as sometimes your can get odd gremlins from copy/paste.

    2). Yes, your host (If you're not it yourself) can set whether or not to accept .htaccess files, but it's so limiting not to allow them I doubt they'd do that. Even so, an email to tech support can clear that up.

    3). I'm sure it is, but it'd be an awfully large job - are your images that precious?

    4). No, they're really after you.

    5). Yes.

    Hope this helps,

    edg

  5. #55
    Join Date
    Apr 2004
    Posts
    1,833

    dot your Mama

    .* instead of /* Why?

    EDG, you're a life/job saver. Word to your Mama.

  6. #56
    Join Date
    Oct 2002
    Location
    Park City, UT
    Posts
    1,789

  7. #57
    Join Date
    Oct 2003
    Location
    bozone montuckey
    Posts
    4,337
    Originally posted by Blurred Elevens
    I'm going to bed brother...(it's almost 3 AM here) But, I cut and pasted this from my hosts site.

    Features
    Email
    Unlimited POP3 Email
    Unlimited IMAP Email
    Unlimited Forwarders
    Unlimited Filters
    Spam Assassin
    Webmail - NeoMail
    Webmail - Horde
    Webmail - Squirrel

    Scripting / Programming environment
    PHP 4+
    Perl
    JSP (Tomcat)
    Apache::ASP

    Relational Databases
    Unlimited MySQL databases
    Unlimited Postgresql databases
    Oracle (extra)
    DB2 (extra)
    Make sure you find out what versions of MySQL you have to, some features of phpNuke dont play nice with MySQL v < 4.0
    "They who can give up essential liberty to obtain a little temporary safety, deserve neither liberty nor safety."
    Ben Franklin

  8. #58
    Join Date
    Nov 2003
    Location
    London : the L is for Value!
    Posts
    4,574

    Re: dot your Mama

    Originally posted by Baconzoo
    .* instead of /* Why?

    EDG, you're a life/job saver. Word to your Mama.
    Don't know, as long as it works eh? (It does work, right?)

    edg

  9. #59
    Join Date
    Apr 2004
    Posts
    1,833

    No it doesn't

    It exclude all access to the images even from the right URL. The php call to an image is comming a couple of directories later, http://www.mydomain.com/library/deta...p?image_id=845

    That's why I asked about /* = every folder after the astric

  10. #60
    Join Date
    Nov 2003
    Location
    London : the L is for Value!
    Posts
    4,574

    Red face

    Hmm... There appear to be 4 variations possible (from what I can find on the net) I suppose just try all?

    RewriteEngine on
    RewriteCond %{HTTP_REFERER} !^$
    RewriteCond %{HTTP_REFERER} !^http://(www\.)?yourdomain.com(/)?.*$ [NC]
    RewriteRule .*\.(gif|jpg|jpeg|bmp)$ http://yourdomain.com/bad.jpg [R,NC]

    Options +FollowSymlinks
    RewriteEngine on
    RewriteCond %{HTTP_REFERER} !^$
    RewriteCond %{HTTP_REFERER} !^http://(www\.)?yourdomain.com(/)?.*$ [NC]
    RewriteRule .*\.(gif|jpg|jpeg|bmp)$ http://yourdomain.com/bad.jpg [R,NC]

    Options +FollowSymlinks
    RewriteCond %{HTTP_REFERER} !^$
    RewriteCond %{HTTP_REFERER} !^http://(www\.)?yourdomain.com(/)?.*$ [NC]
    RewriteRule .*\.(gif|jpg|jpeg|bmp)$ http://yourdomain.com/bad.jpg [R,NC]

    RewriteCond %{HTTP_REFERER} !^$
    RewriteCond %{HTTP_REFERER} !^http://(www\.)?yourdomain.com(/)?.*$ [NC]
    RewriteRule .*\.(gif|jpg|jpeg|bmp)$ http://yourdomain.com/bad.jpg [R,NC]

    If one of those aren't working, I'm sorry - must be something to do with your server config

    edg

  11. #61
    Join Date
    Mar 2004
    Posts
    430
    Blurred , when is this awesome web site gonna be online.......whats up???

  12. #62
    Join Date
    Oct 2003
    Location
    Was UT, AK, now MT
    Posts
    14,580
    Set up the Paypal account. I think maggots would be more than happy to toss a few bucks in the pot for bandwidth.

    Like iskibc said, a TR page would be cool. Just think, pages of cool TR's with no political threads anywhere in sight.

    Look forward to seeing it.
    Last edited by Trackhead; 09-29-2004 at 09:47 AM.

  13. #63
    Join Date
    May 2004
    Location
    Colorado Cartel HQ
    Posts
    15,931
    Quote Originally Posted by DDsnake
    Blurred , when is this awesome web site gonna be online.......whats up???
    I'm waiting on a certain unemployed maggot to get off her butt and help me get it done. Hopefully sometime soon.

  14. #64
    Join Date
    May 2002
    Location
    Slut Lake City
    Posts
    7,785

    Talking

    "Levels. Levels."

  15. #65
    Join Date
    Jun 2004
    Location
    the backcountry
    Posts
    3,500
    Right on Blurred! Sounds like a cool site.

    For the splitboarders out there…splitboard.com is coming too!

    http://www.splitboard.com/newsite/SB_header.jpg

  16. #66
    Join Date
    Dec 2002
    Location
    Summit County
    Posts
    5,055
    Quote Originally Posted by Trackhead
    Set up the Paypal account. I think maggots would be more than happy to toss a few bucks in the pot for bandwidth.

    Like iskibc said, a TR page would be cool. Just think, pages of cool TR's with no political threads anywhere in sight.

    Look forward to seeing it.
    Blurred, I'd set up a way to atleast defray some of the costs. However, I've heard that Paypal is now censoring who can use its platform. i.e., porn sites are being excluded, gambling, and some sites PayPal deems to be hate sites have had priveleges revoked.

    me thinks some competition is needed in this segment.
    "The trouble with socialism is that you eventually run out of other people's money" --Margaret Thatcher

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •