Check out the Latest Articles:

  1. hakanNo Gravatar on Sunday 12, 2009

    yeni sitili ekledigimde su hatayi aliyorum
    Warning: include(kampanya/style_3/catalog/configuration.php) [function.include]: failed to open stream: No such file or directory in C:\wamp\www\cat2\includes\modules\flash_carousel.php on line 15

    Warning: include() [function.include]: Failed opening ‘kampanya/style_3/catalog/configuration.php’ for inclusion (include_path=’.;C:\php5\pear’) in C:\wamp\www\cat2\includes\modules\flash_carousel.php on line 15

    sebebi ne olabilir acaba Tesekkurler simdiden

    Reply

    adminNo Gravatar Reply:

    Merhaba,

    Bu şekilde bir hata almamız gerekiyor. Mümkünse sitenizin adresini gönderir misiniz?

    Reply

  2. hakanNo Gravatar on Sunday 12, 2009

    ben siteyi kendi bilgisayarima kurdum giger sitiller calisiyor ama bu 3. sitil calismadi ama hatayi yazdim yukarda. ve cikan ekrandada adobenin kucuk iconu var diger sitillerde yok

    Reply

  3. hakanNo Gravatar on Sunday 12, 2009

    birsey daha ben bunu catalog icindeki kampanya dizine attim. dogru kopyalamisim dimi

    Reply

    adminNo Gravatar Reply:

    Evet doğru yapmışsınız.

    Reply

  4. hakanNo Gravatar on Sunday 12, 2009

    cevabinizi bekliyorum

    Reply

  5. ivyfleurNo Gravatar on Sunday 12, 2009

    Hi there,

    After I carried out the upgrade from 3.0 to 3.2 all is okay as far as the carousel is concerned but I now have a whole bunch of errors as far as the SEO URLS are concerned.

    An example is below:

    [quote]Notice: Undefined variable: _sid in /home/mydomain/public_html/includes/classes/seo.class.php on line 800[/quote]

    I think is is because of the change in the configure.php
    Anyway to rectify the issue?
    Thanks for a great mod.

    Reply

    adminNo Gravatar Reply:

    I think problem sources from catalog/includes/classes/flash_carousel_image_resize.php file.

    If you look 27th line you will see
    error_reporting(E_ALL);

    So you need to turn off by putting //.
    Then your code will be
    //error_reporting(E_ALL);

    Reply

    ivyfleurNo Gravatar Reply:

    Yes thanks. I happen to read an earlier comment where the person had the same problem and I followed this exact same advice which solved the problem.

    Thank you and regards.

    Reply

  6. AdamNo Gravatar on Sunday 12, 2009

    Please view the website link above and tell me how to fix this problem,
    thank you for your help in advanced,

    Marhaba :)

    Reply

    adminNo Gravatar Reply:

    You need to resize carousel images. It is easy step. Just go http://www.oscommercex.com/oscommerce-flash-carousel/oscommerce-flash-carousel-usage/ and check the osCommerce Flash Carousel confgurations. You will see configuration.
    Want to Resize Images? :D o you want to resize images which Flash Carousel addon shows? Ideal image dimension 100px X 75px. If your image larger than 100px X 75px, you can configure true.

    Reply

  7. MAURICIONo Gravatar on Sunday 12, 2009

    hELLO
    SORRY FOR MY ENGLISH
    THIS STYLE WORS WITH THE ADDONS “MORE PICS”
    I INSTALLED BUT NO WORKS
    PLEAS HELP ME
    THANKS

    Reply

    adminNo Gravatar Reply:

    If you send your website address I can look what the problem is?

    Reply

  8. TheExterminatorNo Gravatar on Sunday 12, 2009

    I can not get the moduls to see on the site

    Reply

  9. MustafaNo Gravatar on Sunday 12, 2009

    Hocam bu işlerde yeniyim yardımınıza ihtiyacım var. Oscommerce kurulumu yaptım yeni bi temada yükledim. Bu flash carouseli siteme eklemek istiyorum ama kurulumunu nasıl yapacağım? ftp’ye attım ama admin panelde nerden ayar yapacağım? muhtemelen yanlış yere kopyaladım:) bi el atın hocamda şu işi yapıyım.

    Reply

  10. tuniloveNo Gravatar on Sunday 12, 2009

    hi than k you for this great job …..inn my installation all was Ok the only problem that i don’t see in my admin configuration the flash carousel link so i can edit my configuration i can see the flash carousel product under catalog i think something missing in the installation descriptions ,,,, any help

    Reply

    adminNo Gravatar Reply:

    Can you send your website address?

    Reply

  11. cipNo Gravatar on Sunday 12, 2009

    I installed the new style but it gives me an error when i try to change the original one.

    Fatal error: Call to undefined function tep_cfg_pull_down_flash_styles() in /home/eunicro/public_html/admin/configuration.php(125) : eval()’d code on line 1

    Can u help?

    Reply

    adminNo Gravatar Reply:

    You forgot the step 7. Please check installation step 7.

    Reply

  12. guidobNo Gravatar on Sunday 12, 2009

    Hi,
    it is possible to add a backgroud image and insert in the middle of carousel anhother image?
    Thanks

    Reply

    adminNo Gravatar Reply:

    Please check following address http://www.oscommercex.com/2009/06/how-to-add-background-image-to-flash-carousel/

    Reply

  13. GaryNo Gravatar on Sunday 12, 2009

    This is a great cotribution, but i have an odd problems, that i hope you can help with.
    I have the carousel working on a test page, but for spome reason i get “11111″ apear just above the carousel.
    When i remove the carousel the 11111 disapear, even if i dont enable it.

    I have searched the whole site for 11111 and came up with nothing that would cause this probelm.

    have a look at http://www.slidesandballscrews.com/testing

    Reply

    adminNo Gravatar Reply:

    The numbers you get are produced by flash_carousel_image_resize.php which is under catalog/includes/classes.
    when you look flash_carousel_image_resize.php line 218 you will see function create_image_from_source_file()
    According to this function;
    function create_image_from_source_file()
    {

    // performs some error checking first
    // if source file does not exists
    if (!is_file($this->sourceFile) || !file_exists($this->sourceFile)) {

    // save the error level and stop the execution of the script
    $this->error = 1;

    return false;

    // if source file is not readable
    }
    As you see script couldn’t read source file and produced error. If you feel that there is no problem about script change above script like below

    function create_image_from_source_file()
    {

    // performs some error checking first
    // if source file does not exists
    if (!is_file($this->sourceFile) || !file_exists($this->sourceFile)) {

    // save the error level and stop the execution of the script
    //$this->error = 1;

    //return false;

    // if source file is not readable
    }

    Reply

  14. GaryNo Gravatar on Sunday 12, 2009

    May be a good idea to be able to select categories as well as just products? and also be able to resize from admin?
    Looks very good.

    Reply

    adminNo Gravatar Reply:

    Actually resizing customly on administration needs hard work on flash.

    Reply

  15. GaryNo Gravatar on Sunday 12, 2009

    Thanks all sorted now.
    I have also noticed that if you select resize images, sometimes it will resize the image but the transparency is left out, so arround the product is white.
    not a big problem because i dont have it rezise the images.

    Reply