Jump to content

summerscloset

Member
  • Posts

    44
  • Joined

  • Last visited

  • Days Won

    1

Posts posted by summerscloset

  1. Hello,

    For some reason when I go to the categories on my website it is showing no products found.  the products are assigned to the categories and the categories are active.  I didnt have this problem before, and it seemed to come out of no where so the only thing I can think is something got messed up during a cubecart update being loaded. Does anyone have an idea how to fix this?

    Thanks

    Danee

  2. ok I tried that. I did get a white screen and also a white screen when accessing my site. I replaced it back with common because of that.  When I upgraded cubecart the last few times, I was getting this blank screen as well.  My hosting company hostmonster said they had to

    "reenable the php settings in the php.ini when i upgrade" to get my site back up.  I am assuming it is the problem?

    My submit buttons at the top are there.  What would I need to do to fix this?

    Thanks!

  3. I cant find what you are meaning in the skins template main php

    Here is what is in my  skins template main php:

     

    <!DOCTYPE html>
    <html xmlns="http://www.w3.org/1999/xhtml" dir="{$TEXT_DIRECTION}" lang="{$HTML_LANG}">
    <head>
    <title>{$META_TITLE}</title>
    <link rel="canonical" href="{$VAL_SELF}"/>
    <link rel="shortcut icon" href="{$STORE_URL}/favicon.ico" type="image/x-icon"/>
    <link rel="stylesheet" type="text/css" href="{$STORE_URL}/skins/{$SKIN_FOLDER}/styles/common.css" media="screen"/>
    <link rel="stylesheet" type="text/css" href="{$STORE_URL}/skins/{$SKIN_FOLDER}/styles/dropdown.css" media="screen"/>
    <link rel="stylesheet" type="text/css" href="{$STORE_URL}/skins/{$SKIN_FOLDER}/styles/expandingsearch.css" media="screen"/>
    <link rel="stylesheet" type="text/css" href="{$STORE_URL}/skins/{$SKIN_FOLDER}/styles/print.css" media="print"/>
    <link rel="stylesheet" type="text/css" href="{$STORE_URL}/js/styles/styles.php" media="screen"/>
     {if isset($CSS)} {foreach from=$CSS key=css_keys item=css_files}
    <link rel="stylesheet" type="text/css" href="{$STORE_URL}/{$css_files}" media="screen"/>
     {/foreach} {/if}
    <!--[if IE]><link rel="stylesheet" type="text/css" href="{$STORE_URL}/skins/{$SKIN_FOLDER}/styles/ie.css" media="screen" /><![endif]-->
    <!--[if IE 8]><link rel="stylesheet" type="text/css" href="{$STORE_URL}/skins/{$SKIN_FOLDER}/styles/ie8.css"><![endif]-->
    <!--[if IE 7]><link rel="stylesheet" type="text/css" href="{$STORE_URL}/skins/{$SKIN_FOLDER}/styles/ie7.css"><![endif]-->
    <meta http-equiv="Content-Type" content="text/html;charset={$CHARACTER_SET}"/>
    <meta name="description" content="{$META_DESCRIPTION}"/>
    <meta name="keywords" content="{$META_KEYWORDS}"/>
    <meta name="robots" content="index, follow"/>
    <meta name="generator" content="cubecart"/>
     {if $ANALYTICS} {literal}
    <script type="text/javascript">
          var _gaq = _gaq || [];
          _gaq.push(['_setAccount', '{/literal}{$ANALYTICS}{literal}']);
          _gaq.push(['_trackPageview']);
          (function() {
            var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
            ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
            var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
          })();
        </script>
    {/literal} {/if}
    </head>
    <body>
    <div id="header">
        <div class="headerContainer">
            <a href="{$STORE_URL}" class="headerLogo"><img src="{$STORE_LOGO}" alt="{$META_TITLE}"/></a>
            {$SEARCH_FORM} {$SITE_DOCS}
            <div class="headerSelects">
                 {if isset($SKIN_SELECT)}{$SKIN_SELECT}{/if} {$LANGUAGE} {$CURRENCY}
                <div class="clear">
                    &nbsp;
                </div>
            </div>
        </div>
    </div>
     {$CATEGORIES}
    <div id="content">
        <div class="contentLeft">
             {$SESSION} {if isset($POPULAR_PRODUCTS)}{$POPULAR_PRODUCTS}{/if} {$SALE_ITEMS}
        </div>
        <div class="contentMid">
            <div id="breadcrumb">
                <ul>
                    <li><a href="{$STORE_URL}">{$LANG.common.home}</a></li>
                     {foreach from=$CRUMBS item=crumb}
                    <li><a href="{$crumb.url}">{$crumb.title}</a></li>
                     {/foreach}
                </ul>
            </div>
             {include file='templates/box.errors.php'} {if isset($CHECKOUT_PROGRESS)}{$CHECKOUT_PROGRESS}{/if} {$PAGE_CONTENT}
        </div>
        <div class="contentRight">
             {$SHOPPING_CART} {$MAIL_LIST} {$RANDOM_PROD}
        </div>
        <div class="clear">
            &nbsp;
        </div>
    </div>
    <div id="footer">
        <div class="footerContainer">
            <a href="{$STORE_URL}" class="footerLogo"><img src="{$STORE_LOGO}" alt="{$META_TITLE}"/></a>
            <div class="copyright">
                {$COPYRIGHT}
            </div>
             {$SITE_DOCS} {if !$CONFIG.disable_mobile_skin}
            <div class="mobile">
                <a href="{$STORE_URL}/index.php?display_mobile=1">{$LANG.common.mobile_site}</a>
            </div>
            {/if}
        </div>
    </div>
     {if isset($DEBUG_INFO)}{$DEBUG_INFO}{/if} {include file='js/common.html'} {if isset($JANRAIN)}{$JANRAIN}{/if} {if isset($LIVE_HELP)}{$LIVE_HELP}{/if} {foreach from=$JS_SCRIPTS key=k item=script}
    <script type="text/javascript" src="{$STORE_URL}/{$script|replace:'':'/'}"></script>
     {/foreach} {if $COOKIE_DIALOGUE}
    <form action="{$VAL_SELF}" class="cookies-notify" method="POST">
        <p>
            {$LANG.notification.cookie_dialogue|replace:'%s':{$CONFIG.store_name}}
        </p>
        <p{if $cookie_dialogue_fail} class="retry" {/if}><input type="checkbox" name="accept_cookies" value="1"/> {$LANG.notification.cookie_dialogue_declaration} <input type="submit" name="accept_cookies_submit" value="{$LANG.common.continue}" class="btn"/>
    </p>
    </form>
    <script type="text/javascript">
          jQuery(document).ready(function(e){
            jQuery(".cookies-notify").css("height", "0px").prependTo(jQuery("body")).animate({ height: "50px" }, 800);
        });
      </script>
     {/if}
    </body>
    </html>

  4. hello,

    I checked my file /js/common.html

     

    and what you listed is what I already have. Am I missing something?

    Thanks!

     

    <!-- Load JavaScript last -->
    <script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.7/jquery.min.js"></script>
    <script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jqueryui/1.7/jquery-ui.min.js"></script>
    <script type="text/javascript" src="{$STORE_URL}/js/plugins.php"></script>
    <script type="text/javascript" src="{$STORE_URL}/js/common.js"></script>

  5. Hello,

    I used to have the product image zoom enabled on my site.  Somewhere along the line it has gone missing.  Now when the additional product images are clicked on they are brought up in a separate window.  Before I could hover over the additional images and they would become the main image.  I have looked all over to find where this option went missing but no luck.  Any ideas? Thanks, Danee

    summerscloset.com

  6. Hello, another thought, the only other thing different I did to perhaps affect this is Host Monster my hosting service switched my site to PHP 5.4 since they are phasing out of the 5.2.  I had to switch it back to 5.2 because 5.4 was making the cube cart portion of my site not work at all. Perhaps this switching back and forth could have done this? Just a thought. I still dont understand the version changes, or even how to upgrade the cube cart portion of my sites php to the latest.

  7. One more question. Attached is the screen shot of my images-source folder in www.

    The jpgs in there are the images that I restored that are still not showing up on my site or in my admin images. Do you happen to know why if  they are in there that they are not on the site? I cant seem to figure it out, and other than re uploading all the images though admin one by one can't figure out how to fix my mess up.. Is there another folder they should be in? Thank you so much for your help.

    printscreenimages.doc

  8. Ok, I restored the image file from a back up. I now see what should be all the missing image files, in the html and www image-cache folders. The image cache folders in the home folder are empty, and in the ftp folder there is no image folder. I think that is the one I moved incorrectly. But I want to know where these images should be to show back up on my site before I touch anything. The images that stayed on my site seem to be in a folder within the html image cache folder called cache as well as a copy of them just in the images folder. They are showing up so I would think the restored images would as well, but they still are not.

    Can you let me know which folder these should correctly be in? Thanks so much, Danee

     

  9. Yes, I am using the stock skin with my mods again. I messed the image files up while I was trying to switch back to the skin. Even my logo image is gone. Some images are still there, and I see those in the files, but I do not see the images in any of the files that are not showing on my site. The logos I see in the www images file.I thought they were in the stock skin, but now I am not seeing them there. 

    I had moved the skin file originally accidentally to the public_ftp file when I was trying to restore it back to what I had before I was trying to copy it. The skin copied back to the public html file except the images folder which stayed with the renamed name. I then messed the image file up when I tried to return it to the proper skin file.

     

    I had created a different copy of the modified skin back when I tried to do all this months ago. I think it should have most of the mods I did. It is called mymodcrosshatch.

    But I am assuming the images I am missing arent in the skin at all as they shouldnt have been and I accidentally moved the wrong image file from where it should be.

     

    Hopefully that sheds some light, as I am ready to pull my hair out and wishing I had just not messed with updating it. :(

    Any help would be greatly appreciated.

    I tried to paste screenshots or attach a file but it is not letting me

  10. oh my, now I have royally messed something up. I tried renaming the items above to get the renamed version to show up in admin. That made my site go to a blank white page. So I renamed everything back and the skin showed up, just not all the images. The images stayed in the former named file.  I moved them back but somehow all my images got into the skin folder and before I destroy my site anymore I figured I would try to get a second opinion. Any help would be greatly appreciated.

×
×
  • Create New...