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 - expo

Pages: [1]
1
Will this mod work on 1.7.6?  Can someone verify?

Thanks

2
Templates & Styles (Requests & Discussions) / Nice 3 column template?
« on: March 20, 2008, 03:46:54 PM »
Looking for a 3 column template like: http://preview.tinyurl.com/yoz76n

I can mod it but I need a solid 3 column layout.

Thanks

3
I want to be able to upload images and have them resized for various screen resolutions. I have searched and did not see this option for several size resizes.  I then would like each size to be a download option.

Thanks.

4
Code: [Select]
RewriteEngine On
RewriteCond %{HTTP_REFERER} !^http://(.+\.)?mysite\.com/ [NC]
RewriteCond %{HTTP_REFERER} !^$
RewriteRule .*\.(jpe?g|gif|bmp|png)$ /images/nohotlink.jpe [L]

The first line of the above code begins the rewrite. The second line matches any requests from your own mysite.com url. The [NC] code means "No Case", meaning match the url regardless of being in upper or lower case letters. The third line means allow empty referrals. The last line matches any files ending with the extension jpeg, jpg, gif, bmp, or png. This is then replaced by the nohotlink.jpe file in your images directory. This JPEG image is using the extension jpe instead of jpg to prevent blocking your own replacement image.

Pages: [1]