Jump to content

dsmith

Members
  • Posts

    5
  • Joined

  • Last visited

dsmith's Achievements

Newbie

Newbie (1/14)

1

Reputation

  1. Ah makes sense, thank you very much!
  2. Hey there - Just looking for a quick clarification; I've pulled the latest version of phpVms from https://github.com/nshahzad/phpVMS which seems to still use the tpls. I started looking into the Simpilot Group addons, and the Addon manager, etc all seem to be using php templates. So after a quick check of the Simpilot repos i see https://github.com/DavidJClark/phpvms_5.5.x which seems to be using php templates. So - Which phpvms should i be checking out for 'new' install? Which is 'official'? I am a bit confused. I am starting to assume i should be using the DavidJClark fork in order to use the Simpilot plugins, but will that cause other compatibility issues? Thanks!
  3. As an update to this thread; Here's an excerpt example nginx config (assuming php-fpm). Dont copy and paste this. location ~ \.php(.*)$ { fastcgi_split_path_info ^(.+\.php)(/.+)$; include /etc/nginx/fastcgi_params; fastcgi_pass unix:/var/lib/php5-fpm/web5.sock; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; fastcgi_intercept_errors on; } This also assumes your php.ini (in this case for php-fpm) has: cgi.fix_pathinfo=0 At this point i have everything working. Hope that helps someone.
  4. I find nginx/php-fpm to be much faster at...everything. If no one else has documentation, i will try and post my config once it's working completely.
  5. Hey there - I am just curious if anyone has any documentation about how to make phpVMS and nginx play nicely together. Does anyone have a sample config? Thanks!
×
×
  • Create New...