jeremyBass
Forum Replies Created
-
So for line 46 is: this is what i put
if (!is_object($bp->cubepoint)) { $bp->cubepoint = new stdClass; } $bp->cubepoint->id = 'cubepoint';
and for line 103 is: I put
if (!is_object($bp)) { $bp = new stdClass; } if (!is_object($bp->cubepoint)) { $bp->cubepoint = new stdClass; } $bp->cubepoint->slug = get_option( 'bp_slug_cp_bp' );
That should clear it. Hope that helps
Forum: Plugins
In reply to: [CubePoints Buddypress Integration] Don't work in WP3.5ok take that back.. i did run in to the other error.. i had to add
if (!is_object($bp)) { $bp = new stdClass; } if (!is_object($bp->cubepoint)) { $bp->cubepoint = new stdClass; }
to clear it
Cheers -Jeremyok take that back.. i did run in to the other error.. i had to add
if (!is_object($bp)) { $bp = new stdClass; } if (!is_object($bp->cubepoint)) { $bp->cubepoint = new stdClass; }
to clear it
Cheers -Jeremyso i had the same issue.. oddly I’m surprised you didn’t have more of those.. I had a whole bunch of them show up as I upgraded from php 5.3.3 to 5.4.11 .. so the fix
if (!is_object($bp->cubepoint)) {
$bp->cubepoint = new stdClass;
}
note this clears Warning: Creating default object from empty value in …./bp-cubepoint-core.php on line 46 .. you’ll have to look to see what is needed for line 103 as i didn’t get that Warning.add that in and you clear the warning.
Hope that helps. Cheers -JeremyForum: Plugins
In reply to: [CubePoints Buddypress Integration] Don't work in WP3.5so i had the same issue.. oddly I’m surprised you didn’t have more of those.. I had a whole bunch of them show up as I upgraded from php 5.3.3 to 5.4.11 .. so the fix
if (!is_object($bp->cubepoint)) {
$bp->cubepoint = new stdClass;
}
note this clears Warning: Creating default object from empty value in …./bp-cubepoint-core.php on line 46 .. you’ll have to look to see what is needed for line 103 as i didn’t get that Warning.add that in and you clear the warning.
Hope that helps. Cheers -JeremyForum: Plugins
In reply to: [Jetpack - WP Security, Backup, Speed, & Growth] Spinner conflictWell I’ll To be honest I’m not a fan of that approve to over come a IE css3 shim over a main stream 100x more usage plugin such as jQuery Ui, but i get what you mean.
Thanks for the help
Cheers -JeremyForum: Plugins
In reply to: [Jetpack - WP Security, Backup, Speed, & Growth] Spinner conflictHello, that seems to do the trick. Question, since jquery ui is a plugin that is much higher on the list of used jquery plugins, maybe there could just be a rename so that the conflict is permanently resolved?
Regardless thanks for the help.
Cheers -JeremyForum: Plugins
In reply to: [Jetpack - WP Security, Backup, Speed, & Growth] Spinner conflictSure thing. I’ll give it a go, check it out and report back later today. cheers
Forum: Plugins
In reply to: [Magento Wordpress Integration] BuddyPress seems to kill the layoutso trying to work this out.. it seems that
$app = Mage::app(self::getValue(‘websitecode’,’base’), ‘website’);
on line 53 of the mwi.php so .. i got it.. what it took was to make sure the Mage was loaded.. that was the cause..
I changed
public function getApp() { if(class_exists( 'Mage' ) && !is_admin()) { $app = Mage::app(self::getValue('websitecode','base'), 'website'); return $app; } }
to
public function getApp() { $magepath = self::getValue('magepath'); require_once($magepath); umask(0); if(class_exists( 'Mage' ) && !is_admin()) { $app = Mage::app(self::getValue('websitecode','base'), 'website'); return $app; } }
and everything is now working.. simple change.
Forum: Plugins
In reply to: [Magento Wordpress Integration] Error 500 (Internal Server Error)Ok figured it out.. fell little stupid for it thou but for me it was that i did literally what install said to which was replace the line at 90 which was not the whole function lol.. may be for hijacking
Forum: Plugins
In reply to: [Magento Wordpress Integration] Error 500 (Internal Server Error)I have the same issue. Is there a fix or workaround? What did you do zoan?
Magento ver. 1.7.0.2
did the “if(!function_exists(‘__’)) { function __() { return Mage::app()->getTranslator()->translate(func_get_args()); } }” changeChange the path in WP for the Mage.php path and bam setting are blank, and the WP site is down.
Thanks -Jeremy