|
|
|
Recent articles
|
| |
 |
How to use PHP4.
By default the webserver is configured to use php5 for all sites on the server. If you would like to run PHP4, you can do so by adding the following...
|
|
|
|
 |
php_value and php_admin flags don't work.
We have implemented suPHP on the webserver as a security measure. It forces your php scripts to execute as your user instead of the webserver user,...
|
|
|
|
 |
Using php to redirect.
Create a file named index.php and enter the following:
// start here
<?php
header("Location: http://www.example.com/"); /*...
|
|
|
|
 |
What's the URL to the web admin login?
http://<your_ip>:14534
Change <your_ip> with the server IP.
|
|
|
|
 |
How to block users by IP.
Create a .htaccess file and add the following to it:
order allow,denydeny from 123.45.6.7deny from 12.34.5.allow from all
This will block...
|
|
|
|
|