Unpacking Software Livestream

Join our monthly Unpacking Software livestream to hear about the latest news, chat and opinion on packaging, software deployment and lifecycle management!

Learn More

Chocolatey Product Spotlight

Join the Chocolatey Team on our regular monthly stream where we put a spotlight on the most recent Chocolatey product releases. You'll have a chance to have your questions answered in a live Ask Me Anything format.

Learn More

Chocolatey Coding Livestream

Join us for the Chocolatey Coding Livestream, where members of our team dive into the heart of open source development by coding live on various Chocolatey projects. Tune in to witness real-time coding, ask questions, and gain insights into the world of package management. Don't miss this opportunity to engage with our team and contribute to the future of Chocolatey!

Learn More

Calling All Chocolatiers! Whipping Up Windows Automation with Chocolatey Central Management

Webinar from
Wednesday, 17 January 2024

We are delighted to announce the release of Chocolatey Central Management v0.12.0, featuring seamless Deployment Plan creation, time-saving duplications, insightful Group Details, an upgraded Dashboard, bug fixes, user interface polishing, and refined documentation. As an added bonus we'll have members of our Solutions Engineering team on-hand to dive into some interesting ways you can leverage the new features available!

Watch On-Demand
Chocolatey Community Coffee Break

Join the Chocolatey Team as we discuss all things Community, what we do, how you can get involved and answer your Chocolatey questions.

Watch The Replays
Chocolatey and Intune Overview

Webinar Replay from
Wednesday, 30 March 2022

At Chocolatey Software we strive for simple, and teaching others. Let us teach you just how simple it could be to keep your 3rd party applications updated across your devices, all with Intune!

Watch On-Demand
Chocolatey For Business. In Azure. In One Click.

Livestream from
Thursday, 9 June 2022

Join James and Josh to show you how you can get the Chocolatey For Business recommended infrastructure and workflow, created, in Azure, in around 20 minutes.

Watch On-Demand
The Future of Chocolatey CLI

Livestream from
Thursday, 04 August 2022

Join Paul and Gary to hear more about the plans for the Chocolatey CLI in the not so distant future. We'll talk about some cool new features, long term asks from Customers and Community and how you can get involved!

Watch On-Demand
Hacktoberfest Tuesdays 2022

Livestreams from
October 2022

For Hacktoberfest, Chocolatey ran a livestream every Tuesday! Re-watch Cory, James, Gary, and Rain as they share knowledge on how to contribute to open-source projects such as Chocolatey CLI.

Watch On-Demand

Downloads:

12,163

Downloads of v 8.2.1:

27

Last Update:

05 Jan 2023

Package Maintainer(s):

Software Author(s):

  • PHP Authors

Tags:

php web service nssm admin

PHP Service

Downloads:

12,163

Downloads of v 8.2.1:

27

Maintainer(s):

Software Author(s):

  • PHP Authors

PHP Service

  • 1
  • 2
  • 3

Some Checks Are Exempted or Have Failed

Not All Tests Have Passed


Validation Testing Failed


Verification Testing Exemption:

Details

Scan Testing Pending

WARNING

This package was rejected on 09 Feb 2023. The reviewer chocolatey-ops has listed the following reason(s):

pilskalns (maintainer) on 05 Jan 2023 00:23:29 +00:00:

User 'pilskalns' (maintainer) submitted package.

chocolatey-ops (reviewer) on 05 Jan 2023 00:55:31 +00:00:

php-service has failed automated validation.

Requirements

Requirements represent the minimum quality of a package that is acceptable. When a package version has failed requirements, the package version requires fixing and/or response by the maintainer. Provided a Requirement has flagged correctly, it must be fixed before the package version can be approved. The exact same version should be uploaded during moderation review.

  • Private environment variables are used in automation scripts. Please correct this More...

chocolatey-ops (reviewer) on 25 Jan 2023 00:56:55 +00:00:

We've found php-service v8.2.1 in a submitted status and waiting for your next actions. It has had no updates for 20 or more days since a reviewer has asked for corrections. Please note that if there is no response or fix of the package within 15 days of this message, this package version will automatically be closed (rejected) due to being stale.

Take action:

  • Log in to the site and respond to the review comments.
  • Resubmit fixes for this version.
  • If the package version is failing automated checks, you can self-reject the package.

If your package is failing automated testing, you can use the chocolatey test environment to manually run the verification and determine what may need to be fixed.

Note: We don't like to see packages automatically rejected. It doesn't mean that we don't value your contributions, just that we can not continue to hold packages versions in a waiting status that have possibly been abandoned. If you don't believe you will be able to fix up this version of the package within 15 days, we strongly urge you to log in to the site and respond to the review comments until you are able to.

chocolatey-ops (reviewer) on 09 Feb 2023 01:00:35 +00:00:

Unfortunately there has not been progress to move php-service v8.2.1 towards an approved status within 15 days after the last review message, so we need to close (reject) the package version at this time. If you want to pick this version up and move it towards approval in the future, use the contact site admins link on the package page and we can move it back into a submitted status so you can submit updates.

Status Change - Changed status of package from 'submitted' to 'rejected'.

Description

PHP is a popular general-purpose scripting language that is especially suited to web development.
Fast, flexible and pragmatic, PHP powers everything from your blog to the most popular websites in the world.

This package will install PHP (Hypertext Preprocessor) with it's default values. Its installed trough dependencies and those can't be passed with extra arguments.


tools\chocolateyinstall.ps1
$ErrorActionPreference = 'Stop'; # stop on all errors
$version    = $env:chocolateyPackageVersion -replace "-beta.*",""
$installDir = "$($env:ChocolateyToolsLocation)\php{0}" -f ($version -replace '\.').Substring(0,2)

# Actual service installation
$ErrorActionPreference = 'SilentlyContinue'
net stop php 2>&1 | Out-Null
sc delete php 2>&1 | Out-Null

nssm stop php 2>&1 | Out-Null
nssm remove php confirm 2>&1 | Out-Null
nssm install php "$($installDir)\php-cgi.exe" 2>&1 | Out-Null
nssm set php Description "PHP, service managed by NSSM" 2>&1 | Out-Null
nssm set php AppDirectory  "$installDir" 2>&1 | Out-Null
nssm set php AppParameters "-b """"127.0.0.1:9000""""" 2>&1 | Out-Null
nssm start php 2>&1 | Out-Null
$ErrorActionPreference = 'Stop'

# Throw some barebones info for user
Write-Host @"
Config file "$installDir\php.ini"

PHP now can be started and stopped as regular Windows service or through NSSM command interface
Type one of those commands in CMD or PowerShell for php-service control:

"@  -ForegroundColor Green
Write-Host "To start service:" -ForegroundColor Green
Write-Host "    net start php" -ForegroundColor Yellow
Write-Host "    or" -ForegroundColor Green
Write-Host "    nssm start php" -ForegroundColor Yellow

Write-Host "To stop service:" -ForegroundColor Green
Write-Host "    net stop php" -ForegroundColor Yellow
Write-Host "    or" -ForegroundColor Green
Write-Host "    nssm stop php" -ForegroundColor Yellow

Write-Host "To restart service do both:" -ForegroundColor Green
Write-Host "    net stop php" -ForegroundColor Yellow
Write-Host "    net start php" -ForegroundColor Yellow
Write-Host "    or" -ForegroundColor Green
Write-Host "    nssm stop php" -ForegroundColor Yellow
Write-Host "    nssm start php" -ForegroundColor Yellow
tools\chocolateyuninstall.ps1
$ErrorActionPreference = 'SilentlyContinue'
nssm stop php 2>&1 | Out-Null
nssm remove php confirm 2>&1 | Out-Null
$ErrorActionPreference = 'Stop'

No results available for this package. We are building up results for older packages over time so expect to see results. If this is a new package, it should have results within a day or two.

Add to Builder Version Downloads Last Updated Status
PHP Service 8.1.9 118 Thursday, August 4, 2022 Approved
PHP Service 8.1.8 99 Saturday, July 9, 2022 Approved
PHP Service 8.1.7 130 Thursday, June 9, 2022 Approved
PHP Service 8.1.6 112 Thursday, May 12, 2022 Approved
PHP Service 8.1.5 107 Thursday, April 14, 2022 Approved
PHP Service 8.1.4 160 Thursday, March 17, 2022 Approved
PHP Service 8.1.3 159 Thursday, February 17, 2022 Approved
PHP Service 8.1.2 132 Tuesday, February 8, 2022 Approved
PHP Service 8.0.10 364 Thursday, August 26, 2021 Approved
PHP Service 8.0.8 161 Thursday, July 1, 2021 Approved
PHP Service 8.0.7 144 Thursday, June 3, 2021 Approved
PHP Service 8.0.6 124 Friday, May 7, 2021 Approved
PHP Service 8.0.1 272 Thursday, January 7, 2021 Approved
PHP Service 8.0.0.20201221 116 Tuesday, December 22, 2020 Approved
PHP Service 7.4.13 375 Wednesday, November 25, 2020 Approved
PHP Service 7.4.9 362 Thursday, August 6, 2020 Approved
PHP Service 7.4.7 262 Thursday, June 11, 2020 Approved
PHP Service 7.4.6 204 Saturday, May 30, 2020 Approved
PHP Service 7.4.5 260 Thursday, April 16, 2020 Approved
PHP Service 7.4.3 316 Saturday, February 22, 2020 Approved
PHP Service 7.4.2 248 Thursday, January 23, 2020 Approved
PHP Service 7.4.1 1417 Wednesday, December 25, 2019 Approved
PHP Service 7.4.0 304 Thursday, November 28, 2019 Approved
PHP Service 7.3.12 208 Thursday, November 21, 2019 Approved
PHP Service 7.3.11 251 Wednesday, October 23, 2019 Approved
PHP Service 7.3.10 215 Thursday, September 26, 2019 Approved
PHP Service 7.3.9 218 Thursday, August 29, 2019 Approved
PHP Service 7.3.8 200 Thursday, August 8, 2019 Approved
PHP Service 7.3.7 207 Thursday, July 4, 2019 Approved
PHP Service 7.3.6 245 Thursday, May 30, 2019 Approved
PHP Service 7.3.5 221 Thursday, May 2, 2019 Approved
PHP Service 7.3.3 228 Friday, March 15, 2019 Approved
PHP Service 7.3.1 259 Friday, January 11, 2019 Approved
PHP Service 7.3.0 289 Friday, December 7, 2018 Approved
PHP Service 7.2.12 247 Friday, November 9, 2018 Approved
PHP Service 7.2.10 260 Friday, September 14, 2018 Approved
PHP Service 7.2.9 296 Friday, August 17, 2018 Approved
PHP Service 7.2.8 273 Thursday, July 19, 2018 Approved
PHP Service 7.2.7 284 Thursday, June 21, 2018 Approved
php-service (Install) 7.2.5 368 Wednesday, June 6, 2018 Approved

  • Core:
    . Fixed bug GH-9905 (constant() behaves inconsistent when class is undefined).
    (cmb)
    . Fixed bug GH-9918 (License information for xxHash is not included in
    README.REDIST.BINS file). (Akama Hitoshi)
    . Fixed bug GH-9890 (OpenSSL legacy providers not available on Windows). (cmb)
    . Fixed bug GH-9650 (Can't initialize heap: [0x000001e7]). (Michael Voříšek)
    . Fixed potentially undefined behavior in Windows ftok(3) emulation. (cmb)
    . Fixed GH-9769 (Misleading error message for unpacking of objects). (jhdxr)

  • Apache:
    . Fixed bug GH-9949 (Partial content on incomplete POST request). (cmb)

  • FPM:
    . Fixed bug GH-9959 (Solaris port event mechanism is still broken after bug
    #66694). (Petr Sumbera)
    . Fixed bug #68207 (Setting fastcgi.error_header can result in a WARNING).
    (Jakub Zelenka)
    . Fixed bug #80669 (FPM numeric user fails to set groups). (Jakub Zelenka)
    . Fixed bug GH-8517 (Random crash of FPM master process in
    fpm_stdio_child_said). (Jakub Zelenka)

  • Imap:
    . Fixed bug GH-10051 (IMAP: there's no way to check if a IMAP\Connection is
    still open). (Girgias)

  • MBString:
    . Fixed bug GH-9535 (The behavior of mb_strcut in mbstring has been changed in
    PHP8.1). (Nathan Freeman)

  • Opcache:
    . Fixed bug GH-9968 (Segmentation Fault during OPCache Preload).
    (Arnaud, michdingpayc)

  • OpenSSL:
    . Fixed bug GH-9997 (OpenSSL engine clean up segfault). (Jakub Zelenka)
    . Fixed bug GH-9064 (PHP fails to build if openssl was built with --no-ec).
    (Jakub Zelenka)
    . Fixed bug GH-10000 (OpenSSL test failures when OpenSSL compiled with
    no-dsa). (Jakub Zelenka)

  • Pcntl:
    . Fixed bug GH-9298 (Signal handler called after rshutdown leads to crash).
    (Erki Aring)

  • PDO_Firebird:
    . Fixed bug GH-9971 (Incorrect NUMERIC value returned from PDO_Firebird).
    (cmb)

  • PDO/SQLite:
    . Fixed bug #81740 (PDO::quote() may return unquoted string). (CVE-2022-31631)
    (cmb)

  • Session:
    . Fixed GH-9932 (session name silently fails with . and [). (David Carlier)

  • SPL:
    . Fixed GH-9883 (SplFileObject::__toString() reads next line). (Girgias)
    . Fixed GH-10011 (Trampoline autoloader will get reregistered and cannot be
    unregistered). (Girgias)

  • SQLite3:
    . Fixed bug #81742 (open_basedir bypass in SQLite3 by using file URI). (cmb)

  • TSRM:
    . Fixed Windows shmget() wrt. IPC_PRIVATE. (Tyson Andre)


Discussion for the PHP Service Package

Ground Rules:

  • This discussion is only about PHP Service and the PHP Service package. If you have feedback for Chocolatey, please contact the Google Group.
  • This discussion will carry over multiple versions. If you have a comment about a particular version, please note that in your comments.
  • The maintainers of this Chocolatey Package will be notified about new comments that are posted to this Disqus thread, however, it is NOT a guarantee that you will get a response. If you do not hear back from the maintainers after posting a message below, please follow up by using the link on the left side of this page or follow this link to contact maintainers. If you still hear nothing back, please follow the package triage process.
  • Tell us what you love about the package or PHP Service, or tell us what needs improvement.
  • Share your experiences with the package, or extra configuration or gotchas that you've found.
  • If you use a url, the comment will be flagged for moderation until you've been whitelisted. Disqus moderated comments are approved on a weekly schedule if not sooner. It could take between 1-5 days for your comment to show up.
comments powered by Disqus