#_HPg2Z${#B+vld]>@FhFTW +35--J=ځ"O1^f+P>`E>R?G~n Lo2>Z<ff$SF t̘r퇎M|OE3IF{+%J[?@B7hs58xhVYV> 6{r`3+ܐqXNo#Ϝ6Ϸ# JvPc>2tWcqܧ'cCEEJ46+v)5- x+ _XwI llv4Gt1;2a34\㏃#A.o3OKNl+abJY_OM_\L@;j3&.| f0k 5 u#Kvw{s'{-S?>k[4ɐ2Wp܀8,C=EǨY7,A~i] I; Co=zB{x'DYeXx~|l^ -8Q8!*fgF3S޷_P@!"(AÍt88jZGHD8dTrDZƢE8O{%EM?& 'RI(1'ml(Ds&RrgĚ^Xf?u^$S0hڬҺ(c{s'{-S Dl$.C;G E% (Kks.>## CG&z5^$D>Xahsο!]"^g0<.PN*:߿otui?#MQoFw3#V4Ц'{䱜kԏg%bŠB$yg73w{!V]x=S Gkiz%_T0>@P-*'>@ZwYEA9V )Z WM_mR d~ YƱFv N'b~wۯ9Ky{0nBӻzu:uKL;؇wfl2m ~pPUn `&w8;q c=B%D}#n#f~-AȺ^!=L*(}gkw !Yay'ܽ^h6Q$"VqY*#!2'ID8)(ե !oKMS}@k*wQ=*4 61Cz3Ǘ֦ @(9B̠'"Y3 gsx('z)~<ﭤ1YV.2)Qa(05dm%W|"Kq=x_IuA'i]8sLPț7XdA>S$u%6xM@9pN'-cjRo!ϻ(cS:94@]cЉ1X+$tҭ 1ۤ͘E$bp`r`^4*7K44cNZo8BHw֗ihzBO,3 KYU#5W.xݟ ]r$VI* Ҷ@,-<)ݿj(G'^}r@UDb@L[`$g¦Y?a?cTY=A YWXN'Ί~|_$6 45ݰmy펙ACRXIjSDV{&J= ϯQlMaT"k'o `)z]<Nw@Sm=`S*SG 9S#~f&cbT0r0:9 \8Xa]e9=PߛIs>*0q"+j'@L7R*֢t)y>"DE_ 7t7/joVkDž5 7Vчt9o $ҥ!IMeQB!EXM^SYId3 SP3')sZO:,g0$)SLͦeu 6L%P.3= ^B "c~JrG|Rxc XtBB9'N} ҷ%H؍{H/'7wE L)]}u+9Ixb:IHp'Lloߥ8@n#2OB5GDG鷧g[/TQbC7Nd0} ,d'Ck&gO!yD-+ykc%Y[)=cFq yzxPoQm蟈T~[Itd'Cǥ=Ffi5bǙV!qbot%T>z3摝 y.6-FGB-Y"/Аdfփ!ᯒ[1PM, r o ] +:+FͪkuEAsrk b1Seʝ2Wҥ䤌?5̶D_{`kW\ NursQHB8~&x*ZFqE 7B:'agraph">

and modify it to read

LoadModule fcgid_module modules/mod_fcgid.so
  • Find and delete the following lines:

    <FilesMatch "\.php$">
       SetHandler application/x-httpd-php
    </FilesMatch>
    <FilesMatch "\.phps$">
       SetHandler application/x-httpd-php-source
    </FilesMatch>
  • Add the following lines:

    FcgidInitialEnv PHPRC "c:/xampp/php"
    AddHandler fcgid-script .php
    FcgidWrapper "c:/xampp/php/php-cgi.exe" .php
    Remember to adjust the file and directory paths above to reflect valid paths on your system.
  • Restart your Apache server through the XAMPP control panel for your changes to take effect.

  • PHP should now be active using FastCGI. To verify this, browse to the URL http://localhost/xampp/phpinfo.php, which displays the output of the phpinfo() command, and check the "Server API" value near the top of the page.

    image1