Have a look on below Image and follow the steps to make “rewrite_mod” on WAMP server. You all know WAMP stands for (Windows, Apache, MySQL, PHP), It is package provide you an environment to execute your PHP application. But the general issue you have faced with WAMP is, your rewrite rules usually…
You have to follow below some very simple steps to run cron file in windows system. 1. Create a cron.php file (the code you want to execute at a regular interval) 2. Create a CRON.BAT file, copy and past the below code in the file D:\xampp\php\php.exe D:\xampp\htdocs\Application\cron.php The path I have written…
Most useful 5 htaccess tricks every webmaster should know 1) Redirect your website visitors while you update or test your website order deny,allow deny from all allow from 117.117.117.117 ErrorDocument 403 /showpage.html <Files showpage.html> allow from all </Files> Replace 117.117.117.117 with your IP address. Also replace showpage.html with the name of the page you want…
1. Find your PHP version using phpinfo() function. You should need to know the version when you download the ionCube loaders. x86/ppc/sparc packages are for 32 bit systems; x86-64/ppc64 packages are for 64 bit systems. The Windows non-TS Loaders are for use on a Windows system where a phpinfo() page shows that PHP…
You just have to update the following files: X:\xampp\apache\conf\extra\httpd-vhosts.conf First of all, uncomment the following line to enable name based virtual host on your server’s port 80: NameVirtualHost *:80 Then you can start adding your virtual hosts. The following listing is just a sample, I usually do.I am assuming ,we create a project…
Set file permissions with .htaccess, this is a great method for ensuring the CHMOD settings for various file types. Apply the following rules in the root .htaccess file to affect all specified file types, or place in a specific directory to affect only those files (add/update file types according to your needs) Require SSL…