Show all posts by user
Introduce yourselves
Page 1 of 1 Pages: 1
Results 1 - 5 of 5
Hello
I have php-fpm and nginx how can i disable output buffering, in my php.ini located in /etc/php5/fpm/php.ini
i have this line:
output_buffering = Off
but i still see the output buffering as enabled, is there anywhere else i should look for?
Thanks.
by
madpato
-
How to...
Hello
My name is Patricio and i am amazed with nginx, i used to play with apache, im not a pro in apache either, but im always happy to learn, and i am very ansious to learn more about nginx.
I hope you can help me in my learning process.
Regards.
by
madpato
-
New Member Introductions
I managed to work it out, the problem was i was pointing to the wrong folder, here is the extract in my server file:
location /pma {
root /var/www/pma;
index index.php;
}
location ~ ^/pma.+.php$ {
root /var/www/pma;
fastcgi_pass 127.0.0.1:9000;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
include fastcg
by
madpato
-
How to...
what user you have in your nginx.conf? thats the user that should own your html folder.
by
madpato
-
How to...
Hello
I am new to nginx and i managed to configure a joomla site on my debian lenny vps, its just for testing purposes, but now i want to add phpmyadmin to the mix.
I am using a separated file for my server { } parameters (not inside nginx.conf) located in sites-available sym linked to sites-enabled. I have just one, now my question is, if want to add phpmyadmin like mydomain.com/phpmyadmin do
by
madpato
-
How to...