View previous topic :: View next topic |
Author |
Message |
spremi -
Joined: 09 Sep 2003 Posts: 4
|
Posted: Mon Apr 26, 2004 5:30 pm Post subject: Unable to follow URLs of type "index.php/users" |
|
|
I am trying to evaluate a PHP based CMS system eGroupware and other equivs.
Unfortunately, most of these systems define the URLs as:
http:/website/application/index.php/users
http:/website/application/index.php/shop
http:/website/application/index.php/calendar
I have done all the settings as described in the Help for setting PHP.
All other PHP applications work fine. only the ones with these kind of URLs dont work.
Need to sort this soon... All help is welcome.
Thanks :-) |
|
Back to top |
|
 |
TRUSTAbyss -
Joined: 29 Oct 2003 Posts: 3752 Location: USA, GA
|
Posted: Mon Apr 26, 2004 5:47 pm Post subject: |
|
|
You setup the URL's wrong , it should
look like this instead , try this !
http:/website/application/index.php?users
http:/website/application/index.php?shop
http:/website/application/index.php?calendar
Or
http:/website/application/?users
http:/website/application/?shop
http:/website/application/?calendar
Does index.php look like a
directory , I don't think so lol |
|
Back to top |
|
 |
spremi -
Joined: 09 Sep 2003 Posts: 4
|
Posted: Mon Apr 26, 2004 5:59 pm Post subject: |
|
|
Thanks for your response.
Unfortunately, I am not implementing the apps. I am newbie to PHP.
The URL is defined by the apps asi mentioned in the earlier mail.
Currenly i am testing eGroupware.
Supposedly, the index.php is a 'redirector" |
|
Back to top |
|
 |
TRUSTAbyss -
Joined: 29 Oct 2003 Posts: 3752 Location: USA, GA
|
Posted: Mon Apr 26, 2004 6:09 pm Post subject: |
|
|
Did the new URL's that I posted work ? |
|
Back to top |
|
 |
spremi -
Joined: 09 Sep 2003 Posts: 4
|
Posted: Mon Apr 26, 2004 6:17 pm Post subject: |
|
|
nope :-( |
|
Back to top |
|
 |
spremi -
Joined: 09 Sep 2003 Posts: 4
|
|
Back to top |
|
 |
iNaNimAtE -
Joined: 05 Nov 2003 Posts: 2381 Location: Everywhere you're not.
|
Posted: Tue Apr 27, 2004 2:13 am Post subject: |
|
|
"file.php/subfile" are types of directories. They just get some of the information from the PHP script; instead of a completely new file with some of the instructions.
Filetypes like that are almost identical to Query_Stings in PHP, it just depends on how you configure the script.
Check www.php.net on ways how to do it. _________________ Bienvenidos! |
|
Back to top |
 |
 |
aprelium -
Joined: 22 Mar 2002 Posts: 6800
|
Posted: Tue Apr 27, 2004 4:36 pm Post subject: Re: Unable to follow URLs of type "index.php/users" |
|
|
spremi,
a http://site/path/index.php/data url won't work on most PHP configurations (this is true for all web servers). This is caused by the way PHP gets the path of the script to execute.
If you want more technical details, we can explain ore in depth what is the problem (it is related to the CGI variables PATH_INFO). _________________ Support Team
Aprelium - http://www.aprelium.com |
|
Back to top |
|
 |
|