Topic-icon Jomsocial Photo Upload post to Facebook

Active Subscriptions:

None
13 years 5 months ago #28722 by gormey
Hello, alway when is setup open graph when a user upload a picture to our site, the Jomsocial upload gives me after upload an HTTP error, if i deactivate the open graph upload no problem.

What can i do?
The topic has been locked.
Support Specialist
13 years 5 months ago #28725 by alzander
Hrmm.. Haven't heard of that before. If you're getting an error, can you try setting Error Reporting to "Maximum" and turning GZip compression off in the Joomla Global Configuration area. That will hopefully display a more descriptive error that will help us diagnose things.

Beyond that, can you let us know:
* Have you configured any Objects or Actions for the image upload, or have you just enabled the plugin?
* What version of JomSocial are you using?

Thanks,
Alex
The topic has been locked.
Active Subscriptions:

None
13 years 5 months ago #28727 by gormey
Hello,

I use the last version of Jomsocial 2.6 i deactivate GZIP but it didn't change something an i can't see any post.
I did everything like you discript it you video.
Best Regards
The topic has been locked.
Support Specialist
13 years 5 months ago #28732 by alzander
Did you enable Error Reporting as well? Is there any error message your seeing that you can post for us to see? We haven't heard of this issue, so just need some more information to understand what's going on.

Thanks,
Alex
The topic has been locked.
Active Subscriptions:

None
13 years 5 months ago #28735 by gormey
Yes the Error Reporting is "Maximum" but i don't know where i can find the the Reports. To safe Time, is there a possibility that you take a look if i give you access?
The topic has been locked.
Support Specialist
13 years 5 months ago #28740 by alzander
Gordon,
Sure, send me a Private Message with the details of what to do to duplicate the issue (what page or album you're uploading too, any plugins that need to be disabled or enabled, etc) and we'll gladly look into it more.

You can PM me by clicking the arrow under my picture (<----) and hitting the mail icon.

Thanks,
Alex
The topic has been locked.
Support Specialist
13 years 5 months ago #28889 by alzander
Gordon,
Just got to check out your site. First off, you still have JomSocial's Facebook integration enabled. You should disable that. Please read the our guide for information on how to integrate Facebook for JomSocial .

As to the issue with the upload, we found the issue. The problem was actually that you had the EasyBlog Open Graph plugin enabled, but don't have EasyBlog installed. We'll be updating that plugin to better detect when EasyBlog isn't installed so that it doesn't cause issues like that. Until then though, please leave it disabled.

There is now data in your Activity log, though with errors. You'll need to make sure you go through the full Facebook Open Graph Actions for Joomla configuration guide to setup the upload actions. I'm not sure if you've created the objects and actions in your FB App, but that's where you should start if not.

Hope that helps, and good luck,
Alex
The topic has been locked.
Active Subscriptions:

None
13 years 5 months ago #28896 by gormey
Hey Alex, i setup everything also on facebook erverything is setup correct but in facebook noting happen.
And i got fallowing error on the top for K2 page: Notice: Trying to get property of non-object in /var/www/virtual/myshooting.lu/htdocs/plugins/opengraph/k2/k2.php on line 48 -- > www.myshooting.lu/the-magazine/item/139-condition-générale

i have no plan what happen?
The topic has been locked.
Support Specialist
13 years 5 months ago #28912 by alzander
Can you edit that k2.php file. Around line 48, you'll see a block of code that looks like:
if ($view == 'item')
        {
            $db = JFactory::getDBO();
            $query = "SELECT * FROM #__k2_items WHERE id={$queryVars['id']}";
Change that to the following:
if ($view == 'item')
        {
            $db = JFactory::getDBO();
            $id = intval($queryVars['id']);
            $query = "SELECT * FROM #__k2_items WHERE id={$id}";
That should hopefully fix that warning and fix some other issues you may run into with the K2 Open Graph plugin. We'll be releasing a new version of the plugin soon with that, and a few other minor fixes.

Thanks,
Alex
The topic has been locked.