News:

Click here for Toll-Free Service for your business starting at $2.00 per month

Main Menu
Menu

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.

Show posts Menu

Messages - markjay

#46
Support Requests / Re: AJAX support
May 20, 2007, 12:13:19 PM
First of all, AJAX is client side. Where it just sends data to the server and outputs it on your browser even without leaving the current page.

You may start learning by going to this link:
http://www.w3schools.com/ajax/default.asp

I have just recently learned AJAX from that site and they give the very important thing on how to use AJAX.
#47
Support Requests / Re: Problem with phpBB
May 03, 2007, 12:08:18 AM
I am a phpbb user, but I haven't encountered the redirection problem yet.
#48
Click this and it will list you all sites that provides on how to make an AJAX chat
#49
Support Requests / fsockopen problem
March 03, 2007, 03:40:54 AM
Warning: fsockopen() [function.fsockopen]: unable to connect to IP_ADDRESS:PORT (Connection timed out)

I have encountered this lately, is there any problem with the server?
#50
Support Requests / Re: Favicon doesn't work
February 03, 2007, 12:23:15 AM
As far as I can see favicon is only available to selected browser and selected browser version.

Like:
Favicon is only available to Firefox and IE7 browser, there for IE6 and older is not available for favicon. I mean you see the favicon on the Address Bar.
#51
First of all, the owner 48 is a group made by the admin to prevent any other modifications made by external applications outside the server. So you do not have to worry about the files, you can also request as what the admin says.

*just correct me if im wrong*
#52
Support Requests / Re: can't see my site
December 27, 2006, 12:52:31 AM
Is your site hosted on FreePgs or LVCS?
#53
I just opened my email recently seeing the "FreePgs.com Password Reset" emailed to me without my knowledge.

The email was requested from 209.89.126.157
#54
Support Requests / Re: how to mkdir()
August 26, 2006, 11:56:30 AM
/fpgs/fpgshttpd/USERNAME/

just change the username
#55
Support Requests / Re: MySQL admin issues
August 23, 2006, 06:25:19 AM
You need to create a username for your DB, as it is not the same as your recent web site.
If you will create a username for your DB be sure it is not the same as your login to your account.
#56
Support Requests / Re: invision power board help.....
February 01, 2006, 07:32:04 AM
You need to
Enable PHP via options panel
#57
Support Requests / Re: htaccess
December 02, 2005, 12:22:07 AM
i had tried your sample but your first sample blocks all images and the second can be still hotlinked...
you should test your sample thoroughly
#58
Support Requests / Re: htaccess
December 01, 2005, 12:11:30 PM
Example: Your site url is www.example.com. To stop hotlinking images from an outside domain and display an image called nohotlink.jpg instead, use this code in your .htaccess file:

RewriteEngine On
RewriteCond %{HTTP_REFERER} !^http://(www\.)?example\.com/ [NC
RewriteCond %{HTTP_REFERER} !^$
RewriteRule \.(jpe?g|gif|bmp|png)$ images/nohotlink.jpg [L]

To allow hotlinking images only if the REFERER (sic) is from a specific directory from your domain:
RewriteEngine On
RewriteCond %{HTTP_REFERER} !^http://(www\.)?example\.com/dir/ [NC
RewriteCond %{HTTP_REFERER} !^$
RewriteRule \.(jpe?g|gif|bmp|png)$ images/nohotlink.jpg [L]

To stop hotlinking images from specific outside domains only, named badsite.net and badsite.com:
RewriteEngine On
RewriteCond %{HTTP_REFERER} ^http://(www\.)?badsite\.net/ [NC,OR
RewriteCond %{HTTP_REFERER} ^http://(www\.)?badsite\.com/ [NC
RewriteRule \.(jpe?g|gif|bmp|png)$ images/nohotlink.jpg [L]

Limit bandwidth usage by returning a 403 forbidden code. Replace the last line of the previous examples with this line:
RewriteRule \.(jpe?g|gif|bmp|png)$ - [F]

Warning: Do not use .htaccess to redirect image hotlinks to another HTML page or server that isn't your own (such as this web page). Hotlinked images can only be redirected to other images, not to HTML pages.

As with any .htaccess rewrites, you may block some legitimate traffic (such as users behind proxies or privacy firewalls) using these techniques.

source: http://altlab.com/htaccess_tutorial.html