Zen Cart Logo
Forums / All Other Contributions/Addons / AutoFacebook [Support]

AutoFacebook [Support]

Views: 140,955

Results 421 to 440 of 691
28 Sep 2011, 08:31
#421
wakeleymb avatar

wakeleymb

New Zenner

Join Date:
Sep 2011
Location:
Sydney, Australia
Posts:
48
Plugin Contributions:
0

AutoFacebook [Support]

is anyone here having issues with their autofacebook lite? it worked for me until days ago and nothing has changed except i think, a newer fb layout??

29 Sep 2011, 15:29
#422
kitcorsa avatar

kitcorsa

Totally Zenned

Join Date:
Feb 2007
Posts:
1,724
Plugin Contributions:
0

Re: AutoFacebook [Support]

im having trouble installing this as facebook developers screen have changed andf all the button are now different. Can some create new installation instructions please.

stuck on step 4

  1. For now we need to click "Web Site" on the left (not that i can see) and edit our **"Site URL" **and our "Site Domain".
    The Site URL is simply your store's web address followed by a '/' forward slash. So it should look something like "http://mystore.com/"
    Your Site Domain is just your domain name 'dot' whatever and could look like "mystore.com". No "http://", no "www.", and no "/"

  2. Now click "Facebook Integration" on the left (i cant see this either). Towards the bottom you should see "Installable to?" (or this). Uncheck "Users"****(or this) and add a check next to "Facebook Pages"****(or this) instead.

06 Oct 2011, 10:52
#423
wakeleymb avatar

wakeleymb

New Zenner

Join Date:
Sep 2011
Location:
Sydney, Australia
Posts:
48
Plugin Contributions:
0

Re: AutoFacebook [Support]

Hey, I just filled out what I can and FINALLY got Autofacebook 2.0 to work without any problems. Those other things you have to look for, I couldnt find and doesnt seem to exist.

kitcorsa:

im having trouble installing this as facebook developers screen have changed andf all the button are now different. Can some create new installation instructions please.

stuck on step 4

  1. For now we need to click "Web Site" on the left (not that i can see) and edit our **"Site URL" **and our "Site Domain".
    The Site URL is simply your store's web address followed by a '/' forward slash. So it should look something like "http://mystore.com/"
    Your Site Domain is just your domain name 'dot' whatever and could look like "mystore.com". No "http://", no "www.", and no "/"

  2. Now click "Facebook Integration" on the left (i cant see this either). Towards the bottom you should see "Installable to?" (or this). Uncheck "Users"****(or this) and add a check next to "Facebook Pages"****(or this) instead.

30 Oct 2011, 07:29
#424
kendog819 avatar

kendog819

New Zenner

Join Date:
Oct 2011
Posts:
16
Plugin Contributions:
0

Re: AutoFacebook [Support]

Trying to use AFB Lite. But can't seem to install the app thru facebook.

I try to install as "My Page" and i get error message from FB telling me: "To access this page, you'll need to switch from using Facebook as your page to using Facebook as yourself."

so i click the button "Continue as Me", it redirects me back to http://apps.facebook.com/storeupdater/

but when i click the dropdown to "Select Page" i get the error popup saying "The page at http://jamielife.ipower..com says Please create a facebook page before continuing or login on your page's account....but i can't do it as my page. :dontgetit

Any help appreciated,
Ken

15 Nov 2011, 18:00
#425
lissa8723 avatar

lissa8723

New Zenner

Join Date:
Feb 2010
Posts:
24
Plugin Contributions:
0

Re: AutoFacebook [Support]

This is kind of off subject but for the life of me I can not figure out how to post my own thread for help.... Sorry....

My question if anyone can help me,
I added this code to my product_info_display.php

<iframe src="http://www.facebook.com/plugins/like.php?href=<?php echo urlencode(zen_href_link(zen_get_info_page((int)$_GET['products_id']), 'cPath='.(int)$_GET['cPath'].'&products_id=' . (int)$_GET['products_id'])); ?>&layout=standard&show_faces=false&width=450&action =like&colorscheme=light" scrolling="no" frameborder="0" allowTransparency="true" style="border:none; overflow:hidden; width:450px; height:40px"></iframe>

It works fine, but in the process it took away my rounded corners at the bottom of my page. Does anyone know how to fix that?

Sorry again, I cant figure out how to post a new topic/question.
Thanks anyone who replies :)

17 Nov 2011, 01:56
#426
armie avatar

armie

New Zenner

Join Date:
Apr 2007
Posts:
28
Plugin Contributions:
0

Re: AutoFacebook [Support]

I am not so sure how to view my app? I am looking at it but I don't see any of my products...

17 Nov 2011, 02:23
#427
armie avatar

armie

New Zenner

Join Date:
Apr 2007
Posts:
28
Plugin Contributions:
0

Re: AutoFacebook [Support]

I added a new product to my website and it automatically populate into my facebook app using the autofacebook of course... but my problem is in facebook it is showing different price value than what I have listed. Why is this?

17 Nov 2011, 02:31
#428
armie avatar

armie

New Zenner

Join Date:
Apr 2007
Posts:
28
Plugin Contributions:
0

Re: AutoFacebook [Support]

BillyBoyle:

:clap: :flex: :bigups: :wink: :shocking: :cool:

Got it, SO ******* happy with myself right now.

I've worked out how to format php output from zen cart to facebook and twitter. :P

Look for this line:

$price = $products_price;

> ```
    $vat = .20;
    $price = (number_format(( $products_price + $products_price * $vat), 2, '.', ''));
```that sorts facebook.
> 
> if your using Autotweet as well
> 
> look for this line:
> ```
if ($showprice){ $message .=  ' Only $' . $products_price . '.'; }
```and edit to this:
>  ```
if ($showprice){ $message .= ' Only £' . number_format(( $products_price + $products_price * $vat), 2, '.', '') . ' !'; }
```That only tookm me two days, bring on the hard stuff.


what file is this? which file do I need to edit?
17 Nov 2011, 02:33
#429
willie_bee avatar

willie_bee

Zen Follower

Join Date:
Mar 2011
Posts:
386
Plugin Contributions:
0

Re: AutoFacebook [Support]

armie:

I added a new product to my website and it automatically populate into my facebook app using the autofacebook of course... but my problem is in facebook it is showing different price value than what I have listed. Why is this?

Are you asking why it shows your SALE PRICE as opposed to your REGULAR PRICE? If that is the question then it is because this mod shows the REGULAR PRICE only.
What I did was remove the pricing code so it only shows the pic and product name on FB.
This will force users to click on it to go to your website to see the price.

17 Nov 2011, 07:39
#430
billyboyle avatar

billyboyle

Zen Follower

Join Date:
Jul 2011
Location:
Glasgow, Scotland
Posts:
115
Plugin Contributions:
1

Re: AutoFacebook [Support]

lissa8723:

This is kind of off subject but for the life of me I can not figure out how to post my own thread for help.... Sorry....

My question if anyone can help me,
I added this code to my product_info_display.php

<iframe src="http://www.facebook.com/plugins/like.php?href=<?php echo urlencode(zen_href_link(zen_get_info_page((int)$_GET['products_id']), 'cPath='.(int)$_GET['cPath'].'&products_id=' . (int)$_GET['products_id'])); ?>&layout=standard&show_faces=false&width=450&action =like&colorscheme=light" scrolling="no" frameborder="0" allowTransparency="true" style="border:none; overflow:hidden; width:450px; height:40px"></iframe>

It works fine, but in the process it took away my rounded corners at the bottom of my page. Does anyone know how to fix that?

Sorry again, I cant figure out how to post a new topic/question.
Thanks anyone who replies :)

Hi not an expert, but you might want to remove the style declaration "border:none; from your added code. It may be affecting all borders.

Might also need to post a link to your site so people can get an overall look.
Posted via Mobile Device

17 Nov 2011, 12:28
#431
wakeleymb avatar

wakeleymb

New Zenner

Join Date:
Sep 2011
Location:
Sydney, Australia
Posts:
48
Plugin Contributions:
0

Re: AutoFacebook [Support]

So everything is working fine and dandy for me at the moment with autofacebook and autoweet.. What I would like though and i'm no programmer is that when fb automatically updates, it gives us a "like" and "comment" option, but no share. Any idea if this can be programmed in to the code?

18 Nov 2011, 22:27
#432
billyboyle avatar

billyboyle

Zen Follower

Join Date:
Jul 2011
Location:
Glasgow, Scotland
Posts:
115
Plugin Contributions:
1

Re: AutoFacebook [Support]

armie:

what file is this? which file do I need to edit?

First the easy question:
The price you are seeing is the price without TAX or VAT or whatever added.

The mod to the file corrects that. so that if you live in a country where we are not used to seeing TAX added at the sale end you don't give miss-leading prices to customers.

Sorry willie bee it has nothing to do with sales.

This would be edits to the file whatever-admin/includes/modules/update_product.php.

You would be looking for the section that starts

  //// INSERT PRODUCT-TYPE-SPECIFIC *UPDATES* HERE //////
  ///////////////////////////////////////////////////////

//AutoFacebook

in this section look below your:
$app_id = "8888888888888"; //given when you created app
$app_secret = "a5a5a5a5a5a5a5a5a5a5a5a5a5a"; //given when you created app
$page_id = "1234567890987654321"; //obtained from running facebook_authorization.php from your browser
$page_token = "blahblahblahblah"; //long number obtained from facebook_authorization.php
$store_name = "AML Candles"; // store name i.e. "Mary's Car Shop", or "MikesCupcakes.com."
$store_url = 'http://amlcandles.co.uk'; //path to your store without the trailing "/"
$cur = '£'; //change to your currency symbol. Assumes symbol comes in front of numbers
$new_message = "Scented Soy Wax Candles!"; // change to whatever or leave the same. i.e "New Cupcake!"

There is a line that says (ironically)
// No Need to edit below here.
about line number 116: (in my version anyway)

below that you'll see

About line 123: $price = $products_price; //this is what you need to edit first

Add the lines of code you seen in the other post and that sorts the VAT issue for both Auto-Facebook and Auto-Tweet.

If you need to clean up your postings to get rid of the html from your product descriptions you need to edit the line.

around line 119:

There were a few optional line commented out there so just pick the one that looks similar to:

$products_description = strip_tags($products_description);

That cleans things up if you haven't done so already.

:cool::cool:

18 Nov 2011, 22:32
#433
billyboyle avatar

billyboyle

Zen Follower

Join Date:
Jul 2011
Location:
Glasgow, Scotland
Posts:
115
Plugin Contributions:
1

Re: AutoFacebook [Support]

wakeleymb:

So everything is working fine and dandy for me at the moment with autofacebook and autoweet.. What I would like though and i'm no programmer is that when fb automatically updates, it gives us a "like" and "comment" option, but no share. Any idea if this can be programmed in to the code?

Think you might find that Facebook would have something to say about an app that auto liked every update you posted.

Have looked at the service offered by http://www.addthis.com/

here it is in place if you've not see it before One of My Candles

Might be what your looking for.

09 Dec 2011, 22:05
#434
svehex avatar

svehex

New Zenner

Join Date:
Mar 2011
Posts:
6
Plugin Contributions:
0

Re: AutoFacebook [Support]

My auto facebook has stopped working. It still says it successfully updated Facebook, but nothing there's no post on Facebook. Any ideas?

11 Dec 2011, 06:13
#435
svehex avatar

svehex

New Zenner

Join Date:
Mar 2011
Posts:
6
Plugin Contributions:
0

Re: AutoFacebook [Support]

I finally got it working. I had to add the info to the files again. It had disappeared.

But I do have one question:

Why does facebook_authorization.php give me the wrong page ID?
My app hasn't changed (app ID 168001189921933)

I know I've entered the correct information in facebook_authorization.php, but when I run it, it gives me the wrong page ID.

When I add new products, the posts appear of the page for hekse.no (page ID 215552908467021), but my app is for the page heksebua (page ID ). I could change the page ID in update_product.php manually, but I don't know what to do about the page token.

31 Dec 2011, 10:15
#437
frankyboy avatar

frankyboy

New Zenner

Join Date:
Dec 2011
Posts:
20
Plugin Contributions:
0

Re: AutoFacebook [Support]

I am after a little help please.

I updated my password on facebook and now get the following error in Zen Cart when I insert a new product:

Facebook Error: Error validating access token: The session has been invalidated because the user has changed the password.

I have run the facebook_authorization.php which generates a new token and page i.d then there is a message which says.

Now just copy and paste these codes to the included update_product.php.

I cannot find the update_product.php. file anywhere in my cpanel, i have looked under includes, modules but i cannot see the file i need to edit.

My other question is how do i edit the php file if and when i ever find it?

Any help would be most welcome since i have spent the last 5 hours on this with now joy

31 Dec 2011, 10:38
#438
cybagirl avatar

cybagirl

Zen Follower

Join Date:
Jul 2009
Posts:
119
Plugin Contributions:
0

Re: AutoFacebook [Support]

The update_product.php file is located in the following directory.

admin - includes - modules

Also use an FTP program such as Flash FXP to find the file and not cPanel.

To edit this file the best program I have found is EditPad Lite and it's free! You can download a copy from the following URL.

http://www.editpadlite.com/

31 Dec 2011, 13:17
#439
frankyboy avatar

frankyboy

New Zenner

Join Date:
Dec 2011
Posts:
20
Plugin Contributions:
0

Re: AutoFacebook [Support]

CybaGirl:

The update_product.php file is located in the following directory.

admin - includes - modules

Also use an FTP program such as Flash FXP to find the file and not cPanel.

To edit this file the best program I have found is EditPad Lite and it's free! You can download a copy from the following URL.

http://www.editpadlite.com/

Thank you for the reply, As a complete newbie to this i have no idea where to find the admin - includes - modules?

I log into my cpanel and i can find includes-modules which is located in my public html but i cannot for the life of me find the admin folder, as stated im a complete newbie.

Where do i find the admin folder is that somewhere within the cpanel or is it located in my zencart?

01 Jan 2012, 13:39
#440
billyboyle avatar

billyboyle

Zen Follower

Join Date:
Jul 2011
Location:
Glasgow, Scotland
Posts:
115
Plugin Contributions:
1

Re: AutoFacebook [Support]

Hi Frankie, Good New Year to you.

You might be better of downloading to your PC and working from there. AFAIK cPanel can cuase some problems with editing php files.

Pop over here and download FileZilla this sets up the a ftp client on your PC.

You can then safely work on a local copy of your files with out running a risk of breaking your site without a backup in place.

Depending on the server your Shop is loaded on the Admin folder could be named; admin or zc_admin, or if someone set it up for you that had a bit of smarts and was security aware it could be called anything from adimnfrankie to z23mdi6kd9nvh502nfutoagbbb4, the more obscure the name the better basic security you have.

Once tou have a local copyit may be easlier to find update_product.php by searching for the file name.

Hope this helps. Billy