Page 1 of 79 1231151 ... LastLast
Results 1 to 10 of 786
  1. #1
    Join Date
    Jun 2007
    Location
    Australia - Melbourne
    Posts
    310
    Plugin Contributions
    6

    Default AJAX IMAGE Swapper support thread

    This is the support thread for AJAX Image Swapper.

    I have just uploaded the module in the download area. You can also look / download it here:

    http://www.webextremecustomiser.com/...&products_id=1

    I am too lazy to write down the information so just read it there ok

    enjoy!
    The greatest pleasure in life is doing what people say you cannot do.

    Check on www.WebExtremeCustomiser.com for my modules (free contribution):
    AJAX Image Swapper
    AJAX Banner Swapper
    Fixed Navigation

  2. #2
    Join Date
    Jul 2004
    Location
    stroud, gloucestershire
    Posts
    205
    Plugin Contributions
    1

    Default Re: AJAX IMAGE Swapper support thread

    Hi,

    Ive just installed this module and it will be a great advantage to have on my website, once i can get it working. At present i have everything installed but i dont get any product images show up unless i have already been into the AJAX manager in the admin and setup a product image for each product?

    Does this mod not do any checking to see if an image exists first, if not it uses the satcdard image? I currently have over 2000 products on my website and theres no way i can go through quickly and get all these images updated.

    Many thanks

    Paul

  3. #3
    Join Date
    Jun 2007
    Location
    Australia - Melbourne
    Posts
    310
    Plugin Contributions
    6

    Default Re: AJAX IMAGE Swapper support thread

    Hi Paul,

    Yes, another user had also the same problem with you. Here is how to swap between AIS and standard view (if there are no images found).

    http://www.zen-cart.com/forum/showth...161#post486161
    The greatest pleasure in life is doing what people say you cannot do.

    Check on www.WebExtremeCustomiser.com for my modules (free contribution):
    AJAX Image Swapper
    AJAX Banner Swapper
    Fixed Navigation

  4. #4
    Join Date
    Jun 2007
    Location
    Australia - Melbourne
    Posts
    310
    Plugin Contributions
    6

    Default Re: AJAX IMAGE Swapper support thread

    By the way,

    if you have this module installed, but it is not working - if you go to admin & select a category, the name doesn't show up - please check the following:

    1. Have you set up your image attributes?
    2. Do you use PHP 5.1 or higher version?
    3. Have you shaved today? (kidding)
    The greatest pleasure in life is doing what people say you cannot do.

    Check on www.WebExtremeCustomiser.com for my modules (free contribution):
    AJAX Image Swapper
    AJAX Banner Swapper
    Fixed Navigation

  5. #5
    Join Date
    Dec 2007
    Posts
    130
    Plugin Contributions
    0

    Default Re: AJAX IMAGE Swapper support thread

    Hi I Installed now but I have the following SQL error

    1146 Table 'ysbase.zen_configuration_group' doesn't exist
    in:
    [SELECT @last_id :=last_insert_id() FROM zen_configuration_group;]
    If you were entering information, press the BACK button in your browser and re-check the information you had entered to be sure you left no blank fields.

    What can it be?

  6. #6
    Join Date
    Jun 2007
    Location
    Australia - Melbourne
    Posts
    310
    Plugin Contributions
    6

    Default Re: AJAX IMAGE Swapper support thread

    Quote Originally Posted by marcelo63 View Post
    Hi I Installed now but I have the following SQL error

    1146 Table 'ysbase.zen_configuration_group' doesn't exist
    in:
    [SELECT @last_id :=last_insert_id() FROM zen_configuration_group;]
    If you were entering information, press the BACK button in your browser and re-check the information you had entered to be sure you left no blank fields.

    What can it be?
    Whoops.

    Change zen_configuration_group to configuration_group and re-install.

    Beforehand, to uninstall the already inputted configuration group put this inside your Install SQL Patches:

    DELETE FROM configuration_group WHERE configuration_group_title = 'AJAX Image Swapper'

    Fixed the bug in 2.0.1
    The greatest pleasure in life is doing what people say you cannot do.

    Check on www.WebExtremeCustomiser.com for my modules (free contribution):
    AJAX Image Swapper
    AJAX Banner Swapper
    Fixed Navigation

  7. #7
    Join Date
    Nov 2007
    Posts
    3
    Plugin Contributions
    0

    Default Re: AJAX IMAGE Swapper support thread

    I just downloaded the application - when I go to unzip the file it says:

    "The file "AJAX_image_swapper_v2.0.1.zip" does not appear to be compressed or encoded. It is advised that you obtain further information about the contents of this file from the sender or provider of the file."

    This is on a MAC.

    I can open other zips etc fine - so it looks like something might be up with the file?

    Thank you!

    -Randall

  8. #8
    Join Date
    Nov 2007
    Posts
    3
    Plugin Contributions
    0

    Default Re: AJAX IMAGE Swapper support thread

    Figured it out - if you open up the ZIP file with something like "textedit" on the mac.

    You'll notice at the beginning of the file there is a PHP warning message that talks about "headers already being sent" and the output buffer.

    This sits right above all the encoded ASCII character stuff.

    Delete the portions that say:
    <br />
    <b>Warning</b>: mkdir() [<a href='function.mkdir'>function.mkdir</a>]: Permission denied in <b>/home/webextre/public_html/includes/modules/pages/download/header_php.php</b> on line <b>132</b><br />
    <br />
    <b>Warning</b>: Cannot modify header information - headers already sent by (output started at /home/webextre/public_html/includes/modules/pages/download/header_php.php:132) in <b>/home/webextre/public_html/includes/modules/pages/download/header_php.php</b> on line <b>146</b><br />

    Delete those lines and make sure there are no blank spaces at the top of the file.
    The first column of the first row should start with the encoded characters.

    Once this is done - save the file... don't do "save as" - just do "save" - quit TextEdit - now the ZIP file will behave correctly.

    To the Developer:

    On your download page or somewhere in the header even you need to put:

    <? ob_start(); ?>

    This starts output buffering and allows multiple headers to be requested. For example your website sends out header information and then when you click download it uses header information again to initiate the file download... this sometimes causes a warning to trip in PHP as described in the block of code that I said to remove from the ZIP file.

  9. #9
    Join Date
    Jun 2007
    Location
    Australia - Melbourne
    Posts
    310
    Plugin Contributions
    6

    Default Re: AJAX IMAGE Swapper support thread

    Quote Originally Posted by randallpga View Post

    To the Developer:

    On your download page or somewhere in the header even you need to put:

    <? ob_start(); ?>

    This starts output buffering and allows multiple headers to be requested. For example your website sends out header information and then when you click download it uses header information again to initiate the file download... this sometimes causes a warning to trip in PHP as described in the block of code that I said to remove from the ZIP file.
    Hey, Thanks a lot! I have been looking for the solution to that with no luck til now. I'll try it, thanks again in advance! ;)
    The greatest pleasure in life is doing what people say you cannot do.

    Check on www.WebExtremeCustomiser.com for my modules (free contribution):
    AJAX Image Swapper
    AJAX Banner Swapper
    Fixed Navigation

  10. #10
    Join Date
    Jun 2007
    Location
    Australia - Melbourne
    Posts
    310
    Plugin Contributions
    6

    Default Re: AJAX IMAGE Swapper support thread

    Great!

    Turns out I deleted the pub/ folder (or make it unwritable) which resulted on the error. I have now fixed the problem by create a new pub folder with write permission.

    Thanks a lot for pointing me the error message randall

    Let me know if you find the module useful

    Jay
    The greatest pleasure in life is doing what people say you cannot do.

    Check on www.WebExtremeCustomiser.com for my modules (free contribution):
    AJAX Image Swapper
    AJAX Banner Swapper
    Fixed Navigation

 

 
Page 1 of 79 1231151 ... LastLast

Similar Threads

  1. AJAX BANNER Swapper support thread
    By jaycode in forum All Other Contributions/Addons
    Replies: 19
    Last Post: 11 Oct 2012, 05:55 AM
  2. Any way to import image massively to AJAX Image Swapper ?
    By mybiz9999 in forum All Other Contributions/Addons
    Replies: 0
    Last Post: 17 Sep 2010, 04:35 PM
  3. Is there any way to massivly upload image to Ajax Image swapper?
    By mybiz9999 in forum All Other Contributions/Addons
    Replies: 0
    Last Post: 26 Jul 2010, 03:38 PM
  4. Error on AJAX IMAGE Swapper
    By easy665 in forum All Other Contributions/Addons
    Replies: 0
    Last Post: 28 Aug 2009, 02:38 PM
  5. AJAX Image Swapper Basic Support
    By jaycode in forum All Other Contributions/Addons
    Replies: 34
    Last Post: 31 Dec 2007, 06:48 PM

Bookmarks

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
Zen-Cart, Internet Selling Services, Klamath Falls, OR