![]() |
![]() OCAU News - Wiki - QuickLinks - Pix - Sponsors |
|
|||||||
| Notices |
|
Sign up for a free OCAU account and this ad will go away! Search our forums with Google: |
![]() |
|
|
Thread Tools |
|
|
#1 | |
|
Awaiting Email Confirmation
Join Date: Jun 2003
Location: Melbourne
Posts: 304
|
Code:
<?php
$config["path"] = "";
$config["ext"] = ".php";
if (!isset($_REQUEST["page"])){
$page = "main";
} else {
$page = $_REQUEST["page"];
$page = urldecode($page);
$page = trim($page);
$page = strip_tags($page);
if (substr_count($page,"..") > 0 || substr_count($page,"~") > 0){
$page = "main";
}
}
$full = $config["path"] . $page . $config["ext"];
if (!is_file($full) || is_dir($full) || !file_exists($full)){
die ("Sorry, the page you are looking for is gone. Please email the webmaster with the URL currently in your address bar so that it can be corrected. Thanks!");
} else {
require_once($full);
}
?>
Quote:
Last edited by Orions; 28th January 2008 at 2:42 PM. Reason: code incorrect for my site |
|
|
|
|
| Join OCAU to remove this ad! |
|
|
#2 |
|
Whammy!
Join Date: May 2003
Location: Melbourne
Posts: 3,945
|
Its asking for main.php, not home.php if you don't pass any arguments.
__________________
Administrator: Apple Desktop Hardware/Software, Graphics and Programming, Digital Art, iOS Devices, For Sale (PC and Non-PC), Price Check and What/Where Should I Buy? mercury: 11" Macbook Air, i5, 4Gb RAM, 128Gb SSD lunchbox: Mac mini, i5 Dual Core, 4Gb RAM, 500Gb HDD |
|
|
|
|
|
#3 |
|
Awaiting Email Confirmation
Join Date: Jun 2003
Location: Melbourne
Posts: 304
|
Updated thread.
Last edited by Orions; 28th January 2008 at 2:42 PM. Reason: Updated thread |
|
|
|
![]() |
| Bookmarks |
|
Sign up for a free OCAU account and this ad will go away! |
| Thread Tools | |
|
|