We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent eed3f94 commit b923f39Copy full SHA for b923f39
deploy.sh
@@ -1,5 +1,7 @@
1
#
2
# deploy php engine to AppFog
3
4
+# you may need to af login first
5
+#
6
cd www
7
af update regexplanet-php
www/status.php
@@ -23,7 +23,7 @@
23
$retVal["phpversion()"] = phpversion();
24
$retVal["sys_getloadavg()"] = sys_getloadavg();
25
$retVal["sys_get_temp_dir()"] = sys_get_temp_dir();
26
- $retVal["version"] = "PHP " . phpversion() . " PCRE " . PCRE_VERSION;
+ $retVal["version"] = phpversion() . " (PCRE " . PCRE_VERSION . ")";
27
28
if (isset($_REQUEST['callback']))
29
{
0 commit comments