Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Easy Populate & Products Attributes


VJ

Recommended Posts

It seems my problem is just that I have no entry in 'model'. I omitted that due to the fact that I had named the product in 'product name' so had no need for anything here.

Anyhow it seems to be working and I have popsted this in case it helps anyone else.

 

Rick

 

EasyPopulate requires an entry in Model - it's the 'primary key' of the database that is unique to each product.

 

Even if you just fill down with numbers in your delimited file etc it'd work ok, but these numbers must remain constant in future updates.

Link to comment
Share on other sites

Oh god - another phone call from the client (sob)

 

"What happens if the product quantity is a negative number?"

 

I've no idea - will it treat them as zero stock, or go crazy on me?

 

Thanks for your perseverance with me on this one ;)

 

Dan

 

Right - I've bitten the bullet and tested.

 

A negative stocklevel in EP gives a negative stocklevel in osC - fine if you like that sort of thing, but if you've set the "zero quantity = inactive in database" flag then it pretty much screws you up :'(

 

However, having had a looksie at the easypopulate.php file, it's pretty straightforward to fix :thumbsup:

 

To set EP to deactivate negative stock AS WELL as zero stock, locate the line:

 

if ($zero_qty_inactive && $v_prod_qty == 0) {
 // if they said that zero qty products should be deactivated, let's deactivate if the qty is zero
 $v_db_status = '0';
}

 

and replace it with:

 

if ($zero_qty_inactive && $v_prod_qty <= 0) {
 // if they said that zero qty products should be deactivated, let's deactivate if the qty is zero
 // replaced == with <= to allow removal of negative stock. Geordiedan 15/08/05
 $v_db_status = '0';
}

 

Tested it and we seem to have done the trick!

 

Cheers,

 

Dan

Link to comment
Share on other sites

OK I have an error which I can't seem to figure out when uploading Model/Price/Qty tab-delimited .txt file.

 

File uploaded.

Temporary filename: /var/tmp/phpS9mSlv

User filename: EP2005Aug14-1806.txt

Size: 220

| 10000003 | 297.29 | 6 | 200 | 1 | 250 | 2 Updated

1136 - Column count doesn't match value count at row 1

 

INSERT INTO products_groups VALUES ( 1, 200, 1082, 297.29 )

 

[TEP STOP]

 

I have seen many post for this when i search the forum, but having trouble finding an answer.

 

Any help would be appreciated, while i try to figure it out.

Thanks

 

 

I was having the same problem! I used this code from Jeep and it worked like a charm:

http://www.oscommerce.com/forums/index.php?sho...51entry610151

 

I hope this is what you were looking for. Unfortunately there is no way for us to have known why that was happening. TG for the helpful folks on this board.

Link to comment
Share on other sites

Hello everyboody,

I asked this question before and I didn't get any response, which makes me think there must be an obvious answer to it...but I still don't know what that is so here I am asking! :-"

 

My descriptions include HTML and use double quotes for the attribute values. When I upload the description with EP it doesn't want to work with the quotes and I get errors. Is there a way I can use EP to enter those descriptions or do I have to go item by item, effectively killing most of the benefit of using EP in the first place?

 

I'd appreciate some help on this, thanks.

Link to comment
Share on other sites

Mibble, all: Below is a copy of easypopulate.php that support import/export of specials, import of x-sell (no export), and import of "Extra Images" (no export) from http://www.oscommerce.com/community/contributions,1289 .

 

I would have liked to make these modifications against the current easypopulate.php, but I just don't have the time to do a good job of that right now. I post it here because I know that there may be others who have the time to do it, and I'd like to make the functionality available.

 

NOTES:

1 - Again, this is NOT based on the most current easypopulate.php. If I remember correctly, it's the one from just before Mibble's update. Someone will have to take the time to use WinMerge, Beyond Compare, or something else to diff this file with the current easypopulate.php to incorporate these enhancements into the current version. I can do that later, but have to work on something else right now.

2 - To have multiple X-Sell product associations, or multiple Extra Image associations, specify multiple lines for each product, duplicate lines, where the only fields that change are the x-sell and extra images fields.

3 - Importing specials supports both $ and %. In other words, you can specify a new price or a percentage off, just like in osC Admin. Export does not specify percentage rates simply because that's not how they're stored in the database. The percentage is only used at the time that the new specials price is saved to the database.

 

Thanks to Monika_in_Germany for her collaboration on Specials.

Thanks to frizzy2silky for needing this to be coded.

 

Enjoy!

 

-jared

 

Edit: The post was too long. It got chopped. I'll attach it instead.

easypopulate.php

Edited by jcall
Link to comment
Share on other sites

Hello everyboody,

I asked this question before and I didn't get any response, which makes me think there must be an obvious answer to it...but I still don't know what that is so here I am asking! :-"

 

My descriptions include HTML and use double quotes for the attribute values.  When I upload the description with EP it doesn't want to work with the quotes and I get errors. Is there a way I can use EP to enter those descriptions or do I have to go item by item, effectively killing most of the benefit of using EP in the first place?

 

I'd appreciate some help on this, thanks.

 

Can you enter them as html codes?

 

http://www.tedmontgomery.com/tutorial/HTMLchrc.html

 

Rick

Link to comment
Share on other sites

David - did you get any help? I have similar experience. Appears to work, but no product changes.

 

Upload reports as follows:

 

Easy Populate 2.76-MS2 - Default Language : English(1)

 

File uploaded.

Temporary filename: /tmp/phplDSIkc

User filename: test.txt

Size: 3864

 

 

 

When it works, does the upload actually replace existing products? Append? Replace only same "models" and append others?

 

I made sure upload had distinct model numbers, but have some products already online with no product numbers. Does this matter.

 

 

 

Hi David,

 

We need a lot more info to help you out mate ;)

 

Best bet would be to add your query to the Easypopulate with attributes support thread, include examples of the messages you're receiving, and maybe the first line or two of your EP file.

 

See you in there ;)

 

Dan

Link to comment
Share on other sites

Please Help!

 

In easypopulate.php:

 

//**** Status Field Setting ****

// Set the v_status field to "Inactive" if you want the status=0 in the system

// Set the v_status field to "Delete" if you want to remove the item from the system <- THIS IS NOT WORKING YET!

// If zero_qty_inactive is true, then items with zero qty will automatically be inactive in the store.

global $active, $inactive, $zero_qty_inactive, $deleteit;

$active = 'Active';

$inactive = 'Inactive';

//$deleteit = 'Delete'; // not functional yet

$zero_qty_inactive = false;

-------------------------------------------------------------------------------

I have $zero_qty_inactive = false however this only makes the items with 0 quantity show up in the () next to categories. When I open up the category the products are not shown there. When downloading my catalog with EP after the quantity goes to 0 the v_status is still being set to Inactive eventhough the code clearly says that it shouldn't be.

 

I have also tried to change $inactive = 'Inactive'; to $inactive = 'Active'; but that didn't seem to work either. I have just recovered my site after making too many wrong changes so I'm looking for some advice before I continue trying more random changes. I frequently run out of products and don't want people to think that I don't offer them so I want them to always be shown.

 

I have also deleted all of the easypopluate files from the server (did not clean out the database) and reinstalled, still have the same problem.

Link to comment
Share on other sites

Can you enter them as html codes?

 

http://www.tedmontgomery.com/tutorial/HTMLchrc.html

 

Rick

 

Thanks for the response Rick, but it's not a text type quote that I'm working with.

 

The problem is with the actual markup. I did some experimenting and found that if I configured my code a little differently (adding spaces here and there) then I could import the data without an error. However, the problem with that was that then my code was showing up just as text and not as code. For the code I had uploaded to work the way I wanted it to I had to go into the admin edit and change it. Basically removing the spaces I had put in the code to be able to upload it without error ie: < img to <img

 

I don't really know what I'm doing and it's really not the answer I need for this problem, so if there is anyone out there who can help me with this I would really appreciate it.

Edited by jackrabbit
Link to comment
Share on other sites

OK, I started this in another thread but I was told (via PM) that perhaps I would have better (read ANY) response if I put it in this topic instead. So here goes:

 

Easy Populate + Big Images = Can't get it to work.

 

I've scoured the forums, read every post I could find with a search relating to this and I know that I'm not the only one to have had this problem. However solutions seem only partially available and I've tried everything my limited PHP knowledge will let me and I still can't get Easy Populate to work correctly with the Big Images Contrib.

 

Here's the specifics:

Easy Populate 2.74 MS2 contribution (link)

Big Images 1.25 - 2.2MS2 contrib (link)

 

 

I have Easy Populate and Big Images both installed and working on their own, the problem is that when you add a column to your import file for v_products_bimage, the address doesn't actually get imported into the DB, even though EP doesn't throw back an error.

 

My understanding (from the EP manual) is that to get this to work you would only have to uncomment the correct lines in the easypopulate.php. However if you do this you will only get white screens and errors as it seems the commented code is out of date with current releases(?)

 

So I dug through the code and these are the changes that I made:

 

Near line 201, find

	#'v_products_mimage',
#'v_products_bimage',

Change to

	#'v_products_mimage',
'v_products_bimage',

 

Near line 908, find

  $filelayout = array(
	 'v_products_model'  => $iii++,
	 'v_products_image'  => $iii++,
	 );

Change to

  $filelayout = array(
	 'v_products_model'  => $iii++,
	 'v_products_image'  => $iii++,
	 'v_products_bimage'  => $iii++,
	 );

 

 

Near line 999, find

 	 p.products_model as v_products_model,
	 p.products_image as v_products_image,
	 p.products_price as v_products_price,

Change to

 	 p.products_model as v_products_model,
	 p.products_image as v_products_image,
	 p.products_bimage as v_products_bimage,
	 p.products_price as v_products_price,

 

 

 

Near line 1140, find

 	 p.products_model as v_products_model,
	 p.products_image as v_products_image,
	 p.products_price as v_products_price,

Change to

 	 p.products_model as v_products_model,
	 p.products_image as v_products_image,
	 p.products_bimage as v_products_bimage,
	 p.products_price as v_products_price,

 

 

Near line 1298, find

  p.products_model as v_products_model,
 p.products_image as v_products_image,
 p.products_price as v_products_price,

Change to

  p.products_model as v_products_model,
 p.products_image as v_products_image,
 p.products_bimage as v_products_bimage,
 p.products_price as v_products_price,

 

 

Near line 1679, find

 	 $query = "INSERT INTO ".TABLE_PRODUCTS." (
  	 products_image,
  	 products_model,
  	 products_price,

Change to

 	 $query = "INSERT INTO ".TABLE_PRODUCTS." (
  	 products_image,
  	 products_bimage,
  	 products_model,
  	 products_price,

 

Near line 1690, find

 	 // unmcomment these lines if you are running the image mods
	 /*
   $query .=  . $v_products_mimage . '", "'
    	 . $v_products_bimage . '", "'
    	 . $v_products_subimage1 . '", "'
    	 . $v_products_bsubimage1 . '", "'
    	 . $v_products_subimage2 . '", "'
    	 . $v_products_bsubimage2 . '", "'
    	 . $v_products_subimage3 . '", "'
    	 . $v_products_bsubimage3 . '", "'
	 */

Change to

 	 // unmcomment these lines if you are running the image mods
      $query .=               "'$v_products_bimage',"; 

//                               '$v_products_mimage',";

//                              . $v_products_subimage1 . '", "'

//                              . $v_products_bsubimage1 . '", "'

//                              . $v_products_subimage2 . '", "'

//                              . $v_products_bsubimage2 . '", "'

//                              . $v_products_subimage3 . '", "'

//                              . $v_products_bsubimage3 . '", "'

 

 

 

Near line 1726, find

 	 // uncomment these lines if you are running the image mods
/*
   $query .=
  	 '" ,products_mimage="'.$v_products_mimage.
  	 '" ,products_bimage="'.$v_products_bimage.
  	 '" ,products_subimage1="'.$v_products_subimage1.
  	 '" ,products_bsubimage1="'.$v_products_bsubimage1.
  	 '" ,products_subimage2="'.$v_products_subimage2.
  	 '" ,products_bsubimage2="'.$v_products_bsubimage2.
  	 '" ,products_subimage3="'.$v_products_subimage3.
  	 '" ,products_bsubimage3="'.$v_products_bsubimage3;
*/

Change to

// uncomment these lines if you are running the image mods



      $query .=

              '" ,products_bimage="'.$v_products_bimage;

/*               '" ,products_mimage="'.$v_products_mimage.

             '" ,products_subimage1="'.$v_products_subimage1.

              '" ,products_bsubimage1="'.$v_products_bsubimage1.

              '" ,products_subimage2="'.$v_products_subimage2.

              '" ,products_bsubimage2="'.$v_products_bsubimage2.

              '" ,products_subimage3="'.$v_products_subimage3.

              '" ,products_bsubimage3="'.$v_products_bsubimage3;

*/

 

If you want to download my easypopulate.php file to see all the changes I made above, CLICK HERE.

 

 

 

---

 

So now I've made all the above changes and I have added a column on my Import file like this:

 

v_products_image | v_products_bimage | v_products_name_1

 

Easy Populate runs, gives no errors, puts the product in the store appropriately, etc. BUT STILL DOESN'T show any location for bimage. The fields in the database (products_bimage) are blank. Not Null. Not the wrong image... blank... empty

 

 

What am I doing wrong?

 

Help please?!

Link to comment
Share on other sites

i have been traveling cros the US for the past week, thus have not been around. . .. i will try to read thru some of the posts soon and try and answer. most are answered in the thread somewhere, as not much has changed in the contribution in a long time.

Link to comment
Share on other sites

OK, after three days trolling the forum, googling on the error message, and trying multiple versions of EP all the way back to the infamous Aug 12 2004 version that worked miracles, I'm throwing myself at the mercy of the board.

 

I installed a fresh version of OSC, 2.2-MS2 on PHP version 4.3.10 through my Fantastico control panel app.

 

The install went off without a hitch.

 

1) Next, I made sure my database had a product_model field. Here is the database from phpMyAdmin

products_id int(11) No auto_increment

products_quantity int(4) No 0

products_model varchar(25) Yes NULL

products_image varchar(64) Yes NULL

products_price decimal(15,4) No 0.0000

products_date_added datetime No 0000-00-00 00:00:00

products_last_modified datetime Yes NULL

products_date_available datetime Yes NULL

products_weight decimal(5,2) No 0.00

products_status tinyint(1) No 0

products_tax_class_id int(11) No 0

manufacturers_id int(11) Yes NULL

products_ordered int(11) No 0

 

2) I created the temp directory under my root catalog dir (store) and assigned it chmod 777 permissions

 

3) Uploaded easypopulate.php and easypopulate_functions.php to my admin directory

 

4) added '<a href="' . tep_href_link('easypopulate.php', '', 'NONSSL') . '"

class="menuBoxContentLink">Easy Populate</a><br>'. to my catalog.php file in admin/includes/boxes/ directory

 

5) modified easypopulate.php temp directory variables to point to (pick one, none of them worked) { 'temp/', '/store/temp', 'store/temp', 'username/public_html/store/temp' }

 

6) Went to the admin tool for my OSC site, clicked on Catalog, saw the EasyPopulate link, but when I clicked on it, I get:

 

Internal Server Error

The server encountered an internal error or misconfiguration and was unable to complete your request.

Please contact the server administrator, [email protected] and inform them of the time the error occurred, and anything you might have done that may have caused the error.

 

More information about this error may be available in the server error log.

 

 

Additionally, a 404 Not Found error was encountered while trying to use an ErrorDocument to handle the request

 

7) Checked the web server error logs and see:

 

[Thu Aug 18 14:02:29 2005] [error] [client 65.96.138.13] Premature end of script headers: /home/noidz/public_html/store/admin/easypopulate.php

 

8) Checked easypopulate.php in Dreamweaver, but everything looks OK

 

9) Checked catalog.php in Dreamweaver, but again, everything 'looks' OK

 

I have thus far tried EP versions v2_76b, v2_76a, v2_76, and v2_74 from 12 Aug 2004

 

Any ideas on what I can do to get this working?

 

-Specul8tor

Link to comment
Share on other sites

/store/admin/includes/configure.php make sure DOCUMENT_ROOT is set to $DOCUMENT_ROOT and not /home/noidz/public_html/store/

set temp file to /store/temp/

Link to comment
Share on other sites

Found another error that might help explain things...

 

/store/admin/error_log reports

 

PHP Parse error: parse error, unexpected T_STRING, expecting ')' in /public_html/store/admin/includes/boxes/catalog.php on line 26

 

That line is the line I cut n pasted from the PDF documentation:

 

'<a href="' . tep_href_link('easypopulate.php', '', 'NONSSL') . '" class="menuBoxContentLink">Easy Populate</a><br>'.

 

Here is the entire catalog menu array:

 

if ($selected_box == 'catalog') {

$contents[] = array('text' => '<a href="' . tep_href_link(FILENAME_CATEGORIES, '', 'NONSSL') . '" class="menuBoxContentLink">' . BOX_CATALOG_CATEGORIES_PRODUCTS . '</a><br>' .

'<a href="' . tep_href_link(FILENAME_PRODUCTS_ATTRIBUTES, '', 'NONSSL') . '" class="menuBoxContentLink">' . BOX_CATALOG_CATEGORIES_PRODUCTS_ATTRIBUTES . '</a><br>' .

'<a href="' . tep_href_link('easypopulate.php', '', 'NONSSL') . '" class="menuBoxContentLink">Easy Populate</a><br>'.

'<a href="' . tep_href_link(FILENAME_MANUFACTURERS, '', 'NONSSL') . '" class="menuBoxContentLink">' . BOX_CATALOG_MANUFACTURERS . '</a><br>' .

'<a href="' . tep_href_link(FILENAME_REVIEWS, '', 'NONSSL') . '" class="menuBoxContentLink">' . BOX_CATALOG_REVIEWS . '</a><br>' .

'<a href="' . tep_href_link(FILENAME_SPECIALS, '', 'NONSSL') . '" class="menuBoxContentLink">' . BOX_CATALOG_SPECIALS . '</a><br>' .

'<a href="' . tep_href_link(FILENAME_PRODUCTS_EXPECTED, '', 'NONSSL') . '" class="menuBoxContentLink">' . BOX_CATALOG_PRODUCTS_EXPECTED . '</a>');

}

Edited by specul8tor
Link to comment
Share on other sites

Problem solved. It was either a file permissions error or a problem of converting between windows/unix...

 

I went back to basics to see if it was a general PHP scripting problem and found this link: http://htmlfixit.com/cgi-tutes/tutorial_Co...t_they_mean.php

 

It described exactly the problem I was having and from there I was able to get things working great.

 

So, for those who have run into this problem, (and couldn't find a resolution elsewhere as was my experience) here is what I did:

 

1) I copy and pasted the entire catalog.php file in dreamweaver (or any script editor) and cleaned up the section I pasted from the PDF docs by copying the beginning and end of the original entries in the catalog file.

 

2) I made sure that both catalog.php and easypopulate.php had the proper permissions (chmod 775 in both cases)

 

I can now see the EasyPopulate page when I click on the link in the Catalog menu.

 

On to trying to add my products!

Link to comment
Share on other sites

your source code files should be 644 . ..

 

i went one step further and defined a filename for easypopulate to make it conform to osCommerce standards . .

Link to comment
Share on other sites

First of all i have to say that ai start messing with osc just yesterday, and i don't know very much.

 

 

I managed to install and use easypopulate .

 

REMEMBER : When you properly import the .txt file , after :

 

 

File uploaded.

Temporary filename: /tmp/phplDSIkc

User filename: test.txt

Size: 3864

 

 

there MUST BE a list with all the produsts inserted . Basicly, you will se the listing of txt file on the screen .

 

 

If you don't se that listing , check the delimiter mark ( tab-delimited , comas delimitet, or semicolon )

 

 

Let's supose that yor txt file is "tab-delimited" : You have to check in the " easypopulate.php" file for this instance : " global $separator; " (with-out quotes). The " '$separator " value should be "\t" (with quotes) .

Link to comment
Share on other sites

OK friends, I'm confused...

 

I am new to EP and web site creation in general. I have got a website up and got osc running successfully. I am now trying to use EP to add products. I have read and followed the instructions and tried to figure out from the posts what is wrong.

 

I have figured out that my file is uploading into the temp directory, but the products do not show up in the database.

 

Here is what the upload reports:

 

Easy Populate 2.76-MS2 - Default Language : English(1)

 

File uploaded.

Temporary filename: /tmp/phpJuS5pi

User filename: EP2005Aug16-0808.txt

Size: 6210

 

As you can see, no errors are reported.

 

I stripped commas and apostrophes out of data file but no effect.

 

Here is my data file which I am saving in Quattro Pro using Excel emulation and saving in ASCII Tab delimited format:

 

 

v_products_model v_products_image v_products_name_1 v_products_description_1 v_products_url_1 v_products_price v_products_weight v_date_avail v_date_added v_products_quantity v_attribute_options_id_1 v_attribute_options_name_1_1 v_attribute_values_id_1_1 v_attribute_values_name_1_1_1 v_attribute_values_price_1_1 v_attribute_values_id_1_2 v_attribute_values_name_1_2_1 v_attribute_values_price_1_2 v_attribute_values_id_1_3 v_attribute_values_name_1_3_1 v_attribute_values_price_1_3 v_attribute_values_id_1_4 v_attribute_values_name_1_4_1 v_attribute_values_price_1_4 v_attribute_values_id_1_5 v_attribute_values_name_1_5_1 v_attribute_values_price_1_5 v_attribute_values_id_1_6 v_attribute_values_name_1_6_1 v_attribute_values_price_1_6 v_attribute_options_id_2 v_attribute_options_name_2_1 v_manufacturers_name v_categories_name_1 v_categories_name_2 v_categories_name_3 v_tax_class_title v_status EOREOR

1 107444.jpg Adriana Burgundy Glasses Adriana Burgundy Glasses Thin twisted stem and colorful bowl. 12h x 3d 41.4 0 2005-08-14 20:23:11 50 1 Color 11 Aqua 0 12 Pink 0 13 Light Green 14 Yellow 0 15 Lavender 0 16 Green 0 2 Size Abigails Glassware Taxable Goods Active EOREOR

2 107451.jpg Adriana Footed Water Glasses Adriana Footed Water Glasses Perfect for water or dessert. 6h x 4d 24 0 2005-08-14 20:27:06 50 1 Color 11 Aqua 12 Pink 13 Light Green 14 Yellow 15 Lavender 16 Green 2 Size Abigails Glassware --none-- Active EOREOR

3 107418.jpg Adriana Champagne Flutes Adriana Champagne Flutes What can we say...perfectly elegant! 14h x 2d 43.7 0 2005-08-14 20:29:10 50 1 Color 11 Aqua 12 Pink 13 Light Green 14 Yellow 15 Lavender 16 Green 2 Size Abigails Glassware Taxable Goods Active EOREOR

4 107413.jpg Adriana Wine Glasses Addriana Wine Glass Beautiful twisted long stems with colorful bowls. 9.5 x 4.25 43.7 0 2005-08-14 19:35:57 50 1 Color 11 Aqua 0 12 Pink 0 13 Light Green 0 14 Yellow 40 15 Lavender 0 16 Green 2 Size Abigails Glassware Taxable Goods Active EOREOR

5 181413.jpg Lions Head Old Fashioned Lions Head Old Fashioned Perfectly balanced for all types of entertaining our Lions Head Collection is handmade and features mouth-blown lions head medallions and unique hand-applied rope braid creating a sparkling frame for your favorites. 4h x 3.25d 34.5 0 2005-08-13 12:42:06 5 1 Color 11 Aqua 12 Pink 13 Light Green 14 Yellow 15 Lavender 16 Green 2 Size Abigails Glassware Taxable Goods Active EOREOR

6 181413.jpg Lions Head All-Purpose Tumbler Lions Head All-Purpose Tumbler Perfectly balanced for all types of entertaining our Lions Head Collection is handmade and features mouth-blown lions head medallions and unique hand-applied rope braid creating a sparkling frame for your favorites. 6.25h x 3d 34.5 0 2005-08-13 12:48:50 50 1 Color 11 Aqua 12 Pink 13 Light Green 14 Yellow 15 Lavender 16 Green 2 Size Abigails Glassware Taxable Goods Active EOREOR

7 181413.jpg Lions Head European Wine Lions Head European Wine Perfectly balanced for all types of entertaining our Lions Head Collection is handmade and features mouth-blown lions head medallions and unique hand-applied rope braid creating a sparkling frame for your favorites. 3h x 3.5d 23 0 2005-08-13 12:50:53 50 1 Color 11 Aqua 12 Pink 13 Light Green 14 Yellow 15 Lavender 16 Green 2 Size Abigails Glassware Taxable Goods Active EOREOR

8 181413.jpg Lions Head Pitcher Lions Head Pitcher Perfectly balanced for all types of entertaining our Lions Head Collection is handmade and features mouth-blown lions head medallions and unique hand-applied rope braid creating a sparkling frame for your favorites. 9.5h 158.7 0 2005-08-13 12:52:49 5 1 Color 11 Aqua 12 Pink 13 Light Green 14 Yellow 15 Lavender 16 Green 2 Size Abigails Glassware Taxable Goods Active EOREOR

9 181413.jpg Lions Head Ice Bucket small Lions Head Ice Bucket small Perfectly balanced for all types of entertaining our Lions Head Collection is handmade and features mouth-blown lions head medallions and unique hand-applied rope braid creating a sparkling frame for your favorites. 8h x 8d 177.1 0 2005-08-13 12:59:49 50 1 Color 11 Aqua 12 Pink 13 Light Green 14 Yellow 15 Lavender 16 Green 2 Size Abigails Glassware Taxable Goods Active EOREOR

10 181301.jpg Lions Head Hurricane Lions Head Hurricane Perfectly balanced for all types of entertaining our Lions Head Collection is handmade and features mouth-blown lions head medallions and unique hand-applied rope braid creating a sparkling frame for your favorites. 13.5h x 5d 135.7 0 2005-08-13 13:05:10 50 1 Color 11 Aqua 12 Pink 13 Light Green 14 Yellow 15 Lavender 16 Green 2 Size Abigails Glassware Taxable Goods Active EOREOR

11 181301.jpg Lions Head Ice Bucket Large Lions Head Ice Bucket Large Perfectly balanced for all types of entertaining our Lions Head Collection is handmade and features mouth-blown lions head medallions and unique hand-applied rope braid creating a sparkling frame for your favorites. 9.5h x 18d 177.1 0 2005-08-13 13:11:19 50 1 Color 11 Aqua 12 Pink 13 Light Green 14 Yellow 15 Lavender 16 Green 2 Size Abigails Glassware Taxable Goods Active EOREOR

12 181301.jpg Lions Head Carafe Lions Head Carafe Perfectly balanced for all types of entertaining our Lions Head Collection is handmade and features mouth-blown lions head medallions and unique hand-applied rope braid creating a sparkling frame for your favorites. 4h x 3.25d 101.2 0 2005-08-13 13:12:56 50 1 Color 11 Aqua 12 Pink 13 Light Green 14 Yellow 15 Lavender 16 Green 2 Size Abigails Glassware Taxable Goods Active EOREOR

13 181301.jpg Lions Head Oval Centerpiece Lions Head Oval Centerpiece Perfectly balanced for all types of entertaining our Lions Head Collection is handmade and features mouth-blown lions head medallions and unique hand-applied rope braid creating a sparkling frame for your favorites. 6.5h x 14 x 6.75 oval 296.7 0 2005-08-13 13:15:20 5 1 Color 11 Aqua 12 Pink 13 Light Green 14 Yellow 15 Lavender 16 Green 2 Size Abigails Glassware Taxable Goods Active EOREOR

 

 

 

 

 

 

Again, none of the products are inserted into the database when I pull the website up. Please advise, and thanks for your help!

 

Jeff R

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below.
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...