Jump to content


Corporate Sponsors


Latest News: (loading..)

lmjacques

Member Since 06 Jul 2005
Offline Last Active Jun 12 2011, 15:49
-----

Posts I've Made

In Topic: Automatically send data feed to Froogle

29 May 2011, 20:02

View PostMikeSchmidt, on 07 May 2011, 15:38, said:

Thanks for the help. It was a setting in the googlefeeder.php

/the following allow skipping certain items
define('OPTIONS_IGNORE_PRODUCT_ZERO', 0); //0 = include products with qty of 0 in output, 1 = ignore products with qty of

by default was set to 1, as my store doesn't use the qty field so it only output the 1 item.

Thanks again.

I have done this yet despite having 3 Products the feed comes out with just the heading and absolutely no products

below is my code

define('SEO_ENABLED','false');    //Change to 'false' to disable if Ultimate SEO URLs is not installed
define('FEEDNAME', 'cakes_feed.txt');       //from your googlebase account
define('DOMAIN_NAME', 'www.jacquescakes.co.uk'); //your correct domain name (don't include www unless it is used)
define('FTP_USERNAME', 'l_jacques'); //created from within your googlebase account
define('FTP_PASSWORD', 'Sbarnes1'); //created from within your googlebase account
define('FTP_ENABLED', (isset($_GET['noftp']) ? '0' : '0'));      //set to 0 to disable
define('CONVERT_CURRENCY', '0'); //set to 0 to disable - only needed if a feed in a difference currecny is required
define('CURRENCY_TYPE', 'GBP');  //(eg. USD, EUR, GBP)
define('DEFAULT_LANGUAGE', 1);   //Change this to the id of your language.  BY default 1 is english
define('QUOTES_CATEGORY_NAME',''); //if the Quotes contribution is installed, enter the name of the quotes category here

define('OPTIONS_ENABLED', 1);
define('OPTIONS_ENABLED_AGE_RANGE', 0);
define('OPTIONS_ENABLED_ATTRIBUTES', 0);
define('OPTIONS_ENABLED_BRAND', 0);
define('OPTIONS_ENABLED_CONDITION', 1);
define('OPTIONS_ENABLED_CURRENCY', 0);
define('OPTIONS_ENABLED_EXPIRATION', 1);
define('OPTIONS_ENABLED_FEED_LANGUAGE', 0);
define('OPTIONS_ENABLED_FEED_QUANTITY', 0);
define('OPTIONS_ENABLED_GTIN', 0);
define('OPTIONS_ENABLED_GOOGLE_UTM', 0);
define('OPTIONS_ENABLED_ISBN', 0);
define('OPTIONS_ENABLED_MADE_IN', 0);
define('OPTIONS_ENABLED_MANUFACTURER', 0);         //displays the manufacturer name
define('OPTIONS_ENABLED_PAYMENT_ACCEPTED', 0);
define('OPTIONS_ENABLED_PRODUCT_MODEL', 1); //displays the product model
define('OPTIONS_ENABLED_PRODUCT_TYPE', 0);
define('OPTIONS_ENABLED_SHIPPING', 0);
define('OPTIONS_ENABLED_INCLUDE_TAX', 1);
define('OPTIONS_ENABLED_UPC', 0);
define('OPTIONS_ENABLED_WEIGHT', 0);

//the following only matter if the matching option is enabled above.
define('OPTIONS_AGE_RANGE', '20-90 years');
define('OPTIONS_BRAND', '');
define('OPTIONS_CONDITION', 'New');  //possible entries are New, Refurbished, Used
define('OPTIONS_DEFAULT_CURRENCY', 'GBP');
define('OPTIONS_DEFAULT_FEED_LANGUAGE', 'en');
define('OPTIONS_DEFAULT_GOOGLE_UTM', '?utm_source=google&utm_medium=banner&utm_campaign=product'); //see http://www.google.com/support/googleanalytics/bin/answer.py?hl=en&answer=55578
define('OPTIONS_GTIN', '');
define('OPTIONS_ISBN', '');
define('OPTIONS_MADE_IN', 'UK');
define('OPTIONS_MANUFACTURERS_NAME_IGNORE', ''); //list if comma separated manufacturer names to be skipped - e.g. Matrox,Fox
define('OPTIONS_PAYMENT_ACCEPTED_METHODS', '');  //Acceptable values: Cash, Check, GoogleCheckout, Visa, MasterCard, AmericanExpress, Discover, wiretransfer
define('OPTIONS_PRODUCT_TYPE', 'full'); //full means the full category path (i.e., hardware,printers), anything else, or blank, means just the products category (i.e., printers)

//the following is for the shipping override option - enter multiple values separated by a comma
//Format entries follow. A colon must be present for each field, whether it is entered or not.
// COUNTRY - OPTIONAL - If country isn't included, we'll assume the shipping price applies to the target country of the item. If region isn't included, the shipping price will apply across the entire country.
// REGION  - OPTIONAL - blank for entire country, otherwise, us two-letter State (CA), full zip code (90210) or wildcard zip code (902*)
// SERVICE - OPTIONAL - The service class or delivery speed, i.e. ground
// PRICE   - REQUIRED - Fixed shipping price (assumes the same currency as the price attribute)
define('OPTIONS_SHIPPING_STRING', 'US:FL:Ground:7.00'); //says charge tax to US for residents of Florida at 5% and don't apply tax to shipping

//the following is for the tax override option - enter multiple values separated by a comma
//Format entries follow. A colon must be present for each field, whether it is entered or not.
// COUNTRY  - OPTIONAL - country the tax applies to - only US for now
// REGION   - OPTIONAL - blank for entire country, otherwise, us two-letter State (CA), full zip code (90210) or wildcard zip code (902*)
// TAX      - REQUIRED - default = 0 (e.g. for 5.76% tax use 5.76)
// SHIPPING - OPTIONAL - do you charge tax on shipping - choices are y or n
define('OPTIONS_TAX_STRING', 'US:FL:5.00:n'); //says charge tax to US for residents of Florida at 5% and don't apply tax to shipping

define('OPTIONS_UPC', '');
define('OPTIONS_WEIGHT_ACCEPTED_METHODS', 'lb'); //Valid units include lb, pound, oz, ounce, g, gram, kg, kilogram.

//the following allow skipping certain items
define('OPTIONS_IGNORE_PRODUCT_ZERO', 0);  //0 = include products with qty of 0 in output, 1 = ignore products with qty of 0

In Topic: v2.3 Seperate Image Directory for Products

29 May 2011, 19:36

I have looked through the manual and found the following information, but when I go to upload an image I am unable to type in the actual field

Step 1 - Create folders in your catalog/images folder to match the categories on your harddrive and also on your server. Based on the demo catalog you would have folders called dvd, gt_interactive, hewlett_packard in the catalog/images folder.

Note: Set the permissions on these additional folders to 777.


Step 2 - Upload the images to the appropriate folder on your site. 
So dvd images goes in /images/dvd, gt_interactive in /images/gt_interactive and any subcategories desired.

Step 3 - When images are added via the item description page (in the admin panel), select the location via the browse button. Right before the image name - change the backward slash to a forward slash .

In Topic: Select Product Image Directory & Instant Update For Products

29 May 2011, 18:00

I have tried using this on osCommerce V2.3.1 but for some reason when ever I try to upload new images even if I select a directory it only uploads the images to the main images box. Did anyone get it working with V2.3.1

Cheers

In Topic: v2.3 Seperate Image Directory for Products

29 May 2011, 10:40

View Postlmjacques, on 22 May 2011, 12:27, said:

I am using osCommerce v2.3.1 and when I generate a product and upload the image it goes in to the stock image folder but over time I will be adding hundreds of products and I need to be able to find them easily and want to add them in to different sub directories. I have checked the forum and can't find an answer to resolving this issue.

Any help gratefully received.

Thank you
bump

In Topic: Google XML Sitemap SEO

25 May 2011, 18:02

View PostJack_mcs, on 24 May 2011, 23:02, said:

The confiugre file is not setup correct. See this thread on how to set it up.

I'm probably being really thick but can't see where the issue is, my site is a sub folder.