Clusty
| Results 1 - 34 for php. (0.36 seconds) |
Log all .htaccess/.htpasswd logins
htaccess htpasswd with php A common request I get is how to view and/or log all usernames and passwords that clients use to access a website protected by … www.askapache.com/htaccess/htaccess-htpasswd-basic-auth.html |
PHP and .htaccess tutorial and examples for Apache
Apache htaccess tricks and tips for implementing, using, and optimising php and custom php.ini. www.askapache.com/htaccess/php-htaccess-tips-and-tricks.html |
Custom PHP.ini tips and tricks
Details how to use a custom php.ini file, for php running as a cgi and php as apache module. www.askapache.com/php/custom-phpini-tips-and-tricks.html |
Control htaccess Basic Authentication with PHP and mod_rewrite
Control htaccess Basic Authentication with PHP and mod_rewrite. www.askapache.com/htaccess/tricks-for-controlling-htaccess-basic-authentication-with-php-and-mod_rewrite.html |
.htaccess Tutorials, htaccess Examples, Sample .htaccess Files
10 Chapters of .htaccess examples for Password Protection with Authentication, rewrite URLs with mod_rewrite module, configure PHP in htaccess, … www.askapache.com/htaccess/apache-htaccess.html |
Redirecting WordPress index.php to root
How To Redirect /blog/index.php to /blog/ using .htaccess mod_rewrite. www.askapache.com/htaccess/redirect-index-blog-root.html |
Advanced WordPress 404.php
Discusses some of the advanced features for a WordPress 404.php page. www.askapache.com/wordpress/wordpress-404.html |
AskApache Web Development
This article is BOSS and will show you how to fully take control of this aspect of security using php and .htaccess, I don’t believe you will find … www.askapache.com/ |
Multiple Web Technologies for Dynamic php Session Control
Save and modify php session data, cookies, anything without ajax, iframes, or requests. www.askapache.com/htaccess/php-sessions-cookies.html |
Execute commands on your server using a telnet-like PHP shell …
Command prompt console shell on your web site. Run commands on your web server as if telnet or SSH. www.askapache.com/tools/php-and-ajax-shell-console.html |
Speed Up Sites with php Caching
This explains the basic methods to get started caching with php headers. www.askapache.com/php/speed-up-sites-with-php-caching.html |
301 Redirect Cheatsheet - mod_rewrite, javascript, cfm, perl, php …
Ultimate Redirect Cheatsheet for multiple programming languages. Redirecting Users with Javascript redirect, meta refresh redirect, and php redirect, … www.askapache.com/htaccess/list-of-methods-to-redirect-users-to-different-page.html |
cURL PHP Code Example Grabs Feed Subscribers from Google Reader
PHP curl example utilizing cookies, POST, and SSL options to login to Google Reader and fetch the number of subscribers for a particular feed url. www.askapache.com/security/curl-google-post-feed.html |
POST data manipulation using php and CURL
CURL Guide for sending POST data form request with PHP and CURL. www.askapache.com/htaccess/sending-post-form-data-with-php-curl.html |
WordPress robots.txt file optimized for SEO and Google
Place this in your wordpress themes header.php file, if the page is a single, page, or if its the home page then the robots will index and follow links on … www.askapache.com/seo/wordpress-robotstxt-seo.html |
PHP Anti-Spam Captcha Script to Secure Form
PHP Anti-Spam Captcha Tutorial to stop automated web robots and spammers from taking advantage of your site. www.askapache.com/security/php-captcha-anti-spam-example.html |
Using htaccess to make phpBB Search Engine Optimized
+-vc([0-9]+).html$ /htaccess/index.php?c=$1 [QSA,L] RewriteRule ^htaccess/. … At this point I am just going to modify the page_header.php file to generate … www.askapache.com/phpbb/using-last-modified-etag-mod_expires-mod_headers-to-seo-phpbb.html |
Security Tips for Securing your website, server, blog using .htaccess
Chmod php files 600, chmod files that you really dont want people to see as 400 (wp-config.php, config.php) and NEVER chmod 777, if something requires write … www.askapache.com/htaccess/security-with-apache-htaccess.html |
Password Protection and Authentication Locking down Apache with …
<Files login.php> AuthName "htaccess password prompt" AuthType Basic AuthUserFile /home/askapache.com/.htpasswd Require valid-user </Files> … www.askapache.com/htaccess/apache-authentication-in-htaccess.html |
Debug apache log files from php
Secure phpinfo.php with .htaccess, Now instead of getting a 404 error you will see debug information which will help you find out what the problem is. www.askapache.com/htaccess/debug-apache-log-files-from-php.html |
How To Add Akismet Anti-spam protection to your php forms
Add Akismet Protection to php forms Akismet is well-known as THE anti-spam plugin for WordPress that checks every comment and trackback received by your … www.askapache.com/webmaster/add-akismet-anti-spam-to-php.html |
Google AdSense Automatic Login with PHP and CURL
Demo php code uses cURL to automatically login to Google AdSense, using cookies and post fields. www.askapache.com/webmaster/login-to-google-adsense-using-php.html |
Custom PHP.ini with FastCGI on DreamHost
Please do not run these sites with a persistent php.cgi process with a php.ini file as an argument. www.askapache.com/dreamhost/custom-phpini-with-fastcgi-on-dreamhost.html |
php.ini using auto_prepend for output headers
By including a php file using php.ini, you can replace the output headers and html. www.askapache.com/php/use-phpini-to-add-http-headers-to-output.html |
.htaccess File and mod_rewrite examples
Is there a way to change “upload_tmp_dir” for PHP in htaccess file? … It can be change in php.ini, but can htaccess also works with it? how? … www.askapache.com/htaccess/ultimate-htaccess-file-sample.html |
301 Redirectmatch, Redirect, and mod_rewrite
http://www.php.net/manual/$1 RedirectMatch 301 ^/dreamweaver/(.*)$ http://www.askapache.com/tools/$1 RedirectMatch 301 ^/z/(.*)$ http://z.askapache.com/$1 … www.askapache.com/htaccess/301-redirect-with-mod_rewrite-or-redirectmatch.html |
503 Status Code Search Engine SEO
If you are using a CGI version of PHP than the Status header below is required … <?php ob_start(); header('HTTP/1.1 503 Service Temporarily Unavailable'); … www.askapache.com/htaccess/503-service-temporarily-unavailable.html |
Stop WP-Cache Plugin from caching index.php
Disable caching on WordPress index pages when using WP-Cache with this neat mod to the famously speedy cache plugin. www.askapache.com/wordpress/wp-cache-wordpress-index-page.html |
mod_rewrite tips with RewriteRule and RewriteCond for .htaccess
If the QUERY_STRING has any value at all besides blank than the ? at the end of /login.php? tells mod_rewrite to remove the QUERY_STRING from login.php and … www.askapache.com/htaccess/mod_rewrite-tips-and-tricks.html |
Using AddCharset, AddType, AddDefaultCharset to output UTF-8 …
Will the output - after the PHP file is parsed be set as UTF 8? … So to get the charset correct for php files you need to modify your php.ini like so. … www.askapache.com/htaccess/setting-charset-in-htaccess.html |
.htaccess tutorial for SEO 301 Redirects with RedirectMatch and …
http://www.askapache.com/htaccess/php-htaccess-tips-and-tricks.html$2 RedirectMatch 301 ^/(.*)apache-htaccess.html/4/(. … www.askapache.com/htaccess/seo-search-engine-friendly-redirects-without-mod_rewrite.html |
htaccess Security on Apache
Darn it all, the student is now able to run php scripts in his directory. … AddHandler cgi-script .php .pl .py .jsp .asp .htm .shtml .sh .cgi Options - … www.askapache.com/htaccess/securing-subdirectories-with-htaccess.html |
.htaccess file for Powweb
(php|cgi|pl|htm)$"> ExpiresDefault A0 Header set Cache-Control "no-store, no-cache, must-revalidate, max-age=0" Header set Pragma "no-cache" </FilesMatch> … www.askapache.com/htaccess/powweb-htaccess.html |
Redirect all feeds to FeedBurner with .htaccess
If you have index.php in your permalink structure you have to use a hack. .... I used to use http://blogname/wp-rss2.php?tag=abc to get certain posts with … www.askapache.com/htaccess/redirecting-wordpress-feeds-to-feedburner.html |