Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

sql error for image attributes


tec

Recommended Posts

hi there, i installed this contribution images for attributes

 

When i ran the sql in phpmyadmin, it gave me this error

 

SQL-query:

 

INSERT INTO configuration_group

SET configuration_group_title = 'Product Attribute Images',

configuration_group_description = 'Use Images for Product Options/Attributes instead of drop lists.',

sort_order =5,

visible =1 INSERT INTO configuration

SET configuration_title = 'Large Option Images',

configuration_key = 'OPTIONS_IMAGES_LARGE',

configuration_value = 'true',

configuration_description = 'Include larger image in pop-up window on product info page',

configuration_group_id = '14',

sort_order =2

MySQL said:

 

#1064 - You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'Insert into configuration set configuration_title='Large Option

 

does anyone know how to fix this?

 

:'(

Link to comment
Share on other sites

I am also getting this error since i over wrote the files with the ones in the contribution, i am getting the error in my admin

 

Fatal error: Call to undefined function: tep_output_string() in /home/teclive/public_html/pleated/admin/includes/functions/html_output.php on line 156

 

any help is much appreciated

:blush:

Link to comment
Share on other sites

hi there, i installed this contribution images for attributes

 

When i ran the sql in phpmyadmin, it gave me this error

 

SQL-query:

 

INSERT INTO configuration_group

SET configuration_group_title = 'Product Attribute Images',

configuration_group_description = 'Use Images for Product Options/Attributes instead of drop lists.',

sort_order =5,

visible =1 INSERT INTO configuration

SET configuration_title = 'Large Option Images',

configuration_key = 'OPTIONS_IMAGES_LARGE',

configuration_value = 'true',

configuration_description = 'Include larger image in pop-up window on product info page',

configuration_group_id = '14',

sort_order =2

MySQL said: 

 

#1064 - You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near 'Insert into configuration set configuration_title='Large Option

 

does anyone know how to fix this?

 

:'(

 

 

Make sure you place the ; at thye end of this line....

You had...

 

INSERT INTO configuration_group

SET configuration_group_title = 'Product Attribute Images',

configuration_group_description = 'Use Images for Product Options/Attributes instead of drop lists.',

sort_order =5,

visible =1 INSERT INTO configuration

SET configuration_title = 'Large Option Images',

configuration_key = 'OPTIONS_IMAGES_LARGE',

configuration_value = 'true',

configuration_description = 'Include larger image in pop-up window on product info page',

configuration_group_id = '14',

sort_order =2

 

Should be

 

INSERT INTO configuration_group

SET configuration_group_title = 'Product Attribute Images',

configuration_group_description = 'Use Images for Product Options/Attributes instead of drop lists.',

sort_order =5,

visible =1 INSERT INTO configuration

SET configuration_title = 'Large Option Images',

configuration_key = 'OPTIONS_IMAGES_LARGE',

configuration_value = 'true',

configuration_description = 'Include larger image in pop-up window on product info page',

configuration_group_id = '14',

sort_order =2;

 

 

Mike

Link to comment
Share on other sites

Make sure you place the ; at thye end of this line....

You had...

 

INSERT INTO configuration_group

SET configuration_group_title = 'Product Attribute Images',

configuration_group_description = 'Use Images for Product Options/Attributes instead of drop lists.',

sort_order =5,

visible =1 INSERT INTO configuration

SET configuration_title = 'Large Option Images',

configuration_key = 'OPTIONS_IMAGES_LARGE',

configuration_value = 'true',

configuration_description = 'Include larger image in pop-up window on product info page',

configuration_group_id = '14',

sort_order =2

 

Should be

 

INSERT INTO configuration_group

SET configuration_group_title = 'Product Attribute Images',

configuration_group_description = 'Use Images for Product Options/Attributes instead of drop lists.',

sort_order =5,

visible =1 INSERT INTO configuration

SET configuration_title = 'Large Option Images',

configuration_key = 'OPTIONS_IMAGES_LARGE',

configuration_value = 'true',

configuration_description = 'Include larger image in pop-up window on product info page',

configuration_group_id = '14',

sort_order =2;

Mike

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

 

thank you Mike, i tried opening it in excel, but i could not find it to edit it once it was open, I am not versed well enough to try to fix it in phpmyadmin, any thoughts?

Link to comment
Share on other sites

I am also getting this error since i over wrote the files with the ones in the contribution, i am getting the error in my admin

 

Fatal error: Call to undefined function: tep_output_string() in /home/teclive/public_html/pleated/admin/includes/functions/html_output.php on line 156

 

any help is much appreciated

:blush:

 

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

sorry, i made a mistake, i am getting the error on the main page of the cart

Fatal error: Call to undefined function: tep_output_string() in /home/teclive/public_html/roman/includes/functions/html_output.php on line 81

Link to comment
Share on other sites

  • 11 months later...

If you go into PHPMyAdmin, Run SQL and just paste in the text it will work.

 

I did have to make another change, and doing this:

 

INSERT INTO configuration_group

SET configuration_group_title = 'Product Attribute Images',

configuration_group_description = 'Use Images for Product Options/Attributes instead of drop lists.',

sort_order =5, visible =1;

INSERT INTO configuration

SET configuration_title = 'Large Option Images',

configuration_key = 'OPTIONS_IMAGES_LARGE',

configuration_value = 'true',

configuration_description = 'Include larger image in pop-up window on product info page',

configuration_group_id = '14',

sort_order =2;

 

 

Added a ";" after visible=1

 

Cory

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...