Page 33 of 70 FirstFirst ... 23313233343543 ... LastLast
Results 321 to 330 of 695
  1. #321
    Join Date
    Jan 2011
    Posts
    5
    Plugin Contributions
    0

    Default Re: AutoFacebook [Support]

    go ...go...goooo.... it's OKKKKKKKK

  2. #322
    Join Date
    Apr 2010
    Location
    London, UK
    Posts
    38
    Plugin Contributions
    1

    Default Re: AutoFacebook [Support]

    Hi all, been using AutoFacebook Lite for a while now with no problems up until recently, now my images dont appear on the facebook post... eveything else is fine just no image of the product!
    Anyone had this issue?
    Clever AV Ltd
    http://www.cleveravltd.co.uk
    ZenCart 1.3.9g

  3. #323
    Join Date
    Feb 2009
    Posts
    46
    Plugin Contributions
    0

    Default Re: AutoFacebook [Support]

    I moved my autoFacebook low on the update_product.php page so my items will update even when I edit an item because I like to duplicate and edit for new items, but sometime I just change quantities because of ebay sales and don't want them to update at facebook as a new item, sometimes I have zero quantity and don't want to disable the item.

    I changed some files, just so you know, I know just enough PHP to get me in trouble sometimes.

    I may add to the lanquage files later, but for me this works

    Here is what I edited-
    admim/includes/modules/product/
    collect-Info.php
    preview_info.php

    collect-Info.php- I added in bold and where
    Code:
           <tr>
                <td colspan="2"><?php echo zen_draw_separator('pixel_trans.gif', '1', '10'); ?></td>
              </tr>
               <tr>
                <td class="main">Facbook Update </td>
                <td class="main"> <input type="checkbox" name="facebook_update" value="Yes" />Check for yes</td>
    
              </tr>          <tr>
                <td class="main"><?php echo TEXT_PRODUCTS_WEIGHT; ?></td>
                <td class="main"><?php echo zen_draw_separator('pixel_trans.gif', '24', '15') . '&nbsp;' . zen_draw_input_field('products_weight', $pInfo->products_weight); ?></td>
              </tr>
    preview_info.php
    Code:
    //auto replace with defined missing image
                if ($_POST['products_image_manual'] != '') {
                  $products_image_name = $_POST['img_dir'] . $_POST['products_image_manual'];
                  $pInfo->products_name = $products_image_name;
                }
                if ($_POST['image_delete'] == 1 || $products_image_name == '' and PRODUCTS_IMAGE_NO_IMAGE_STATUS == '1') {
                  echo zen_image(DIR_WS_CATALOG_IMAGES . PRODUCTS_IMAGE_NO_IMAGE, $pInfo->products_name, SMALL_IMAGE_WIDTH, SMALL_IMAGE_HEIGHT, 'align="right" hspace="5" vspace="5"') . $pInfo->products_description;
                } else {
                  echo zen_image(DIR_WS_CATALOG_IMAGES . $products_image_name, $pInfo->products_name, SMALL_IMAGE_WIDTH, SMALL_IMAGE_HEIGHT, 'align="right" hspace="5" vspace="5"') . $pInfo->products_description;
                }
              ?>
     
    <!--BO FACEBOOK-->
                 </tr><tr>
              <td><hr></td> 
                </tr><tr>
    <td class="smallText">
     <?php
    if ($facebook_update == "Yes") {
                      echo "Facebook Will be Updated.";
    
                    } else {
                      echo "Facebook Will NOT be Updated.";
    
                    }
     ?>
                   </td>  </tr>
               <tr>
    <!--EO FACEBOOK-->      
     </td>
          </tr>
    <?php
          if ($pInfo->products_url) {
    ?>
          <tr>
            <td><?php echo zen_draw_separator('pixel_trans.gif', '1', '10'); ?></td>
          </tr>
          <tr>
            <td class="main"><?php echo sprintf(TEXT_PRODUCT_MORE_INFORMATION, $pInfo->products_url); ?></td>
          </tr>
    <?php
    admim/includes/modules/

    update_product.php around the autofacebook code
    Code:
    if ($facebook_update == "Yes") {
                    //AutoFacebook light
    
    $pageID = "edited"; //received when signing up.
    
    // no need to edit below this line
    $prod_vars = array(
    'page'              =>  $pageID,
    'prod_image'        =>  $_POST['products_image'],
    'price'             =>  $products_price,
    'prod_name'         =>  $_POST['products_name'][$_SESSION['languages_id']],
    'prod_description'  =>  $_POST['products_description'][$_SESSION['languages_id']],
    'prod_url'          =>  '/index.php?main_page=product_info&cPath=' . $current_category_id . '&products_id=' . $products_id, );
    $url = "http://apps.htmyell.com/fbpageid/sendvars.php";
    $ch = curl_init();
    curl_setopt($ch, CURLOPT_URL, $url);
    curl_setopt($ch, CURLOPT_POST, 1);
    curl_setopt($ch, CURLOPT_POSTFIELDS, $prod_vars);
    curl_setopt($ch, CURLOPT_HEADER, 0);
    curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
    $result = curl_exec($ch);
    curl_close($ch);
    if (isset($result['success'])){ $messageStack->add_session('Facebook was successfully updated!', 'success');}
    else if (isset($result['error'])){ $messageStack->add_session('Facebook Error: '.$result['error'], 'error'); }
    else { $messageStack->add_session('Error: '. $result, 'error');  }
    //end of autoFacebook
      }
    else
    	{
    	     
    	}	
    Actually in the if else, I don't know if something has to be placed in there when the box isn't checked.

    No database updates needed, but make copies of the three files edited incase you have to go back and use them

    Dan

  4. #324
    Join Date
    Jul 2010
    Location
    Syria
    Posts
    32
    Plugin Contributions
    0

    Default Re: AutoFacebook [Support]

    First of all, thanks a lot for this great contribution.
    I have just finished installing it and it works great, except the photo which doesn't appear.
    why?

    thanks to all
    Movies City | مدينة الأفلام
    http://www.mc4sy.com

  5. #325
    Join Date
    Dec 2005
    Location
    Cincinnati Ohio
    Posts
    1,030
    Plugin Contributions
    13

    Default Re: AutoFacebook [Support]

    Quote Originally Posted by bahaa87 View Post
    First of all, thanks a lot for this great contribution.
    I have just finished installing it and it works great, except the photo which doesn't appear.
    why?

    thanks to all
    Check your images extension facebook developer apps only accepts .jpg, .gif and .png.

    .bmp's are not accepted and if I am correct I think zencart does not like the bmp format that well either.
    Last edited by knuckle-101; 20 Feb 2011 at 08:14 AM.
    PCI Certified Web Hosting - ControlScan, Security Metrics (Platinum Partner), McAfee, TrustKeeper
    Business Class Web Hosting - Linux and cPanel Powered

  6. #326
    Join Date
    Jul 2010
    Location
    Syria
    Posts
    32
    Plugin Contributions
    0

    Default Re: AutoFacebook [Support]

    Quote Originally Posted by knuckle-101 View Post
    Check your images extension facebook developer apps only accepts .jpg, .gif and .png.

    .bmp's are not accepted and if I am correct I think zencart does not like the bmp format that well either.
    but it's jpg..
    and I see different stores which use this addon and they have the same problem.

    my FB Page is:
    http://www.facebook.com/home.php?sk=...07267829327027

    thank you
    Movies City | مدينة الأفلام
    http://www.mc4sy.com

  7. #327
    Join Date
    Dec 2005
    Location
    Cincinnati Ohio
    Posts
    1,030
    Plugin Contributions
    13

    Default Re: AutoFacebook [Support]

    Okay the next thing to check is the image size that you are uploading to zencart is it a very large image that you are using for your products? If so resize them to smaller and see if that works

    Also note .JPG is not accepted by facebook either it is has to be .jpg small letter extensions just something to check for.

    I am using this module on several websites and I cannot see where the problem maybe as you see here all images are working and these were posted a few hours ago looking for any issues
    PCI Certified Web Hosting - ControlScan, Security Metrics (Platinum Partner), McAfee, TrustKeeper
    Business Class Web Hosting - Linux and cPanel Powered

  8. #328
    Join Date
    Jul 2010
    Location
    Syria
    Posts
    32
    Plugin Contributions
    0

    Default Re: AutoFacebook [Support]

    Quote Originally Posted by knuckle-101 View Post
    Okay the next thing to check is the image size that you are uploading to zencart is it a very large image that you are using for your products? If so resize them to smaller and see if that works

    Also note .JPG is not accepted by facebook either it is has to be .jpg small letter extensions just something to check for.

    I am using this module on several websites and I cannot see where the problem maybe as you see here all images are working and these were posted a few hours ago looking for any issues
    when I see your page, I find the same problem. then I decided to use a program to open blocked site.
    then the page work correctly.
    I note that the images use URL contain ( "Proxy" word ), in my country "Syria" ISP block all URL contain this word "proxy".
    can I use different URL?
    the URL is:
    http://platform.ak.fbcdn.net/www/app_full_proxy.php?app=153337474723207&v=1&size=z&cksum=9676546873abf610597c1c4f90ea1873&src=h ttp%3A%2F%2Fcart.mc4sy.com%2Fimages%2Ffilms2%2F1053.jpg

    thank you very much
    Movies City | مدينة الأفلام
    http://www.mc4sy.com

  9. #329
    Join Date
    Dec 2005
    Location
    Cincinnati Ohio
    Posts
    1,030
    Plugin Contributions
    13

    Default Re: AutoFacebook [Support]

    The proxy address you mention is part of the Facebook Platform unfortunately there is nothing that can be done on the zencart side.
    PCI Certified Web Hosting - ControlScan, Security Metrics (Platinum Partner), McAfee, TrustKeeper
    Business Class Web Hosting - Linux and cPanel Powered

  10. #330
    Join Date
    Jul 2010
    Location
    Syria
    Posts
    32
    Plugin Contributions
    0

    Default Re: AutoFacebook [Support]

    Quote Originally Posted by knuckle-101 View Post
    The proxy address you mention is part of the Facebook Platform unfortunately there is nothing that can be done on the zencart side.
    ok thank you
    Movies City | مدينة الأفلام
    http://www.mc4sy.com

 

 
Page 33 of 70 FirstFirst ... 23313233343543 ... LastLast

Similar Threads

  1. v151 autofacebook help
    By sean g in forum All Other Contributions/Addons
    Replies: 0
    Last Post: 27 Nov 2014, 08:52 PM
  2. AutoFacebook and Canada Post Modules
    By DJLQD in forum General Questions
    Replies: 0
    Last Post: 27 Feb 2013, 02:32 PM
  3. v139h Help please with Autofacebook - Support thread is no longer supported
    By shags38 in forum General Questions
    Replies: 0
    Last Post: 18 Jul 2012, 01:49 PM
  4. Problems with AutoFacebook
    By amanda099 in forum All Other Contributions/Addons
    Replies: 1
    Last Post: 31 Aug 2010, 10:12 AM
  5. AutoFacebook OG 1.3.9 addon problems
    By eOstrE in forum All Other Contributions/Addons
    Replies: 0
    Last Post: 7 Jul 2010, 09:44 AM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
disjunctive-egg
Zen-Cart, Internet Selling Services, Klamath Falls, OR