Http 500 Error Sending a Message using PHP54 and Twilio
<?php // Require the bundled autoload file - the path may need to change // based on where you downloaded and unzipped the SDK require_once __DIR__ . '/twilio-php-master/Twilio/autoload.php'; #require __DIR__ . '/var/sip10/public_html/htdocs/twilio/twilio-php-master/Twilio/autoload.php'; // Use the REST API Client to make requests to the Twilio REST API use Twilio\Rest\Client; // Your Account SID and Auth Token from twilio.com/console $sid = 'ACXXXXXXXXXXXXXXXXXXXXXXXXXX'; $token = 'XXXXXXXXXXXXXXXXXXXXXXX'; $client = new Client($sid, $token); // Use the client to do fun stuff like send text