1

WordpressアプリでTwilioを使用しようとしていますが、機能しませんでしたが、同じコードが別のサイト/サーバーで機能します。

twilio-phpフォルダーといくつかのPHPコードを追加して、wordpressルート内で呼び出しました。また、既存のWordpress PHPコードに含めるコードを追加しましたが、問題がどこにあるのかわかりません。手伝ってくれますか?

<?php              

                require "twilio-php/Services/Twilio.php";
               /* Send an SMS using Twilio. You can run this file 3 different ways:
                *
                * - Save it as sendnotifications.php and at the command line, run 
                *        php sendnotifications.php
                *
                * - Upload it to a web host and load mywebhost.com/sendnotifications.php 
                *   in a web browser.
                * - Download a local server like WAMP, MAMP or XAMPP. Point the web root 
                *   directory to the folder containing this file, and load 
                *   localhost:8888/sendnotifications.php in a web browser.
                */
                // Include the PHP Twilio library. You need to download the library from 
                // twilio.com/docs/libraries, and move it into the folder containing this 
                // file.


                // Set our AccountSid and AuthToken from twilio.com/user/account
                $AccountSid = "********************";
                $AuthToken = "*********************";

               // Instantiate a new Twilio Rest Client
               $client = new Services_Twilio($AccountSid, $AuthToken);

               /* Your Twilio Number or Outgoing Caller ID */
               $from = '**********';

               // make an associative array of server admins. Feel free to change/add your 
               // own phone number and name here.
               $people = array(
                "*********" => "******",
                "**********" => "*********",


               );

              // Iterate over all admins in the $people array. $to is the phone number, 
              // $name is the user's name
              foreach ($people as $to => $name) {
                 // Send a new outgoing SMS */
                 $body = "Hello this is a test message";
                 $client->account->sms_messages->create($from, $to, $body);
                 echo "Sent message to $name";
              }

?>
4

1 に答える 1

0

サーバーログを確認し、curelがサーバーにインストールされていないことに気付きました。次に、サーバーをインストールして再起動すると、正常に動作します。すばらしいサポートに感謝します... Kevin Burkeありがとうございます:D

于 2013-01-28T09:03:39.747 に答える