Update (21-02-2010): I become tired testing Feedburner for recursive redirection problem. I need to wait for feedburner’s FeedBulletin for my account. and It does not come to check as and when you say to do so. So, I have got a smart solution which can get me what I want… READ MORE
Once I was wondering what the use of Apache module – mod_rewrite is. What I will achieve with mod_rewrite kind of heavy module.
I get many answers like I can redirect user to new page without user knowledge. Another case is when document root has changed. Examples are many but… READ MORE
You need to configure apache a little for telling how to execute php files.For making php work with apache you first dump php suppose c:\php501\. Then add these lines to your apache httpd.conf file. ScriptAlias /php/ “c:/php501/”AddType application/x-httpd-php .phpAction application/x-httpd-php “/php/php-cgi.exe”
First check your apache server is running correctly. If… READ MORE
Want to start learning Apache configuration settings. Start with these settings:
Server root. All files conf, htdocs, etc under it.ServerRoot “C:/Program Files/Apache Group/Apache2″
Script timeout:Timeout 300
Keep connection alive time:KeepAlive On
Max. request accepted keep alive request:MaxKeepAliveRequests 100
Keep Alive timeout:KeepAliveTimeout 15
Registered DNS name, or IP address hereServerName localhost:80… READ MORE
Some files are login protected in PHP application and some are include files that need not run directly and can hold some important data not for direct public view.
For each login-protected page you will write login check script at top of the page.
<?php
If not login then
Redirect… READ MORE