Skip to Content.
Sympa Menu

lyceum-users - [Lyceum-users] Lyceum subdomain problem

lyceum-users AT lists.ibiblio.org

Subject: Lyceum-users mailing list

List archive

Chronological Thread  
  • From: "chandran" <chandran AT sgstechnologie.com>
  • To: <lyceum-users AT lists.ibiblio.org>
  • Subject: [Lyceum-users] Lyceum subdomain problem
  • Date: Sat, 2 Dec 2006 09:31:33 +0530

Hi,
 
Yes I configured the wildcard subdomain DNS Entry. I am attaching the config file with this. One thing is login the site is working fine and other links are working fine.  Only thing is view the blog is getting blank page (that is for after login and when clicking the blog in the portal.php page).
 
 
Rgds
Chandran
Software Engineer
SGS Technologie Pvt Ltd.,
www.sgstechnologie.com
<?php

define('DB_NAME', 'databasename'); // The name of the database
define('DB_USER', 'username'); // Your MySQL username
define('DB_PASSWORD', 'password'); // ...and password
define('DB_HOST', 'localhost'); // hostname or IP of database server
(possibly 'localhost')


// You can have multiple installations in one database if you give each a
unique prefix
$table_prefix = ''; // Only numbers, letters, and underscores please!

// The web path to the base of lyceum (where portal.php is sitting), with NO
TRAILING SLASH
// Something like '' or '/lyceum' or '/src/lyceum'
define('WEBROOT', '');
// The IP address or equivalent domain name of the server (MUST have 1 or
more periods - 'localhost' will not work!)
define('MAINDOMAIN', 'xxx.yyy.com');
define('DEFAULTBLOG', false);

//you probably want to leave these as they are
define('DEFAULT_PS', '/%year%/%monthnum%/%day%/%postname%/');
define('DEFAULT_TEMPLATE', 'default');
define('DEFAULT_STYLESHEET', 'default');

// Subdomain options
// See doc/Installation.txt and doc/Subdomains.txt for more info
define('SUBDOMAINS', true);

//log files
define('USELOGS', true); //If you are having problems installing on windows,
make this 'false'
define('LOGDIR', '/tmp/'); //path MUST have trailing slash. example: /tmp/
define('SECURITYLOG', LOGDIR . 'lyceum_security_log');
define('TRACELOG', LOGDIR . 'lyceum_trace_log');
define('ERRORLOG', LOGDIR . 'lyceum_error_log');
define('QUERYLOG', LOGDIR . 'lyceum_query_log');

// Change this to localize WordPress. A corresponding MO file for the
// chosen language must be installed to wp-includes/languages.
// For example, install de.mo to wp-includes/languages and set WPLANG to 'de'
// to enable German language support.
define ('WPLANG', '');

//should lyceum NOT create an obfuscated filename for wp-comments-post.php at
install time? (if you don't know what this means just leave it)
define('SAVEWPCOMMENTS', true);

////////////////////////////////////////////////////////////////////////////////
// Debug options. If you aren't a developer or a tester, leave them as they
are.

//this should be set to false for production
define('LYCEUMDEBUG', false);
define('LOGQUERIES', LYCEUMDEBUG);

// Allow installation to be overwritten from the web? (this is handy for
developers who do frequent re-installs)
// THIS MUST BE FALSE FOR PRODUCTION
define('WEBREINSTALL', false);

//print trace information?
define('TRACE', LYCEUMDEBUG);

assert_options(ASSERT_CALLBACK, 'assert_handler');
assert_options(ASSERT_ACTIVE, LYCEUMDEBUG);//enable assert() evaluation
assert_options(ASSERT_WARNING, 0);//issue a PHP warning for each failed
assertion
assert_options(ASSERT_QUIET_EVAL, 0);//disable error_reporting during
assertion expression evaluation
assert_options(ASSERT_BAIL, 1);//terminate execution on failed assertions

ini_set('error_reporting', E_ALL ^ E_NOTICE );
ini_set('display_errors', '0');
ini_set('log_errors', '1');
ini_set('error_log', ERRORLOG);

define('SITETITLE', 'sitename.com');

//define('SITETITLE', 'Local Lyceum Development Installation');
//define('ADMINEMAIL', 'put your email address here');

/* That's all, stop editing! Happy blogging. */

require_once(PRIVATEROOT . 'lib/wp-settings.php');
?>



Archive powered by MHonArc 2.6.24.

Top of Page