I'm hosting a website with Webhostingpad, and I'm running into an issue. As my homepage loads, I am currently making 8 concurrent ajax calls to a php script that returns content being used for the homepage. The 8 ajax calls are calling a file called run.php. The job of this file is just to call a function from a class called amazon, that is defined in another file called amazon.php.
This is the URL being called 8 times via ajax. The only difference between the 8 calls is the query string:
As you can see, I'm passing the function name in the "f" parameter of the url.
The run.php file looks like this:
require_once('amazon.php');
$function_name = $_REQUEST['f'];
$arg_parameter = $_REQUEST['arg'];
$arg_tmp = explode(";", $arg_parameter);
$arg_array = array();
foreach($arg_tmp as $key_value_pair){
$exploded = explode(':', $key_value_pair);
$key = $exploded[0];
$value = $exploded[1];
$arg_array[$key] = $value;
}
$amazon = new amazon();
echo $amazon->$function_name($arg_array);
As you can see, this file is simply calling a function from amazon.php and echoing the result so I can use it in the callback of the ajax function.
Here's the relevant code from amazon.php regarding the getItemsById() function:
class amazon {
private $url;
private $accessKey = 'AKIAISJ2OHTBA888311SD';
private $secretAccessKey = 'RM8EG61w3dLwjymtAEVdfsdiesd883711lskdf';
function __construct(){
$this->url = 'http://webservices.amazon.com/onca/xml?Service=AWSECommerceService&AWSAccessKeyId=' . $this->accessKey . '&AssociateTag=global-18&Version=2011-08-01';
}
public function getItemsById($args = array()){
$itemIds = $args['id'];
$url = $this->url;
$url .= '&Operation=ItemLookup';
$url .= '&ItemId=' . $itemIds;
$url .= '&ResponseGroup=Images,Small,Offers,VariationSummary,EditorialReview';
$signedUrl = $this->amazonSign($url, $this->secretAccessKey);
$returned_xml = file_get_contents($signedUrl);
return $returned_xml;
}
}
As you can see above, this function is calling a URL for amazon.com's API, and returning XML using PHP's file_get_contents() function. My issue is that some of the ajax calls made to run.php are successfully exexcuted, while others are getting HTTP 500 Internal Server Errors. When I run this on my local server, it works fine. When I run it on a development server at my office, it works fine. However, I consistently see this issue on my Webhostingpad server. Some of the ajax calls return HTTP 500 errors.
I've spoken to Webhostingpad support and the only insight they have offered me is that I'm exceeding my CPU/Memory resource limit. The error logs from the server seem to confirm that:
[Tue Feb 19 21:36:39 2013] [error] [client 68.174.126.115] (12)Cannot allocate memory: couldn't create child process: /opt/suphp/sbin/suphp for /home/my-server/public_html/my-domain.com/run.php, referer: http://my-domain.com/
My question for the community is if anything is standing out here as obviously memory intensive? I feel like what I'm doing isn't that out of the oridnary, so I'm trying to figure out if I should be focusing on optimizing my scripts, or if I should simply be looking for another hosting provider.