pasamio / jwcp

Automatically exported from code.google.com/p/jwcp
0 stars 0 forks source link

Fatal Error: Cannot redeclare class SimplePie #30

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 years ago
What steps will reproduce the problem?
1.Opening a child site from the frontend
2.
3.

What is the expected output? What do you see instead?
Expecting to see a site. Instead I See: "Fatal Error: Cannot redeclare class 
SimplePie in .../child/libraries/simplepie/simplepie.php on line 396"

What version of the product are you using? On what operating system?
Using version 1.0.1

Please provide any additional information below.
The backend works fine, merging differences works fine. Conflict with existing 
Joomla class?

Original issue reported on code.google.com by alekseyo...@gmail.com on 11 Jun 2010 at 6:25

GoogleCodeExporter commented 9 years ago
Can you post here the contents (without passwords and usernames) of your master 
configuration.php and child configuration.php files?

Original comment by edo...@gmail.com on 6 Jul 2010 at 11:33

GoogleCodeExporter commented 9 years ago
Thanks for the reply!

Here's the master configuration file:

<?php
class JConfig {
    var $offline = '0';
    var $editor = 'tinymce';
    var $list_limit = '20';
    var $helpurl = 'http://help.joomla.org';
    var $debug = '0';
    var $debug_lang = '0';
    var $sef = '1';
    var $sef_rewrite = '1';
    var $sef_suffix = '0';
    var $feed_limit = '10';
    var $feed_email = 'author';
    var $secret = 'tkWWMADlQ60dF4YW';
    var $gzip = '1';
    var $error_reporting = '0';
    var $xmlrpc_server = '0';
    var $log_path = '.../logs';
    var $tmp_path = '.../tmp';
    var $live_site = '';
    var $force_ssl = '0';
    var $offset = '-8';
    var $caching = '1';
    var $cachetime = '60';
    var $cache_handler = 'file';
    var $memcache_settings = array();
    var $ftp_enable = '0';
    var $ftp_host = '127.0.0.1';
    var $ftp_port = '21';
    var $ftp_user = '';
    var $ftp_pass = '';
    var $ftp_root = '';
    var $dbtype = 'mysql';
    var $host = 'localhost';
    var $user = *****;
    var $db = *****;
    var $dbprefix = 'jos_';
    var $mailer = 'mail';
    var $mailfrom = *****;
    var $fromname = '';
    var $sendmail = '/usr/sbin/sendmail';
    var $smtpauth = '0';
    var $smtpsecure = 'none';
    var $smtpport = '25';
    var $smtpuser = '';
    var $smtppass = '';
    var $smtphost = 'localhost';
    var $MetaAuthor = '1';
    var $MetaTitle = '1';
    var $lifetime = '1440';
    var $session_handler = 'database';
    var $password = ******;
    var $sitename = '';
    var $MetaDesc = '';
    var $MetaKeys = '';
    var $offline_message = 'This site is down for maintenance. Please check back again soon.';
}
?>

And here's the child configuration file:

<?php
class JConfig {
    var $offline = '0';
    var $editor = 'jce';
    var $list_limit = '20';
    var $helpurl = 'http://help.joomla.org';
    var $debug = '0';
    var $debug_lang = '0';
    var $sef = '1';
    var $sef_rewrite = '1';
    var $sef_suffix = '0';
    var $feed_limit = '10';
    var $feed_email = 'author';
    var $secret = '9zF8Xj8h2onbH6wM';
    var $gzip = '1';
    var $error_reporting = '0';
    var $xmlrpc_server = '0';
    var $log_path = '.../logs';
    var $tmp_path = '.../tmp';
    var $live_site = '';
    var $force_ssl = '0';
    var $offset = '-8';
    var $caching = '1';
    var $cachetime = '60';
    var $cache_handler = 'file';
    var $memcache_settings = array();
    var $ftp_enable = '0';
    var $ftp_host = '127.0.0.1';
    var $ftp_port = '21';
    var $ftp_user = '';
    var $ftp_pass = '';
    var $ftp_root = '';
    var $dbtype = 'mysql';
    var $host = 'localhost';
    var $user = *******;
    var $db = ******;
    var $dbprefix = 'wcp_';
    var $mailer = 'mail';
    var $mailfrom = ******;
    var $fromname = '';
    var $sendmail = '/usr/sbin/sendmail';
    var $smtpauth = '0';
    var $smtpsecure = 'none';
    var $smtpport = '25';
    var $smtpuser = '';
    var $smtppass = '';
    var $smtphost = 'localhost';
    var $MetaAuthor = '1';
    var $MetaTitle = '1';
    var $lifetime = '1440';
    var $session_handler = 'database';
    var $password = ******;
    var $sitename = '';
    var $MetaDesc = '';
    var $MetaKeys = '';
    var $offline_message = 'This site is down for maintenance. Please check back again soon.';
}
?>

Original comment by alekseyo...@gmail.com on 7 Jul 2010 at 6:51