Results 1 to 5 of 5
  1. #1
    Join Date
    Feb 2010
    Posts
    11
    Plugin Contributions
    0

    Default Looking for MYSQL Query to change image extension from .JPG to .jpg

    MYSQL Query...to change image extension from .JPG to .jpg


    need a mysql query to change all file extensions from .JPG to .jpg....

  2. #2
    Join Date
    Jul 2005
    Location
    Upstate NY
    Posts
    22,010
    Plugin Contributions
    25

    Default Re: Looking for MYSQL Query to change image extension from .JPG to .jpg

    Are you trying to change the actual image filename extensions? You can't do that with MySQL; that can only affect info stored in the database.

  3. #3
    Join Date
    Feb 2010
    Posts
    11
    Plugin Contributions
    0

    Default Re: Looking for MYSQL Query to change image extension from .JPG to .jpg

    no the files are already changed, but the file extension WITHIN the Database, need to be changed to all lower case just the extension

    so basically i would need a query to just look up product image, and change all extensions to .jpg from .JPG

    because right now since all the files have .jpg and DB is looking for .JPG.. and not showing any images.


    http://www.jdmengineland.com check out the product listing it doesnt show most images.

  4. #4
    Join Date
    Jun 2005
    Location
    Cumbria, UK
    Posts
    10,266
    Plugin Contributions
    3

    Default Re: Looking for MYSQL Query to change image extension from .JPG to .jpg

    BACKUP DBASE FIRST!!!!!

    UPDATE `zen_products` SET `products_image` = REPLACE(`products_image`, "JPG", "jpg") WHERE RIGHT(`products_image`, 3) = "JPG";

    Naturally, if your dbase does NOT use prefixes...

    UPDATE `products` SET `products_image` = REPLACE(`products_image`, "JPG", "jpg") WHERE RIGHT(`products_image`, 3) = "JPG";
    20 years a Zencart User

  5. #5
    Join Date
    Feb 2010
    Posts
    11
    Plugin Contributions
    0

    Default Re: Looking for MYSQL Query to change image extension from .JPG to .jpg

    thank you, much appreciated.

 

 

Similar Threads

  1. change image types to either png or jpg
    By tds_employee in forum General Questions
    Replies: 11
    Last Post: 26 May 2011, 06:03 AM
  2. Need help fixing quality when going from .JPG to .GIF and back to .JPG???
    By Gsk8r18 in forum Setting Up Categories, Products, Attributes
    Replies: 5
    Last Post: 8 Mar 2011, 07:51 PM
  3. some images not displaying because they're JPG instead of jpg
    By nathanscrivener in forum General Questions
    Replies: 7
    Last Post: 19 Nov 2010, 12:44 AM
  4. Replies: 2
    Last Post: 20 Nov 2008, 12:16 AM
  5. FILE_EXISTS for ZEN CART picture file system: pic.jpg pic_01.jpg pic_01_lrg.jpg
    By edwardtilbury in forum Templates, Stylesheets, Page Layout
    Replies: 0
    Last Post: 14 Nov 2008, 10:29 PM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
disjunctive-egg