You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@shindig.apache.org by ch...@apache.org on 2008/06/26 15:03:26 UTC

svn commit: r671889 - /incubator/shindig/trunk/php/config/container.php

Author: chabotc
Date: Thu Jun 26 06:03:25 2008
New Revision: 671889

URL: http://svn.apache.org/viewvc?rev=671889&view=rev
Log:
SHINDIG-409 base_path config missed the ../ reference. Also cleaned up the other path directives

Modified:
    incubator/shindig/trunk/php/config/container.php

Modified: incubator/shindig/trunk/php/config/container.php
URL: http://svn.apache.org/viewvc/incubator/shindig/trunk/php/config/container.php?rev=671889&r1=671888&r2=671889&view=diff
==============================================================================
--- incubator/shindig/trunk/php/config/container.php (original)
+++ incubator/shindig/trunk/php/config/container.php Thu Jun 26 06:03:25 2008
@@ -63,15 +63,15 @@
 	'P3P' => 'CP="CAO PSA OUR"', 
 	
 	// The locations of the various required components on disk. If you did a normal svn checkout there's no need to change these
-	'base_path' => realpath(dirname(__FILE__)),
-	'features_path' => realpath(dirname(__FILE__)) . '/../../features/',
-	'container_path' => realpath(dirname(__FILE__)) . '/../../config/',
-	'javascript_path' => realpath(dirname(__FILE__)) . '/../../javascript/',
-	'container_config' => realpath(dirname(__FILE__)) . '/../../config/container.js',
+	'base_path' => realpath(dirname(__FILE__).'/..').'/',
+	'features_path' => realpath(dirname(__FILE__) . '/../../features').'/',
+	'container_path' => realpath(dirname(__FILE__) . '/../../config').'/',
+	'javascript_path' => realpath(dirname(__FILE__) . '/../../javascript').'/',
+	'container_config' => realpath(dirname(__FILE__) . '/../../config').'/container.js',
 
 	// The OAuth SSL certificates to use, and the pass phrase for the private key  
-	'private_key_file' => realpath(dirname(__FILE__)) . '/../certs/private.key', 
-	'public_key_file' => realpath(dirname(__FILE__)) . '/../certs/public.crt', 
+	'private_key_file' => realpath(dirname(__FILE__) . '/../certs').'/private.key', 
+	'public_key_file' => realpath(dirname(__FILE__) . '/../certs').'/public.crt', 
 	'private_key_phrase' => 'partuza', 
 
 	// Force these libraries to be external (included through <script src="..."> tags), this way they could be cached by the browser