Three Apache2 web servers running a PHP 5.2.3 web site. We're using Memcache to cache rendered pages but also as the storage engine of the PHP Sessions.
At peak traffic times we're getting Apache segmentation faults on all three web servers and all HTTPD child processes segfault.
My gut tells me that the increased Memcache traffic is stopping…
I'm trying to compile PHP 5.3.3 and after a lot of ups and downs, I finally did 'make' it followed by 'make install' which just shows this:
root@server [/tmp/php-5.3.3]# make install
Installing PHP SAPI module: cgi
Installing PHP CGI binary: /usr/bin/
Installing PHP CLI binary: /usr/bin/
Installing PHP CLI man page: …
Three Apache2 web servers running a PHP 5.2.3 web site. We're using Memcache to cache rendered pages but also as the storage engine of the PHP Sessions.
At peak traffic times we're getting Apache segmentation faults on all three web servers and all HTTPD child processes segfault.
My gut tells me that the increased Memcache…
I've migrated Observium monitoring platform from CentOS 6.5 to CentOS 7 and I've noticed high CPU usage mostly caused by PHP, the CPU load increase when pooling script is running (poller-wrapper.py). Both VMs are running on the same physical host (KVM hypervisor) with exactly the same spec.
I also tested this with a simple PHP…
I have a Windows 2003 Server running IIS with php 5.2.8, I'm trying to use CURL, and it works in CLI mode (if i execute php.exe) but it does not seem to be registered when running under IIS.
The output of PHP info in both CLI and IIS show the same 'Loaded Configuration File', but under IIS it does not give the CURL info box.
…
I have a web server that we use, apache, centos5, php
I have a file called 'include.php' that I need to include in multiple sites.
Eg. I have a site called testsite.co.za, now in the index.php i want to include the include.php file, the include.php is not in the root of testsite.co.za,
Now i created another folder includes…
Just created a new install of Centos 6.0 64-bit on a virtual machine and running on Vmware workstation 8, windows host.
yum install php
service httpd restart
And when trying to run a html file from the var\www\html dir
which just has <?php phpinfo(); ?> in it or pointing browser to localhost. Nothing comes up.
Also…
Hello peeps.
Im having an issues when activating my theme in wordpress. I got this error message:
"Parse error: syntax error, unexpected $end in C:\xampp\htdocs\xampp\wordpress\wp-content\themes\xit\functions.php on line 223".
Whats wrong, I totally dont understand. The script of the php is:
<?php if (…
Hi,
I am executing a php call from javascript(jQuery), php sript is sending result back. The problem is that these php scripts are taking some time (milliseconds), and java script is not waiting for them to finish, thus variables are not getting initialized with correct values.
The code is simple:
…
Some of you may be annoyed with this question, and claim it's unsafe blah blah.
I want to be able to put php into the database and run it. I have to do this because I store page layouts in the database and each our different for each other, however in some cases I want to use dynamic content for…
I have index.php which uploads a file to server and sets several PHP variables (like $target_folder_and_file_name).
index.php also has the following line (it was originally index.html):
<script language="JavaScript" src="main.js.php"></script>
After index.php returned to the…
what is wrong in this code?
when i change drop down list,the grid takes old value of ddl only, not taken newely selected values why?
<%--
$(function() {
$("#StateId").change(function() {
$('#TheForm').submit();
});
});
$(function() {
…
I am having difficulty with the PHP SoapClient() function. The SOAP request is successful, but the response is returned as an object containing a single XML string with the key "any". For example:
<?php
$params = array('strUsername' => 'Test',
…
Hello.
I wanted to ask you about PHP/Apache configuration methods you know, their pros and cons. I will start myself:
---------------- PHP as Apache module----------------
Pros: good speed since you don't need to start exe every time especially in mpm-worker…
Hi, I've been tasked to create a PHP app which accesses an existing PostgreSQL database. This is my first time working with Postgre, not to mention the PHP has already been installed in the Linux box on which the app is supposed to run. I have no experience…
Hi-- I've written a PHP script that runs via SSH and nohup, meant to process records from a database and do stuff with them (eg. process some images, update some rows).
It works fine with small loads, up to maybe 10k records. I have some larger datasets…
I have a Red5 application which defines some public Java methods. When I start the server, an object of the application class gets created. I am trying to call the public methods of the application class from PHP using the existing instance of the Java…
I'm using suexec to ensure that PHP scripts (and other CGI/FastCGI apps) are run as the account holder associated with the relevant virtual host. This allows for securing each users' scripts from reading/writing by other users.
However, it occurs to…
I'm using suexec to ensure that PHP scripts (and other CGI/FastCGI apps) are run as the account holder associated with the relevant virtual host. This allows for securing each users' scripts from reading/writing by other users.
However, it occurs to…
The PHP OCI8 2.0.6 extension for Oracle Database is now
"production" status. The source code is available on PECL. This can be used
immediately to update your OCI8 extension in PHP 5.2 and later
versions. The extension compiles with Oracle 10.2 or…
I am trying to use bing with PHP SOAP. It works fine for short strings. But for larger string I get following error:
Fatal error: Uncaught SoapFault
exception: [a:DeserializationFailed]
The formatter threw an exception while
trying to…
I have a couple of columns in jqGrid with edittype="select". How can I read the option value of the value currently selected in a particular row?
e.g.: When I provide the following option, how do I get "FE" for FedEx, etc.
editoption: {…
I want to be able to keep the row in edit mode even after calling saveRow() function in jQgrid. This is because I want to be able to validate the data being saved and remove the edit mode only when the data has passed its validations. I am…