Hi Eugen;

I followed the installation instruction in details, but I just can't get the image uploaded. The upload dialog box keeps refreshing back with no image upload/preview at all. Try and error leads me to uninstall fbconnect module. It works. Try to reinstall fbconnect again, the same problem reappear.

I would post this on fbconnect issue page as well. Thanks for your time.
(Drupal 6.19, jquery update 1.3.2, jquery ui 1.7.3. jquery plugin 6.1.10)

CommentFileSizeAuthor
#10 fbconnect-integration-893974.patch1.03 KBlarowlan

Comments

franzkewd’s picture

Oops... installed also jquery ui dialog 6.1.10. Posted same issue on fbconnect http://drupal.org/node/893984.

eugenmayer’s picture

Category: bug » support

fbconnect will somehow destroy the headers and probably doesn use the shutdown function right. That problem is know, iam not going to look into this in detail

eugenmayer’s picture

Status: Active » Fixed

listed fbconnect on the incomp section.

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for 2 weeks with no activity.

fluffy’s picture

This is my solution:

function hook_fbconnect_config_alter(&$config)
{
	// the fbconnect and wysiwyg_imageupload do not get along so this removes fbconnect footer additions
	if(arg(0) == 'wysiwyg_imageupload' && arg(1) == 'upload')
	{
		unset($config['api_key']);
		unset($config['secret_api_key']);
	}
	
}

I'm not sure about the if clause, but you get the idea

davident’s picture

Did you place that in template.php or in the .module?

eugenmayer’s picture

Thats a hook an cannot be placed within a theme. So he used a custom module

drupal_acc’s picture

Status: Closed (fixed) » Active
eugenmayer’s picture

Status: Active » Closed (fixed)

it is fixed on my side, i cant do anything to fix this.

larowlan’s picture

Category: support » bug
Status: Closed (fixed) » Needs review
StatusFileSize
new1.03 KB

As mentioned here: http://drupal.org/node/893984#comment-3747964 - the error is with this module no fbconnect.
Here is a patch to fix it, just requires greater degree of specificity on the form selection.

kerberos’s picture

The patch worked for us and resolved the Upload issue. Many thanks!

-Daniel
My Gym & Trainer

ken hawkins’s picture

Status: Needs review » Reviewed & tested by the community

Any hopes in getting @larowlan's patch committed?

It's a fix that works well for me, apparently others on this thread and at http://drupal.org/node/893984#comment-3747964

Being bold and setting to "reviewed."

eugenmayer’s picture

Version: 6.x-2.2 » 6.x-2.9

looks good, yes. Will be in in 2.10

eugenmayer’s picture

Status: Reviewed & tested by the community » Fixed

patch applied thanks for the contribution

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for 2 weeks with no activity.