Blob Blame History Raw
--- includes/load-yourls.php.orig	2011-08-15 18:37:13.291923132 +0200
+++ includes/load-yourls.php	2011-08-15 18:38:04.011434893 +0200
@@ -2,12 +2,9 @@
 // This file initialize everything needed for YOURLS

 // Include settings
-if( file_exists( dirname( dirname( __FILE__ ) ) . '/user/config.php' ) ) {
-	// config.php in /user/
-	require_once( dirname( dirname( __FILE__ ) ) . '/user/config.php' );
-} elseif ( file_exists( dirname( __FILE__ ) . '/config.php' ) ) {
-	// config.php in /includes/
-	require_once( dirname( __FILE__ ) . '/config.php' );
+if( file_exists('/etc/yourls/config.php') ) {
+	// config.php in /etc/yourls/
+	require_once( '/etc/yourls/config.php' );
 } else {
	// config.php not found :(
	die( '<p class="error">Cannot find <tt>config.php</tt>.</p><p>Please read the <tt>readme.html</tt> to learn how to install YOURLS</p>' );