Fixed the tweetie's 'require' statements to point to the right location.
authorrsiddharth <rsd@gnu.org>
Sun, 18 Jan 2015 02:01:44 +0000 (21:01 -0500)
committerrsiddharth <rsd@gnu.org>
Sun, 18 Jan 2015 02:01:44 +0000 (21:01 -0500)
modified:   2015/assets/js/tweetie/api/tweet.php
modified:   2015/assets/js/tweetie/api/twitteroauth/twitteroauth.php

2015/assets/js/tweetie/api/tweet.php
2015/assets/js/tweetie/api/twitteroauth/twitteroauth.php

index 66061d593aadada72e2cf1f59ba01a17e46314e5..d02b7aebae3fd08d189f7127946fb47390815665 100644 (file)
@@ -1,6 +1,13 @@
 <?php
-    require_once($_SERVER['DOCUMENT_ROOT'] . "/2015/assets/js/tweetie/api/twitteroauth/twitteroauth.php"); // Path to twitteroauth library
-    require_once($_SERVER['DOCUMENT_ROOT'] . '/2015/assets/js/tweetie/api/config.php'); // Path to config file
+
+if (strpos($_SERVER['SERVER_NAME'], 'localhost')) {
+  $abs_path =  $_SERVER['DOCUMENT_ROOT'];
+}else {
+  $abs_path = '/var/www/static';
+}
+
+require_once($abs_path . "/2015/assets/js/tweetie/api/twitteroauth/twitteroauth.php"); // Path to twitteroauth library
+require_once($abs_path . '/2015/assets/js/tweetie/api/config.php'); // Path to config file
 
     // Check if keys are in place
     if (CONSUMER_KEY === '' || CONSUMER_SECRET === '' || CONSUMER_KEY === 'CONSUMER_KEY_HERE' || CONSUMER_SECRET === 'CONSUMER_SECRET_HERE') {
index 1b1ab4be965d669e3865190745efe40b50b07a41..7ed5ef98a738a54ac1696b545e065ff0e580b727 100644 (file)
@@ -7,7 +7,14 @@
  */
 
 /* Load OAuth lib. You can find it at http://oauth.net */
-require_once($_SERVER['DOCUMENT_ROOT'] . '/2015/assets/js/tweetie/api/twitteroauth/OAuth.php');
+
+if (strpos($_SERVER['SERVER_NAME'], 'localhost')) {
+  $abs_path =  $_SERVER['DOCUMENT_ROOT'];
+}else {
+  $abs_path = '/var/www/static';
+}
+
+require_once($abs_path . '/2015/assets/js/tweetie/api/twitteroauth/OAuth.php');
 
 /**
  * Twitter OAuth class