Paco
March 19, 2018, 11:47am
1
Hi there! I’ve installed a fresh Pydio 8 on a IIS web server which uses PHP5 by default.
In order to use php7 in pydio, I’ve configured his directory PHP version, which adds:
handerls
<handlers>
<clear />
<add name="PHP_via_FastCGI1" path="*.php" verb="GET,HEAD,POST" modules="FastCgiModule" scriptProcessor="C:\Program Files (x86)\PHP\v7.0\php-cgi.exe" resourceType="Either" />
<add name="PHP54_via_FastCGI" path="*.php" verb="GET,HEAD,POST" modules="FastCgiModule" scriptProcessor="C:\Program Files (x86)\PHP\v5.4\php-cgi.exe" resourceType="Either" />
<add name="PHP_via_FastCGI" path="*.php" verb="GET,HEAD,POST" modules="FastCgiModule" scriptProcessor="C:\Program Files\PHP\v7.1\php-cgi.exe" resourceType="Either" />
<add name="PHP53_via_FastCGI" path="*.php" verb="GET,HEAD,POST" modules="FastCgiModule" scriptProcessor="C:\Program Files (x86)\PHP\v5.3\php-cgi.exe" resourceType="Either" />
<add name="ASPClassic" path="*.asp" verb="GET,HEAD,POST" modules="IsapiModule" scriptProcessor="%windir%\system32\inetsrv\asp.dll" resourceType="File" />
<add name="SecurityCertificate" path="*.cer" verb="GET,HEAD,POST" modules="IsapiModule" scriptProcessor="%windir%\system32\inetsrv\asp.dll" resourceType="File" />
<add name="ISAPI-dll" path="*.dll" verb="*" modules="IsapiModule" resourceType="File" requireAccess="Execute" allowPathInfo="true" />
This file has been truncated. show original
to my web.config file.
So… when I try to generate a public link, I got a Error HTTP 404.0 - Not Found
I’ve read some post where people are asked to use a default web.config file, and I use that with the andler made by IIS manager…
I’m not sure how to proced, I don’t have web-config files knowledge.
Any help? Thanks
Paco
March 22, 2018, 1:52pm
2
Ey! I’ve solved that!!
Excuse the inconvenience but it was all my mistake. Seems that the web server were I have installed pydio uses a IIS extensión to reescribe URLs and one of the rules that the main web uses to reescribe URLs was creating conflicts with the open links routing of pydio.
I just had to disable that rule in pydio main directory and childrens and all works propertly