I need this feature too.by ghadamyari - Nginx Mailing List - English
Yes It is not possible, It is a basis on nginxby ghadamyari - Nginx Mailing List - English
Hi there, I found that nginx include "+" in urls to send them tl script. For example : search/Apache+to+nginx.html is a rewrite, nginx send "Apache+to+nginx" instead of "Apache to nginx" to the script. Apache and lighttpd have not this problem.by ghadamyari - Migration from Other Servers
Hello, I can do it for you. contact me at farbodmanager yahoo.comby ghadamyari - Requests for Paid Services
You can easily set your script to send email from smtp ( localhost: 25 ) For example joomla has this function in Global Settings -> Server . I tried to use /sbin/sendmail to send email in php-fpm with chroot jail but it was unsuccessfull. On Aug 20, 5:09 pm, Illó Gábor <stagel...@gmail.com> wrote: > 2010/8/20 Jérôme Loyet <m...@fatbsd.com>: > > > > > yes it iby ghadamyari - Php-fpm Mailing List - English
Hello, I ask nginx developement to make webmin module of nginx. Webmin make it possible to manage server easily using GUI instead of CLI. Many other famouse linux project have a built-in webmin module such as : - CSF ( Config Server Firewall ) - Awstats - Webalizer - ... Many thanksby ghadamyari - Ideas and Feature Requests
I think it is not possible !by ghadamyari - Nginx Mailing List - English
Hi there, I have found that nginx buffers php output and do not send them to clients untill the php execution get complete. I want to turn off ' fastcgi_buffers ' in my nginx. What should I do ? This fastcgi_buffers cause that nginx get incompatible with some php scripts such as : - Net2FTP http://net2ftp.com - RapidLeech http://rapidleech.googlecode.com Currently I have runned net2ftpby ghadamyari - Nginx Mailing List - English
Hello, You should set the SCRIPT_FILENAME manually. Using default variables does not return the right path always. Simply change the following line : *fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_* *name; *to this ine : *fastcgi_param SCRIPT_FILENAME */var/www*$fastcgi_script_* *name;* And it should works correctly. Regards, Mostafa Ghadamyari On 21 February 2010 07:09, xengby ghadamyari - Php-fpm Mailing List - English
Hello, Please share your /etc/php-fpm.conf and configuration file of your site for nginx here ( rapidshare, ... ) . On 19 February 2010 23:54, xengine <nginx-forum@nginx.us> wrote: > If i run the script on php-cgi mode at console works like a charm! > > I'm using nginx version: nginx/0.8.33 > > and fastcgi script on ubuntu: > > > #! /bin/sh > # > ### BEGIN INby ghadamyari - Php-fpm Mailing List - English
Please type "top" and copy the output here . Maybe the PHPFCGI do not start correctly. You are suggested to see Apache error log and php-fpm error log. On 5 February 2010 16:20, Michael Shadle <mike503@gmail.com> wrote: > use nginx :) > > honestly i don't want to take the time to try to figure out apache+fastcgi > :( > > On Fri, Feb 5, 2010 at 1:26 AM, Dan Feketby ghadamyari - Php-fpm Mailing List - English
I have tested both php-fpm and supervisord. php-fpm works fine and uses very less memory but supervisord and php-cgi processes which have runed by supervisord uses more than 200mb memory just to host 3 websites. I suggest php-fpm. Can anyone convert apache module of suphp to a nginx module in order to nginx users be able to use it???by ghadamyari - How to...
Hello, Thank you for your hopeful answer. What configuration should I do? I have do the following ones but do not work for me : 1- in /etc/php-fpm.conf change chroot value to /home/site.com 2- in /etc/nginx/nginx.conf -> changed the SCRIPT_FILE_NAME value from /home/site.com$script_name to $script_name As I said, phpinfo() worked in this case but I got a "Cannot Connect To Database"by ghadamyari - Php-fpm Mailing List - English
I have testet php-fpm with nginx. I have runned 3 virtual host with different users and pools. Unfortunately It can not block php shells.I have upload a php shell and could access whole system! php-fpm has a chroot() function which can be used to chroot php process and can block php shells but then you can not use mysql because php process is chrooted to home directory. Is it possible to converby ghadamyari - How to...
Hello, I have 2 questions : 1- I want to host 3 different user sites on my server. I am using php v5.3.1 and nginx v0.8.32 on my server. I have used php-fpm to run each virtual host with his own user (<section name="pool">) and his own gateway ( 127.0.0.1:900x ). Everything is good but only problem is this fact that when I use chroot () in php-fpm to restrict user access, It doesby ghadamyari - Php-fpm Mailing List - English
Hello, Can I use php-fpm with other mods like php-suhosin? php-suhosin needs to patch the php. php-fpm need to patch the php too. Can we use both of them together? Don't it make any problems? Thank youby ghadamyari - Php-fpm Mailing List - English
If your dedicated server has a control panel (plesk) you will not need it. The control panel just take your memory and it is not needed at all. I suggest to reload it and install a fresh CentOS minimal . I have installed wordpress mu with subdomain support on nginx. I can do it for you if you want. yahoo id : misi123m mail : nginx@gigfa.comby ghadamyari - How to...
Hi there, I found that this tutorial has a bug and does not work on CentOS. I changed this line : daemon --user $PHPUSER --pidfile $PIDFILE "env - $E $PHPFCGI -q -b $FCGIADDR:$FCGIPORT &> /dev/null &" to echo daemon --user $PHPUSER --pidfile $PIDFILE "env - $E $PHPFCGI -q -b $FCGIADDR:$FCGIPORT &> /dev/null &" And it is the result : Stby ghadamyari - How to...