Closed. This question is off-topic. It is not currently accepting answers.
Want to improve this question? Update the question so it's on-topic for Stack Overflow.
Closed 9 years ago.
Improve this question
I have a plain vanilla Apache php-fpm setup on ubuntu Precise. I have the rewrite module enabled but no rewrite rules anywhere in Virtualhost or directory level nor is there any .htaccess file. However, domain.com/abc launches domain.com/abc.php
Is there something in the default apache or php setup that enables this. Pls advise.
This feature is called MultiViews and you have to disable it...
Options -MulviViews
Related
Closed. This question is off-topic. It is not currently accepting answers.
Want to improve this question? Update the question so it's on-topic for Stack Overflow.
Closed 9 years ago.
Improve this question
I have a chunk of php code that I'd like to execute/include on each request on my server without having to alter each php file in my codebase. Is there a way to do this while using NGINX and php 5.3 on CentOs 6?
Use the auto_prepend_file configuration directive.
Closed. This question is off-topic. It is not currently accepting answers.
Want to improve this question? Update the question so it's on-topic for Stack Overflow.
Closed 10 years ago.
Improve this question
Well , i have Appserv appserv-win32-2.5.10 installed in the server and i have a System in Php and mysql.
Some computers of the workgroup Can't enter to my system ,get a slow charge of the system an never finish.
Please Help
Sorry for my english.
In your httpd.conf Apache file, in the directory tag, you should try something like this:
<Directory "/www/your_webroot">
order allow,deny
allow from all
</Directory>
The allow from all, should works ;)
PS: Here is a nice example of httpd.conf file:
http://www.devside.net/guides/config/windows/httpd-conf
Closed. This question is off-topic. It is not currently accepting answers.
Want to improve this question? Update the question so it's on-topic for Stack Overflow.
Closed 10 years ago.
Improve this question
I have a Php website and I recently renewed the domain and hosting. When I checked www.domain.com it it not displaying website but when I check for www.domain.com/index.php displays it correctly.. what shall I do to make this correct.
The simplest way is with .htaccess file;
Create a .htaccess file in your web root.
Add the following line...
DirectoryIndex index.php
You may have to create/modify .htaccess file in the hosting server.
More info: http://www.thesitewizard.com/apache/change-default-page-for-domain.shtml
Closed. This question is off-topic. It is not currently accepting answers.
Want to improve this question? Update the question so it's on-topic for Stack Overflow.
Closed 10 years ago.
Improve this question
I've been using the default MediaWiki's built-in WikiEditor, but I found about this: http://www.mediawiki.org/wiki/VisualEditor:Test
I can't find where it says what do I need to do to get it running. Do I need some configuration properties on my LocalSettings.php file?
Here are some instructions: http://www.mediawiki.org/wiki/Extension:VisualEditor.
You also need to install a Parsoid server. Here are instructions for that: http://www.mediawiki.org/wiki/Parsoid#Getting_started.
Closed. This question is off-topic. It is not currently accepting answers.
Want to improve this question? Update the question so it's on-topic for Stack Overflow.
Closed 10 years ago.
Improve this question
My Apache install is having issues starting with PHP? The code below kills the start.
#PHP INSTALL START
PHPIniDir "C:\ws\php"
LoadModule php5_module "C:\ws\php\php5apache2_2.dll"
#PHP END
When I remove it, it starts fine. I really need PHP working, so I can get back to work.
Chances are, that php5apache2_2.dll is missing, or incompatible with your version of Apache.
In any case, check your startup logs for the reason of failure.