Page 2 of 2
Posted: Tue Jul 18, 2006 2:38 am
by tecktalkcm0391
My Current httpd.conf file is:
Posted: Tue Jul 18, 2006 2:39 am
by Benjamin
Can you post your apache config file please.
EDIT LOL Looks like you just did..
Posted: Tue Jul 18, 2006 2:42 am
by Benjamin
Ok, is index.php in C:/SERVER/htdocs? That is where it should be.
Posted: Tue Jul 18, 2006 2:44 am
by tecktalkcm0391
yes. it is.
Posted: Tue Jul 18, 2006 2:46 am
by tecktalkcm0391
Error log:
To be removed in a few days....
Posted: Tue Jul 18, 2006 2:54 am
by Benjamin
Backup your config and try this...
Code: Select all
<Directory />
Order Deny,Allow
Deny from all
</Directory>
<Directory "C:/SERVER/htdocs">
Order Deny,Allow
Allow from all
</Directory>
Posted: Tue Jul 18, 2006 9:21 am
by tecktalkcm0391
Thanks, I didn't try that, but that lead me to get this:
Code: Select all
<Directory "C:/SERVER/php">
AllowOverride None
Options None
Order allow,deny
Allow from all
</Directory>
Which I needed to give it the permitions to the php folder.
Posted: Tue Jul 18, 2006 10:54 am
by RobertGonzalez
So did that work?
Posted: Tue Jul 18, 2006 10:56 am
by tecktalkcm0391
Yeah, now for my next question. What are all of the extensions you have to add to PHP to be able to use every function in PHP5? Also how do I set them up.... see I have no clue.
Posted: Tue Jul 18, 2006 1:38 pm
by RobertGonzalez
You only have to enable extensions if you want to use features of those extensions. Whichever ones you want the features of, enable those.
Posted: Tue Jul 18, 2006 9:18 pm
by tecktalkcm0391
I got it now. But I am getting these errors when I open php.exe:

Posted: Tue Jul 18, 2006 9:43 pm
by Benjamin
Copy the dlls to the same dir as php.exe or to your Windows system directory.
Posted: Tue Jul 18, 2006 10:09 pm
by tecktalkcm0391
don't they need to be in c:/server/php/ext/ ??? Cause they are there...
Posted: Tue Jul 18, 2006 10:27 pm
by Benjamin
No
Posted: Wed Jul 19, 2006 6:24 pm
by tecktalkcm0391
Ok, well then were do I put them exactly... and also where do I put mod_rewrite info, I have the code to remove the .php. How do I do that for my whole site.