Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

[Contribution] UltraPics v1.0 - Addition Image Pac


Guest

Recommended Posts

I fixed part of my above problem,,

 

i got it loading and saving the image info, but the sizes are not right with them on the catalog side

 

i am sure I just dont under stand, but can someone point me to a guideline for the image sizing.

right now when i click to get the pop up enlarged one,, its actually smaller than the original i clicked on,,

Can someone explain?

 

Thanks

Tom

Link to comment
Share on other sites

  • Replies 375
  • Created
  • Last Reply

Top Posters In This Topic

When i delete a product, the images doesn't  get deleted. The images isn't used by other    products.

 

I can manually delete the images from the product page without problems.

 

What is wrong?

I don't think anything is wrong.

 

Why are you expecting the image to be deleted?

 

It would be possible to write code so that when a product is deleted, it checks to see if the image is in use by any other product, and if not, then deletes the image. But that code has not been written.

 

It would also cause problems in some cases. I have a general purpose 'No image available' image. If I delete that image, I would have to upload it again next time I want to use it.

Link to comment
Share on other sites

I fixed part of my above problem,,

 

i got it loading and saving the image info, but the sizes are not right with them on the catalog side

 

i am sure I just dont under stand, but can someone point me to a guideline for the image sizing.

right now when i click to get the pop up enlarged one,, its actually smaller than the original i clicked on,,

Can someone explain?

 

Thanks

Tom

I had a similar problem.

 

The values are defined on the Configuration page under Images.

You will see entries for height and width for Small Image, Additional Thumb, Medium Image and Large Image.

 

The way it works is that if an entry exists, the image will be resized to that value, otherwise the aimge will be shown whatever size it rreally is.

 

When I say the image is resized, I mean it is simply displayed at a specific size using <img height= width=> values. So lets takes two cases

 

1) The image really is 100x100. You have Small Image Height = 200, large Image Height is not set. In this case your thumbnail is 200x200, put the popup large image is smaller at 100x100

 

2) The image really is 500x500. Here, the thumbnail will be 200x200 and the popup is 500x500 which is probably what you want. However, you have downloaded the large 500x500 image and displayed it smaller. This will result in really slow page loading times.

 

This assumes you are using the same image for Small Image as for Large Image, which you won't be. It was just for example.

 

The way I have set up my sizes is Small Image Width not set, Height = 120. Medium Image Width and Height both 200, and Large Image Height and Width not set.

 

I have made sure that all my thumbnails are exactly 120 pixels high even though the width varies. This means I don't download bigger images than required. If I did set the Width to some value, the images would be distorted to fit, so I let the Width float to whatever it really is.

 

The other thing to remember is the fall back route. The popup window looks to see if there is an entry in products_image_lrg, if not it uses products_image. It doesn't check to see if the file exists, just whether there is a database entry. In either case it uses Large Image height and width parameters.

 

So if these values are set to small values, even a large image will be displayed small.

 

Did that help?

Link to comment
Share on other sites

Did that help?

 

 

Thanks for taking time to help.

 

I had seen those values in there in there default values,,, but figured that was the values from b4 installing this mod.

 

I'll give it a whirl and see if i cant get all leveled out now..

 

Again,, thank you very much for your help

 

Regards

Tom

Link to comment
Share on other sites

I don't think anything is wrong.

 

Why are you expecting the image to be deleted?

 

Cyberdog,

 

I think I can understand where he is getting this.

 

When I go into my product ,, from the admin side,,

where you define the images, if you go back into it to edit it.

it actually shows the image you have,,

 

has a line telling how many products are using this image,

has a remove check box to remove it from that product,,

and has a delete check box to delete the image from the server if you wish.

 

So yea,, I assumed the same thing,, that it means if you check the box, when you update the listing, that it would delete it from the server.

 

Regards

Tom

Link to comment
Share on other sites

Cyberdog

 

Thanks dude,, that did help to resolve part of it.

 

however,, i do have two small problem left with this regarding image size.

 

one,,,well,, both are regarding the popup that comes up when u click in the product details.

 

the first issue is,, that the image that comes up in the popup is my med. sized image instead of my large image as defined in the product details and size set in the admin / conf/ images details.

The second issue with the popup is that the size of the popup box is not as large as the image and you have to click to open the box up more to see the image.

 

Where would i go to resolve those two issues?

 

Thanks again,, for the help

 

Regards

tom

Link to comment
Share on other sites

Still having the same problem. When a client clicks to enlarge, the popup is opening, but not pulling the right image, it gives the small / med image instead of the larger one listed in the popup line in the product define in admin.

The size of the product window is to small to, its not opening up enough to see the image inside.

 

Where can i look for this problem

 

Thanks

Tom

Link to comment
Share on other sites

Tom, not sure what to say.

 

The code reads:

           if (($HTTP_GET_VARS['image'] ==0) && ($products['products_image_lrg'] != '')) {
    echo tep_image(DIR_WS_IMAGES . $products['products_image_lrg'], "Click to Close window", LARGE_IMAGE_WIDTH, LARGE_IMAGE_HEIGHT);
    } elseif ($HTTP_GET_VARS['image'] ==1) {
    echo tep_image(DIR_WS_IMAGES . $products['products_image_xl_1'], "Click to Close window", LARGE_IMAGE_WIDTH, LARGE_IMAGE_HEIGHT);
    } elseif ($HTTP_GET_VARS['image'] ==2) {
    echo tep_image(DIR_WS_IMAGES . $products['products_image_xl_2'], "Click to Close window", LARGE_IMAGE_WIDTH, LARGE_IMAGE_HEIGHT);
    } elseif ($HTTP_GET_VARS['image'] ==3) {
    echo tep_image(DIR_WS_IMAGES . $products['products_image_xl_3'], "Click to Close window", LARGE_IMAGE_WIDTH, LARGE_IMAGE_HEIGHT);
    } elseif ($HTTP_GET_VARS['image'] ==4) {
    echo tep_image(DIR_WS_IMAGES . $products['products_image_xl_4'], "Click to Close window", LARGE_IMAGE_WIDTH, LARGE_IMAGE_HEIGHT);
    } elseif ($HTTP_GET_VARS['image'] ==5) {
    echo tep_image(DIR_WS_IMAGES . $products['products_image_xl_5'], "Click to Close window", LARGE_IMAGE_WIDTH, LARGE_IMAGE_HEIGHT);
    } elseif ($HTTP_GET_VARS['image'] ==6) {
    echo tep_image(DIR_WS_IMAGES . $products['products_image_xl_6'], "Click to Close window", LARGE_IMAGE_WIDTH, LARGE_IMAGE_HEIGHT);
    } else
    echo tep_image(DIR_WS_IMAGES . $products['products_image'], "Click to Close window", LARGE_IMAGE_WIDTH, LARGE_IMAGE_HEIGHT);
    ?>

 

So if your popup is being called with pID= and image=0 AND there is an entry in products_image_lrg, then it should display it!

 

The size thing is interesting. You can see fudge-code to resize the window differently if your browser is Netscape:

function resize() {
 if (navigator.appName == 'Netscape') i=40;
 if (document.images[0]) window.resizeTo(document.images[0].width +30, document.images[0].height+60-i);
 self.focus();
}

 

Other than that, I'm not sure what's going on. But I would really, really check that you have entries in products_image_lrg not just products_image.

 

Oops - that's my code, with the 'click to close window' ALT text. Yours won't say that.

 

As an aside, I really don't like the way the additional 6 large and small images are hardcoded everywhere. It leads to massive code bloat and duplication. It must be possible to use a loop from 1 to 6 in most places. Still, this contribution is a lot better than anything I've coded so far.

Link to comment
Share on other sites

Firstly I think this contribution is amazing. Thanks very much Lee.

 

I have been using ultra pics updated

 

Firstly I installed it into a clean version of MS2.2 and it worked perfectly.

 

I have tried to implement it into my files that have been modified. Unfortunately I get this error message

 

Parse error: parse error in C:\Program Files\Apache Group\Apache2\htdocs\work\catalog\admin\categories.php on line 1654

 

and can not figure out what is missing.

 

Would anyone be willing to help me out please. If so I will post my code if necessary.

 

Many Thanks

Link to comment
Share on other sites

Parse error: parse error in C:\Program Files\Apache Group\Apache2\htdocs\work\catalog\admin\categories.php on line 1654

Unfortunately the PHP interpreter is being as helpful as it can be.

 

A parse error is where something that is required cannot be found. Very often this means quotes or brackets that do not match. In my version of configuration.php, line 1654 consists solely of }.

 

This is the closing } of an if () { .. } else { ... } statement. If I got that message on that line, it would mean that the error is somewhere within the if () statemement. The interpreter will report an error on the line it has got to - the error can in fact start many lines before.

 

Check, double check, triple check. There is something missing or extra. The interpreter needs all quotes, brackets and language constructs to be balanced.

 

If you go around cutting and pasting code it is really really easy to get this sort of error. In fact you are lucky - my site does not report parse errors unless I run php from the command line on the page in question.

Link to comment
Share on other sites

I have WYSIWYG HTMLArea MS2 v1.7 and EasyPopulate 2.74 installed. Now I'd like to add Ultrapics to my shop. Which version should I use?

 

It will be very nice if this mod can have a step by step intall guide, like the other contributions.

Link to comment
Share on other sites

Bump :-" and

 

Can anybody give a hand on this? I tried to add the "27 Nov 2003 - WYSIWYG HTML ADDON" but I cant get it work. I have WYSIWYG HTMLArea MS2 v1.7 and EasyPopulate 2.74 installed before.

 

Admin totally messed up some setting titles are duplicated or more.

 

configuration/images:

 

Title Value Action

Small Image Width 100

Small Image Height 80 Info

Heading Image Width 57 Info

Heading Image Height 40 Info

Subcategory Image Width 100 Info

Subcategory Image Height 57 Info

Calculate Image Size true Info

Image Required true Info

Enable Additional Images? Enable Info

Enable Additional Images? Enable Info

Enable Additional Images? Enable Info

Enable PHP Image Manager? Enable Info

Enable PHP Image Manager? Enable Info

Enable PHP Image Manager? Enable Info

Additional Thumb Width 140 Info

Additional Thumb Width 140 Info

Additional Thumb Width 140 Info

Additional Thumb Height 120 Info

Additional Thumb Height 120 Info

Additional Thumb Height 120 Info

Medium Image Width 200 Info

Medium Image Width 200 Info

Medium Image Width 200 Info

Medium Image Height 200 Info

Medium Image Height 200 Info

Medium Image Height 200 Info

Large Image Width (Pop-up) 0 Info

Large Image Width (Pop-up) Info

Large Image Width (Pop-up) Info

Large Image Height (Pop-up) 0 Info

Large Image Height (Pop-up) Info

Large Image Height (Pop-up) Info

 

 

 

configuration/WYSIWYG Editor 1.7 looks like this

 

Title Value Action

PRODUCT DESCRIPTIONS use WYSIWYG HTMLAREA? Enable

PRODUCT DESCRIPTIONS use WYSIWYG HTMLAREA? Enable Info

PRODUCT DESCRIPTIONS use WYSIWYG HTMLAREA? Enable Info

PRODUCT DESCRIPTIONS use WYSIWYG HTMLAREA? Enable Info

Product Description Basic/Advanced Version? Basic Info

Product Description Basic/Advanced Version? Basic Info

Product Description Basic/Advanced Version? Basic Info

Product Description Basic/Advanced Version? Basic Info

Product Description Layout Width 505 Info

Product Description Layout Width 505 Info

Product Description Layout Width 505 Info

Product Description Layout Width 505 Info

Product Description Layout Height 240 Info

Product Description Layout Height 240 Info

Product Description Layout Height 240 Info

Product Description Layout Height 240 Info

CUSTOMER EMAILS use WYSIWYG HTMLAREA? Enable Info

Customer Email Basic/Advanced Version? Basic Info

Customer Email Layout Width 505 Info

DEFINE MAINPAGE use WYSIWYG HTMLAREA? Enable Info

DEFINE MAINPAGE use WYSIWYG HTMLAREA? Enable Info

DEFINE MAINPAGE use WYSIWYG HTMLAREA? Enable Info

Customer Email Layout Height 140 Info

Define Mainpage Basic/Advanced Version? Basic Info

Define Mainpage Basic/Advanced Version? Basic Info

Define Mainpage Basic/Advanced Version? Basic Info

NEWSLETTER EMAILS use WYSIWYG HTMLAREA? Enable Info

Newsletter Email Basic/Advanced Version? Basic Info

Newsletter Email Layout Width 505 Info

Define Mainpage Layout Width 605 Info

Define Mainpage Layout Width 605 Info

Define Mainpage Layout Width 605 Info

Newsletter Email Layout Height 140 Info

DEFINE MAINPAGE use WYSIWYG HTMLAREA? Enable Info

Define Mainpage Basic/Advanced Version? Basic Info

Define Mainpage Layout Height 300 Info

Define Mainpage Layout Height 300 Info

Define Mainpage Layout Height 300 Info

Define Mainpage Layout Width 605 Info

Define Mainpage Layout Height 300 Info

INFORMATION PAGES UNLIMITED use WYSIWYG HTMLAREA? Enable Info

INFORMATION PAGES UNLIMITED use WYSIWYG HTMLAREA? Enable Info

INFORMATION PAGES UNLIMITED use WYSIWYG HTMLAREA? Enable Info

GLOBAL - User Interface Font Type Times New Roman Info

Information Pages Basic/Advanced Version? Basic Info

Information Pages Basic/Advanced Version? Basic Info

Information Pages Basic/Advanced Version? Basic Info

GLOBAL - User Interface Font Size 12 Info

Information Pages Layout Width 505 Info

Information Pages Layout Width 505 Info

Information Pages Layout Width 505 Info

Information Pages Layout Height 240 Info

Information Pages Layout Height 240 Info

Information Pages Layout Height 240 Info

GLOBAL - User Interface Font Colour Black Info

CUSTOMER EMAILS use WYSIWYG HTMLAREA? Enable Info

CUSTOMER EMAILS use WYSIWYG HTMLAREA? Enable Info

CUSTOMER EMAILS use WYSIWYG HTMLAREA? Enable Info

GLOBAL - User Interface Background Colour White Info

Customer Email Basic/Advanced Version? Basic Info

Customer Email Basic/Advanced Version? Basic Info

Customer Email Basic/Advanced Version? Basic Info

GLOBAL - ALLOW DEBUG MODE? 0 Info

Customer Email Layout Width 550 Info

Customer Email Layout Width 550 Info

Customer Email Layout Width 550 Info

Customer Email Layout Height 300 Info

Customer Email Layout Height 300 Info

Customer Email Layout Height 300 Info

NEWSLETTER EMAILS use WYSIWYG HTMLAREA? Enable Info

NEWSLETTER EMAILS use WYSIWYG HTMLAREA? Enable Info

NEWSLETTER EMAILS use WYSIWYG HTMLAREA? Enable Info

Newsletter Email Basic/Advanced Version? Basic Info

Newsletter Email Basic/Advanced Version? Basic Info

Newsletter Email Basic/Advanced Version? Basic Info

Newsletter Email Layout Width 505 Info

Newsletter Email Layout Width 505 Info

Newsletter Email Layout Width 505 Info

Newsletter Email Layout Height 140 Info

Newsletter Email Layout Height 140 Info

Newsletter Email Layout Height 140 Info

GLOBAL - User Interface (GUI) Font Type Times New Roman Info

GLOBAL - User Interface (GUI) Font Type Times New Roman Info

GLOBAL - User Interface (GUI) Font Type Times New Roman Info

GLOBAL - User Interface (GUI) Font Size 12 Info

GLOBAL - User Interface (GUI) Font Size 12 Info

GLOBAL - User Interface (GUI) Font Size 12 Info

GLOBAL - User Interface (GUI) Font Colour Black Info

GLOBAL - User Interface (GUI) Font Colour Black Info

GLOBAL - User Interface (GUI) Font Colour Black Info

GLOBAL - User Interface (GUI) Background Colour White Info

GLOBAL - User Interface (GUI) Background Colour White Info

GLOBAL - User Interface (GUI) Background Colour White Info

GLOBAL - ALLOW DEBUG MODE? 0 Info

GLOBAL - ALLOW DEBUG MODE? 0 Info

GLOBAL - ALLOW DEBUG MODE? 0 Info

 

I think I pasted wrong codes to the wrong places.

Need help to solve this :'(

Link to comment
Share on other sites

Is it only me that notices that UltraPics "10 Mar 2004 - Revised package" does not function properly when using the browser "FireFox" .. I cant seem to find the Upload Submit Form Button or that JS that came equipped with the contribution. In IE it seems flawless but in FireFox its a noshow.

 

Thanks in advance

Edited by ebsd
Link to comment
Share on other sites

Is it only me that notices that UltraPics "10 Mar 2004 - Revised package" does not function properly when using the browser "FireFox" .. I cant seem to find the Upload Submit Form Button or that JS that came equipped with the contribution.  In IE it seems flawless but in FireFox its a noshow.

 

Thanks in advance

 

Ir's worse than that. There is the HTMLAREA code which is also used by Ultrapics for its image upload stuff. This uses non-standard IE only features. It won't even work on the Internet Explorer for Mac, only IE for PC v6 and above.

 

HTMLAREA is an external product. The version used in Ultrapics is version 2. There is also Version 3, which uses standard browser features and works properly in not only Firefox but also Safari. (Hint - I use a Mac).

 

Unfortunately it isn't easy to just unplug V2 and insert V3 - I've tried. The interface changed quite a lot, and V2 has been modifed specifically for this contribution.

 

That's the m,ain reason i still monitor this forum - hoping someone with significant coding skills cna update the contriubtion to use HTMLAREA V3.

 

It does seem that MaxiDVD has other things to do right now, unfortunately. He hasn't been around for a while.

Link to comment
Share on other sites

Thanks Cyberdog your the headsup, I was just thinking in the same lines of v2'ing to v3'ing -- you sure helped me cutt down time time of experimenting; If I come across a quickfix I will be sure to post it as a contribution.

 

 

Ir's worse than that.  There is the HTMLAREA code which is also used by Ultrapics for its image upload stuff.  This uses non-standard IE only features.  It won't even work on the Internet Explorer for Mac, only IE for PC v6 and above.

 

HTMLAREA is an external product. The version used in Ultrapics is version 2.  There is also Version 3, which uses standard browser features and works properly in not only Firefox but also Safari.  (Hint - I use a Mac).

 

Unfortunately it isn't easy to just unplug V2 and insert V3 - I've tried.  The interface changed quite a lot, and V2 has been modifed specifically for this contribution.

 

That's the m,ain reason i still monitor this forum - hoping someone with significant coding skills cna update the contriubtion to use HTMLAREA V3.

 

It does seem that MaxiDVD has other things to do right now, unfortunately.  He hasn't been around for a while.

Link to comment
Share on other sites

  • 3 weeks later...

Great contribution works a treat! :D

 

I wondered whether it was possible to set the ALT text for each of the images added. I need to describe each of the product images.

 

Anyone managed to do this? If not any advice as to how to tackle it....

 

THX,

Jon

Link to comment
Share on other sites

Greetings All !

 

I've installed UltraPics into two sites.

 

On one, it works just fine.

 

On the other, when I'm on the /admin/categories.php page and I click on an image icon to generate that pop-up window.... the pop-up window shows some things are "slightly messed up".

 

On the left, where you see the folders, I see the folder names... but next to them, instead of seeing the folder icons, I see broken image links. I've double-checked and my images are all in the right locations. And I can't exactly right-click and view what URL the script "thinks" it should be pulling each image from.

 

If I try clicking on a folder name in this left-hand pane, suddenly, the entire pane becomes my 404 error page!

 

In the right-pane, I will briefly see the "No image selected for preview" words... but then that suddenly changes into my site's 404 error page!

 

 

At first, I thought it was simply a wrong setting for an images directory in the config file. However, other images in this store are working fine, so that didn't make sense.

 

I even copied over the categories.php from my store where this is working to this store where it isn't. Same thing!

 

Any ideas how I can troubleshoot this? I take it that pop-up comes from a javascript file?

 

Has anybody else ever seen this problem?

 

 

Thanks!

 

-= Dave =-

Link to comment
Share on other sites

Greetings All !

 

I've installed UltraPics into two sites.

 

On one, it works just fine.

 

On the other, when I'm on the /admin/categories.php page and I click on an image icon to generate that pop-up window.... the pop-up window shows some things are "slightly messed up".

 

On the left, where you see the folders, I see the folder names... but next to them, instead of seeing the folder icons, I see broken image links.  I've double-checked and my images are all in the right locations.  And I can't exactly right-click and view what URL the script "thinks" it should be pulling each image from.

 

If I try clicking on a folder name in this left-hand pane, suddenly, the entire pane becomes my 404 error page!

 

In the right-pane, I will briefly see the "No image selected for preview" words... but then that suddenly changes into my site's 404 error page!

At first, I thought it  was simply a wrong setting for an images directory in the config file.  However, other images in this store are working fine, so that didn't make sense.

 

I even copied over the categories.php from my store where this is working to this store where it isn't.  Same thing!

 

Any ideas how I can troubleshoot this?  I take it that pop-up comes from a javascript file?

 

Has anybody else ever seen this problem?

Thanks!

 

-= Dave =-

 

 

I noticed that OscImageRoot wasn't getting set properly in categories.php. Fixed it, however, my problem is still exactly the same!

 

 

-= Dave =-

Link to comment
Share on other sites

Greetings All !

 

I even copied over the categories.php from my store where this is working to this store where it isn't.  Same thing!

 

Any ideas how I can troubleshoot this?  I take it that pop-up comes from a javascript file?

 

Has anybody else ever seen this problem?

Thanks!

 

-= Dave =-

 

This is just a thought, based on similar problems I have seen.

 

You are aware that there are two configure.php files, one under /store/includes and one under /store/admin/includes? It is reallly annoying having to keep two files up to date, as I personally don't want the 'flexibilty' of being able to configure the store completely differently than the admin area.

 

Sorry if this is rather basic, but it is often the simplest things that get overlooked.

 

Martin

Link to comment
Share on other sites

This is just a thought, based on similar problems I have seen.

 

You are aware that there are two configure.php files, one under /store/includes and one under /store/admin/includes?  It is reallly annoying having to keep two files up to date, as I personally don't want the 'flexibilty' of being able to configure the store completely differently than the admin area.

 

Sorry if this is rather basic, but it is often the simplest things that get overlooked.

 

Martin

 

 

Yes, I'm very familiar with the file structure. I've spent the last two weeks installing about a dozen different modules into two different store systems, one of them having a "live" environment and a "test environment".

 

Thank, Martin!

 

-= Dave =-

Link to comment
Share on other sites

Does anybody know, how to add the possibility of an image description. I would want to use the additional images as a description to setup certain products. Therefore, it be necessary to add a short description to the image, explaining the steps. Or do you know an existing contrib which offers this kind of image description?

 

Also, currently when I add additional images ex. 2 images extra, the other images still display as refering to images/Object. How did you get rid of the missing x images.

Edited by SwissChris
Link to comment
Share on other sites

Yes, I'm very familiar with the file structure.  I've spent the last two weeks installing about a dozen different modules into two different store systems, one of them having a "live" environment and a "test environment". 

 

Thank, Martin!

 

-= Dave =-

 

 

Well, I figured it out. Because my actual catalog is in a subdirectory... and not a main directory of my site... that's why the URLs were not being generated properly.

 

My entire store... except for this... was working properly, so I know my configuration.php values were correct.

 

However, in the file /admin/htmlarea/popups/config.inc.php... there's a line that said:

 

define("SCRIPT_URL", trim(DIR_WS_ADMIN . "htmlarea/popups/"));

 

Because of this... url's for various HTMLAREA images were being generated WITHOUT the proper catalog subdirectory listed in the URL.

 

Example:

 

Actual URL should have been:

http://mydomain.com/oscdemo/admin/htmlarea/popups/closed.gif

 

But came out as:

http://mydomain.com/admin/htmlarea/popups/closed.gif

 

I changed that line above to:

define("SCRIPT_URL", trim(DIR_WS_CATALOG.DIR_WS_ADMIN . "htmlarea/popups/"));

 

And now the popup appears to be functioning properly.

 

 

 

Now, I still have NO idea why... on another site... where I'm using a subdirectory as well, I haven't had any problems!

 

Oh well....

 

 

Thanks!

 

-= Dave =-

Link to comment
Share on other sites

I'm glad you figured it out Dave. How about answers to my last post? Do you know more about the issue of faulty images entered in place of no image selected? Or do you know of a way to add a description to each pricture?

 

Does anybody know, how to add the possibility of an image description. I would want to use the additional images as a description to setup certain products. Therefore, it be necessary to add a short description to the image, explaining the steps. Or do you know an existing contrib which offers this kind of image description?

 

Also, currently when I add additional images ex. 2 images extra, the other images still display as refering to images/Object. How did you get rid of the missing x images.

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