Search found 3 matches

by rcity
Wed Feb 11, 2004 3:52 pm
Forum: PHP - Code
Topic: server configuration Help
Replies: 2
Views: 341

The Code

<?php $test = $_SERVER['PHP_SELF']; echo 'script_filename is: '.$test.'<br>'; function fetch_path() { $_PATH = array(); if( isset($_SERVER['PATH_INFO']) ) { $getdata = explode('/', $_SERVER['PATH_INFO']); $getcount = count($getdata); if( $getcount % 2 == 0 ) { $getdata[] = ''; $getcount++; } for( $i...
by rcity
Wed Feb 11, 2004 3:30 pm
Forum: PHP - Code
Topic: server configuration Help
Replies: 2
Views: 341

server configuration Help

Server: W2K3 IIS: 6 PHP: 4.3.4 Does anyone know what I need to change on the server to make this script work? I have a script that works fine under PHP 4.3.2, but not PHP 4.3.4. The script creates a search engine friendly URL, but with PHP 4.3.4 it displays a not found error. It appears that the ser...
by rcity
Tue Jan 06, 2004 2:21 pm
Forum: PHP - Code
Topic: Search engine friendly URL problem
Replies: 1
Views: 291

Search engine friendly URL problem

Hi, I need to make the URL for my site more friendly to search engines. Does anyone know what the problem with this code, or server settings are, or where I can find similar code for PHP running on a w2k server? I found a nice example in "Core PHP Programming" for putting GET variables bet...