Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Simple Multi Image Add-on (Un-Limited) with FancyBox Popups


spooks

Recommended Posts

Your ist error is due your error following install for product_info.php, do it again.

 

2nd read the code u posted, u have in it the exact code that u are asked to find!!!

 

Sometime u have to look with better eyes!! ;)

Sam

 

Remember, What you think I ment may not be what I thought I ment when I said it.

 

Contributions:

 

Auto Backup your Database, Easy way

 

Multi Images with Fancy Pop-ups, Easy way

 

Products in columns with multi buy etc etc

 

Disable any Category or Product, Easy way

 

Secure & Improve your account pages et al.

Link to comment
Share on other sites

Modify categories.php so it places the images in that folder & adds the relavent path to the filename, then no changes required to javascript or product_info.php.

 

OK you mean the define('DIR_WS_IMAGES', 'images/'); in configure.

I need 5 Folders for the Images (/workplace, /kat1, kat2, kat3 and /sd_parts) normaly ich save the Folder in the Feld where the Imagename ist stored.

But the Folder+Filename is not possible (for me) to save in the Array

 

I dont have only one Folder for the Image.

Can I save the Path to the Image with the Imagename in the Array?

Edited by 00Kai
Link to comment
Share on other sites

But the Folder+Filename is not possible (for me) to save in the Array

 

 

It sound like u need a new contrib, you could add a drop within categories to select which dir, this will help u create your drop.

 

then u only need to modify the upload section, the following shows that section modded to save to the dvd dir in images, alter for your dir(s)

 

 

  if ($action == 'new_product_preview') {
// copy image only if modified
	$products_image = new upload('products_image');
	$products_image->set_destination(DIR_FS_CATALOG_IMAGES . 'dvd/');
	if ($products_image->parse() && $products_image->save()) {
	  $products_image_name =  'dvd\/' . $products_image->filename;
	} else {
	  $products_image_name = (isset($HTTP_POST_VARS['products_previous_image']) ? $HTTP_POST_VARS['products_previous_image'] : '');
	}
// Simple multi image addon

$products_image_array = array();
for ($i = 1; $i <= (int)$_POST['image_array_limit']; ++$i)
 { 
$products_images = new upload('products_image_' . $i);

$products_images->set_destination(DIR_FS_CATALOG_IMAGES . 'dvd/');
	if ($products_images->parse() && $products_images->save()) {
	  $products_image_array[] =  'dvd\/' . $products_images->filename;
	} else {
	 if(isset($_POST['products_previous_image_' .$i])) $products_image_array[] = $_POST['products_previous_image_' .$i];
															   }
  }

Sam

 

Remember, What you think I ment may not be what I thought I ment when I said it.

 

Contributions:

 

Auto Backup your Database, Easy way

 

Multi Images with Fancy Pop-ups, Easy way

 

Products in columns with multi buy etc etc

 

Disable any Category or Product, Easy way

 

Secure & Improve your account pages et al.

Link to comment
Share on other sites

use oscthumb watermarks.

 

 

I have looked at this further & have a solution, that will work whether scripts are on or off & apply the watermarking to both main & additional images

 

in product_info.php

 

find(157):

 

<?php   echo '<a  rel="image_group" title="'.$product_info['products_name'].'" href="' . tep_href_link(DIR_WS_IMAGES . $product_info['products_image'], $product_info['products_name']) . '" target="_blank">' . tep_image(DIR_WS_IMAGES . $product_info['products_image'], $product_info['products_name'], SMALL_IMAGE_WIDTH, SMALL_IMAGE_HEIGHT, 'hspace="5" vspace="5"', false, 5) . '<br />' . '</a>';

 

replace with:

 

<?php if (class_exists('oscthumb') && CFG_MASTER_SWITCH == 'On') { preg_match('/"([^"]+)"/',htmlentities ( tep_image(DIR_WS_IMAGES . $product_info['products_image'],'','','','','',5), ENT_NOQUOTES), $image);  $source=str_replace('&','&',$image[1]); } else { $source = DIR_WS_IMAGES . $product_info['products_image']; }
 echo '<a  rel="image_group" title="'.$product_info['products_name'].'" href="' . tep_href_link($source, $product_info['products_name']) . '" target="_blank">' . tep_image(DIR_WS_IMAGES . $product_info['products_image'], $product_info['products_name'], SMALL_IMAGE_WIDTH, SMALL_IMAGE_HEIGHT, 'hspace="5" vspace="5"', false, 5) . '<br />' . '</a>';

 

find(160):

echo '<a  rel="image_group" title="'.$product_info['products_name'].'" href="' . tep_href_link(DIR_WS_IMAGES . $value) . '" target="_blank">' . tep_image(DIR_WS_IMAGES . $value, $product_info['products_name'], TINY_IMAGE_WIDTH, TINY_IMAGE_HEIGHT, 'hspace="5" vspace="5"') . '</a>';

 

replace with:

  if (class_exists('oscthumb') && CFG_MASTER_SWITCH == 'On') {	  
	preg_match('/"([^"]+)"/',htmlentities ( tep_image(DIR_WS_IMAGES . $value,'','','','','',5), ENT_NOQUOTES), $image);  $source=str_replace('&','&',$image[1]); 
	} else { $source = DIR_WS_IMAGES . $value; }
	echo '<a  rel="image_group" title="'.$product_info['products_name'].'" href="' . tep_href_link($source) . '" target="_blank">' . tep_image(DIR_WS_IMAGES . $value, $product_info['products_name'], TINY_IMAGE_WIDTH, TINY_IMAGE_HEIGHT, 'hspace="5" vspace="5"') . '</a>';

 

find(168):

echo '<a  rel="image_group" title="'.$product_info['products_name'].'" href="' . tep_href_link(DIR_WS_IMAGES . $value) . '" target="_blank">' . tep_image(DIR_WS_IMAGES . $value, $product_info['products_name'], TINY_IMAGE_WIDTH, TINY_IMAGE_HEIGHT, 'hspace="5" vspace="5"') . '<br />' . '</a>';

 

replace with:

		if (class_exists('oscthumb') && CFG_MASTER_SWITCH == 'On') {	  
	preg_match('/"([^"]+)"/',htmlentities ( tep_image(DIR_WS_IMAGES . $value,'','','','','',5), ENT_NOQUOTES), $image);  $source=str_replace('&','&',$image[1]); 
	} else { $source = DIR_WS_IMAGES . $value; }
	echo '<a  rel="image_group" title="'.$product_info['products_name'].'" href="' . tep_href_link($source) . '" target="_blank">' . tep_image(DIR_WS_IMAGES . $value, $product_info['products_name'], TINY_IMAGE_WIDTH, TINY_IMAGE_HEIGHT, 'hspace="5" vspace="5"') . '<br />' . '</a>';

 

That should sort it for you. ;)

Edited by spooks

Sam

 

Remember, What you think I ment may not be what I thought I ment when I said it.

 

Contributions:

 

Auto Backup your Database, Easy way

 

Multi Images with Fancy Pop-ups, Easy way

 

Products in columns with multi buy etc etc

 

Disable any Category or Product, Easy way

 

Secure & Improve your account pages et al.

Link to comment
Share on other sites

i think i imported both SQL files by mistake

 

I will add an un-install for the sql at a later date.

Sam

 

Remember, What you think I ment may not be what I thought I ment when I said it.

 

Contributions:

 

Auto Backup your Database, Easy way

 

Multi Images with Fancy Pop-ups, Easy way

 

Products in columns with multi buy etc etc

 

Disable any Category or Product, Easy way

 

Secure & Improve your account pages et al.

Link to comment
Share on other sites

I forgot about this, I promise the 'remove from server' option will be added to the next version! ;)

Sam

 

Remember, What you think I ment may not be what I thought I ment when I said it.

 

Contributions:

 

Auto Backup your Database, Easy way

 

Multi Images with Fancy Pop-ups, Easy way

 

Products in columns with multi buy etc etc

 

Disable any Category or Product, Easy way

 

Secure & Improve your account pages et al.

Link to comment
Share on other sites

Use oscthumb watermarks.

 

I have come accross a bug the code I posted in the last post, if the image is not on the server & image required is set to false a unable to determine page link error will occur, to fix use the following:

 

 

in product_info.php

 

find(157):

 

<?php   echo '<a  rel="image_group" title="'.$product_info['products_name'].'" href="' . tep_href_link(DIR_WS_IMAGES . $product_info['products_image'], $product_info['products_name']) . '" target="_blank">' . tep_image(DIR_WS_IMAGES . $product_info['products_image'], $product_info['products_name'], SMALL_IMAGE_WIDTH, SMALL_IMAGE_HEIGHT, 'hspace="5" vspace="5"', false, 5) . '<br />' . '</a>';

 

replace with:

 

<?php $source = ''; $thumb = (class_exists('oscthumb') && CFG_MASTER_SWITCH == 'On'); if ($thumb) { preg_match('/"([^"]+)"/',htmlentities ( tep_image(DIR_WS_IMAGES . $product_info['products_image'],'','','','','',5), ENT_NOQUOTES), $image);  $source=str_replace('&','&',$image[1]); }
 echo '<a  rel="image_group" title="'.$product_info['products_name'].'" href="' . tep_href_link(($source ? $source : DIR_WS_IMAGES . $product_info['products_image']), $product_info['products_name']) . '" target="_blank">' . tep_image(DIR_WS_IMAGES . $product_info['products_image'], $product_info['products_name'], SMALL_IMAGE_WIDTH, SMALL_IMAGE_HEIGHT, 'hspace="5" vspace="5"', false, 5) . '<br />' . '</a>';

find(160):

echo '<a  rel="image_group" title="'.$product_info['products_name'].'" href="' . tep_href_link(DIR_WS_IMAGES . $value) . '" target="_blank">' . tep_image(DIR_WS_IMAGES . $value, $product_info['products_name'], TINY_IMAGE_WIDTH, TINY_IMAGE_HEIGHT, 'hspace="5" vspace="5"') . '</a>';

 

replace with:

		if ($thumb) {	  
	$source = ''; preg_match('/"([^"]+)"/',htmlentities ( tep_image(DIR_WS_IMAGES . $value,'','','','','',5), ENT_NOQUOTES), $image);  $source=str_replace('&','&',$image[1]); 
	} 
	echo '<a  rel="image_group" title="'.$product_info['products_name'].'" href="' . tep_href_link($source ? $source : DIR_WS_IMAGES . $value) . '" target="_blank">' . tep_image(DIR_WS_IMAGES . $value, $product_info['products_name'], TINY_IMAGE_WIDTH, TINY_IMAGE_HEIGHT, 'hspace="5" vspace="5"') . '</a>';

find(168):

echo '<a  rel="image_group" title="'.$product_info['products_name'].'" href="' . tep_href_link(DIR_WS_IMAGES . $value) . '" target="_blank">' . tep_image(DIR_WS_IMAGES . $value, $product_info['products_name'], TINY_IMAGE_WIDTH, TINY_IMAGE_HEIGHT, 'hspace="5" vspace="5"') . '<br />' . '</a>';

 

replace with:

		if ($thumb) {	  
	$source = ''; preg_match('/"([^"]+)"/',htmlentities ( tep_image(DIR_WS_IMAGES . $value,'','','','','',5), ENT_NOQUOTES), $image);  $source=str_replace('&','&',$image[1]); 
	} 
	echo '<a  rel="image_group" title="'.$product_info['products_name'].'" href="' . tep_href_link($source ? $source : DIR_WS_IMAGES . $value) . '" target="_blank">' . tep_image(DIR_WS_IMAGES . $value, $product_info['products_name'], TINY_IMAGE_WIDTH, TINY_IMAGE_HEIGHT, 'hspace="5" vspace="5"') . '<br />' . '</a>';

 

 

That should sort it for you, bareing any more hickups!!. ;)

Edited by spooks

Sam

 

Remember, What you think I ment may not be what I thought I ment when I said it.

 

Contributions:

 

Auto Backup your Database, Easy way

 

Multi Images with Fancy Pop-ups, Easy way

 

Products in columns with multi buy etc etc

 

Disable any Category or Product, Easy way

 

Secure & Improve your account pages et al.

Link to comment
Share on other sites

Thanks for this contribution apparently working. I'm having a problemm, the video is overlapping the background image in Firefox.

What can I do to the picture appears in front of everything?

 

Look the problem

 

firefoxtj.th.jpg

 

 

In Internet Explorer works fine

 

 

internetexplorer.th.jpg

Edited by Follow
Link to comment
Share on other sites

what can I do so the picture appears in front of everything?

 

Standard css rules, use z-index.

 

The z-index in js/fancybox.css is between 90 & 100, for the most part, either increase those to above that set for your video, or adjust your video z-index to a lower value.

Edited by spooks

Sam

 

Remember, What you think I ment may not be what I thought I ment when I said it.

 

Contributions:

 

Auto Backup your Database, Easy way

 

Multi Images with Fancy Pop-ups, Easy way

 

Products in columns with multi buy etc etc

 

Disable any Category or Product, Easy way

 

Secure & Improve your account pages et al.

Link to comment
Share on other sites

Uploaded New Version V1.2

 

1.Added un-install SQL file.

2.Added a 'also remove from server' to the delete image option in product edit.

3.Added code to ensure osCThumb watermarks will appear on popup images if enabled in osCThumb. This function will work whether or not scripts are enabled in the browser.

4.Added FAQ section to the docs.

 

Changed files: product_info.php, admin/categories.php

New files: Uninstall SQL.txt

 

Upgrading: Replace those changed or edit existing files to apply changes.

Sam

 

Remember, What you think I ment may not be what I thought I ment when I said it.

 

Contributions:

 

Auto Backup your Database, Easy way

 

Multi Images with Fancy Pop-ups, Easy way

 

Products in columns with multi buy etc etc

 

Disable any Category or Product, Easy way

 

Secure & Improve your account pages et al.

Link to comment
Share on other sites

just did the install of your latest and greatest. (v1.2)

 

Getting the following error:

 

Parse error: syntax error, unexpected T_CASE in .../admin/categories.php on line 331

 

line 331 is .. case 'copy_to_confirm':

 

 

Am i missing something? I double checked my adds/replaces to the categories.php file. T_Case is not in the code anywhere.

 

any ideas?

Edited by Jusluv2ski
Link to comment
Share on other sites

Parse error: syntax error, unexpected T_CASE in .../

Jusluv2sk

 

Its a syntax error, it means u have added/deleted/moved smthg in the wrong place

 

the error will be likely within the previous few lines, the instruction near there is to comment out a line, perhaps u only did part, or smthg similar?

 

Remember php does not forgive errors, a single character missing or in the wrong place will create such errors.

Sam

 

Remember, What you think I ment may not be what I thought I ment when I said it.

 

Contributions:

 

Auto Backup your Database, Easy way

 

Multi Images with Fancy Pop-ups, Easy way

 

Products in columns with multi buy etc etc

 

Disable any Category or Product, Easy way

 

Secure & Improve your account pages et al.

Link to comment
Share on other sites

<b>Uploaded New Version V1.2</b>

 

1.Added un-install SQL file.

2.Added a 'also remove from server' to the delete image option in product edit.

3.Added code to ensure osCThumb watermarks will appear on popup images if enabled in osCThumb. This function will work whether or not scripts are enabled in the browser.

4.Added FAQ section to the docs.

 

Changed files: product_info.php, admin/categories.php

New files: Uninstall SQL.txt

 

Upgrading: Replace those changed or edit existing files to apply changes.

 

This is what i wait for. Thanks. I still have home work to uninstall Additional Images Addon before install Simple Additional Images Addon. :)

Rocdy

 

Beginner in php programming and still learning from this forums.

Special thanks for Oscommerce Community Forums that help me a lot. :-)

Link to comment
Share on other sites

Thanks for the input. I looked it all over again and see nothing different than the original. The line to comment out looks right. I think part of the problem was that i had another contribution installed, and it was conflicting..?? not sure. I took the catalog.php file in the download and used that. all worked fine. I did have to re-add my other contrib, but that was quick and easy. Thanks!

Link to comment
Share on other sites

I couldn't find error!

 

Often the easiest way to install & minimse errors is to use a file compare tool, like or Beyond Compare. All mods are commented within the included files.

Sam

 

Remember, What you think I ment may not be what I thought I ment when I said it.

 

Contributions:

 

Auto Backup your Database, Easy way

 

Multi Images with Fancy Pop-ups, Easy way

 

Products in columns with multi buy etc etc

 

Disable any Category or Product, Easy way

 

Secure & Improve your account pages et al.

Link to comment
Share on other sites

Hello Spooks. Your Simple Multi Images addon look great!

 

I just want to change the directory where the products images saved.

 

I want to save the product images in the folder catalog/images/products/

 

Which file should i looking for? The javascript file or any else php files?

 

Thank before.

Sorri for my bad English.

Best Regard Rocdy. :)

Rocdy

 

Beginner in php programming and still learning from this forums.

Special thanks for Oscommerce Community Forums that help me a lot. :-)

Link to comment
Share on other sites

 

How to save the product images in the folder catalog/images/products/

 

 

u only need to modify the upload section of admin/categories.php, the following shows that section modded to save to the products dir in images:

 

 

 

 if ($action == 'new_product_preview') {
// copy image only if modified
 $products_image = new upload('products_image');
 $products_image->set_destination(DIR_FS_CATALOG_IMAGES . 'products/');
 if ($products_image->parse() && $products_image->save()) {
   $products_image_name =  'products\/' . $products_image->filename;
 } else {
   $products_image_name = (isset($HTTP_POST_VARS['products_previous_image']) ? $HTTP_POST_VARS['products_previous_image'] : '');
 }
// Simple multi image addon

$products_image_array = array();
for ($i = 1; $i <= (int)$_POST['image_array_limit']; ++$i)
 { 
$products_images = new upload('products_image_' . $i);

$products_images->set_destination(DIR_FS_CATALOG_IMAGES . 'products/');
 if ($products_images->parse() && $products_images->save()) {
   $products_image_array[] =  'products\/' . $products_images->filename;
 } else {
  if(isset($_POST['products_previous_image_' .$i])) $products_image_array[] = $_POST['products_previous_image_' .$i];
                  }
  }

 

 

Sam

 

Remember, What you think I ment may not be what I thought I ment when I said it.

 

Contributions:

 

Auto Backup your Database, Easy way

 

Multi Images with Fancy Pop-ups, Easy way

 

Products in columns with multi buy etc etc

 

Disable any Category or Product, Easy way

 

Secure & Improve your account pages et al.

Link to comment
Share on other sites

How to save the product images in the folder catalog/images/products/

 

 

 

u only need to modify the upload section of admin/categories.php, the following shows that section modded to save to the products dir in images:

 

 

 

 if ($action == 'new_product_preview') {
// copy image only if modified
 $products_image = new upload('products_image');
 $products_image->set_destination(DIR_FS_CATALOG_IMAGES . 'products/');
 if ($products_image->parse() && $products_image->save()) {
   $products_image_name =  'products\/' . $products_image->filename;
 } else {
   $products_image_name = (isset($HTTP_POST_VARS['products_previous_image']) ? $HTTP_POST_VARS['products_previous_image'] : '');
 }
// Simple multi image addon

$products_image_array = array();
for ($i = 1; $i <= (int)$_POST['image_array_limit']; ++$i)
 { 
$products_images = new upload('products_image_' . $i);

$products_images->set_destination(DIR_FS_CATALOG_IMAGES . 'products/');
 if ($products_images->parse() && $products_images->save()) {
   $products_image_array[] =  'products\/' . $products_images->filename;
 } else {
  if(isset($_POST['products_previous_image_' .$i])) $products_image_array[] = $_POST['products_previous_image_' .$i];
                  }
  }

 

I have tried that but it show error :

 

IMAGE DOES NOT EXIST (maybe the images can't read from the directory images/products)

but the images was uploaded in the products folder.

 

And how about the delete images, should i change this code to :

 

// Simple multi image addon

 

$products_image_array = array();

for ($i = 1; $i <= (int)$_POST['image_array_limit']; ++$i)

{

if (!isset($HTTP_POST_VARS['products_image_' . $i])) continue;

if (tep_not_null($HTTP_POST_VARS['products_image_'. $i]) && ($HTTP_POST_VARS['delete_image_' .$i] != 'on')) { $products_image_array[] = tep_db_prepare_input($HTTP_POST_VARS['products_image_'. $i]); }

if ($HTTP_POST_VARS['delete_image_' .$i] == 'on' && $HTTP_POST_VARS['unlink_image_' .$i] == 'on' && file_exists(DIR_FS_CATALOG_IMAGES . tep_db_prepare_input($HTTP_POST_VARS['products_image_'. $i]))) {

if (unlink(DIR_FS_CATALOG_IMAGES . tep_db_prepare_input($HTTP_POST_VARS['products_image_'. $i])))

$messageStack->add('Image ' . $HTTP_POST_VARS['products_image_'. $i] . ' Deleted & removed from the server.', 'success');

}

}

$sql_data_array['products_image_array'] = serialize($products_image_array);

// EOF Simple multi image addon

 

and this to :

 

// check if the catalog image directory exists

if (is_dir(DIR_FS_CATALOG_IMAGES)) {

if (!is_writeable(DIR_FS_CATALOG_IMAGES)) $messageStack->add(ERROR_CATALOG_IMAGE_DIRECTORY_NOT_WRITEABLE, 'error');

} else {

$messageStack->add(ERROR_CATALOG_IMAGE_DIRECTORY_DOES_NOT_EXIST, 'error');

}

 

Thanks for the fast reply. :)

Edited by rocdy

Rocdy

 

Beginner in php programming and still learning from this forums.

Special thanks for Oscommerce Community Forums that help me a lot. :-)

Link to comment
Share on other sites

First of all big thanks for creating such great much needed mod for osCommerce. Now there is small problem in my site where I installed this mod, everything works perfect but only thing that do not work is navigation. I uploaded three aditional photos per product but on clicking only one is shown. I read in the instruction that image name should not have space or characters like !@#$%^&* so I am aware if this issue and this is not the problem in my case. Tried changing some values from admin settings but still its not working. Please help!

Thanks

Link to comment
Share on other sites

I uploaded three aditional photos per product but on clicking only one is shown.

 

If you are seeing the additional images in admin but do not see them on your product_info.php page its most likely you have missed off some code for product_info.php.

 

You should see tiny thumbnails of your additional images either below or to the right of your main image.

 

The navigation buttons will only appear when there are extra images to navigate to, if none appear u have errors stopping thier apperance.

 

Try using the included product_info.php file.

Edited by spooks

Sam

 

Remember, What you think I ment may not be what I thought I ment when I said it.

 

Contributions:

 

Auto Backup your Database, Easy way

 

Multi Images with Fancy Pop-ups, Easy way

 

Products in columns with multi buy etc etc

 

Disable any Category or Product, Easy way

 

Secure & Improve your account pages et al.

Link to comment
Share on other sites

Just took a secound look u are using invalid file names!! u are putting researved chars within the name.

 

U have named the pic DoggieS/P.JPG which will be read as P.jpg within a subdir DoggieS which dont exist!!

 

 

For best practice do not put any of: $&+,/:;=?@<>#%{}|^~[]` or any spaces or any quotes.

If u have photoshop, its save for web option will ensure a valid filename.

 

 

 

Thanks very, very much Spooks - for all of your help & patience. I've got it all up & running fine now. Somehow, a slight problem i also had with Order Editor has been rectified while tinkering with this.

Cheers,

pete.

Link to comment
Share on other sites

IMAGE DOES NOT EXIST

 

You have made errors, the code will work fine as is. Check your destination sub-dir exists.

 

I note if you post the code from the forum strait into some editors, it may cause loss of line breaks, paste into wordpad, then re-copy & past into your editor.

 

When u click on preview u should get the message Success: File upload saved successfully. if all is well.

 

once pics are added the extra path will appear as part of filename shown on the edit page.

 

Also as the path is contained within the filename there is no need for any other changes, that includes the delete section.

Sam

 

Remember, What you think I ment may not be what I thought I ment when I said it.

 

Contributions:

 

Auto Backup your Database, Easy way

 

Multi Images with Fancy Pop-ups, Easy way

 

Products in columns with multi buy etc etc

 

Disable any Category or Product, Easy way

 

Secure & Improve your account pages et al.

Link to comment
Share on other sites

I was hoping to get by without support; sorry for bugging you after all.

 

I have the additional image upload in admin, and it does show okay in preview, but not on actual site. Since this is an empty shop, I copied categories.php and product_info.php straight from your files. Also figured that was the easiest way to get it up and running. JS folder was copied to server. I *think* I ran the SQL query okay, though I *might* have picked the wrong one.

 

Product I am talking about: http://shop.iragrant.com/catalog/product_info.php?cPath=21_24&products_id=28

 

Before installing this add-on, I installed oscThumb as advised. Other than that, the shop only has Center Shop as an extra.

 

Any advice? Would love to get this working...

 

Thanks in advance, Gila

Link to comment
Share on other sites

 

 

When you install a contribution & your install results in errors or failure, always triple check what u have done (or not done!!! rolleyes.gif )

 

Contributions are uploaded as working solutions 98% of the time, so errors are most likely yours, so if it don't work when you've finished, 98% of time its your error, so triple checking your install should (hopefully) find that error.

 

This thread gives some handy tips: http://www.oscommerce.com/forums/index.php?showtopic=343384&st=0#entry1432157

 

 

Your issue, though you say you have uploaded the included product_info.php, you have not, I see a default one!!!

 

Triplecheck your install, again, please!! smile.gif

Sam

 

Remember, What you think I ment may not be what I thought I ment when I said it.

 

Contributions:

 

Auto Backup your Database, Easy way

 

Multi Images with Fancy Pop-ups, Easy way

 

Products in columns with multi buy etc etc

 

Disable any Category or Product, Easy way

 

Secure & Improve your account pages et al.

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