Jump to content

teric

Member
  • Posts

    10
  • Joined

  • Last visited

Posts posted by teric

  1. I  have got as far as the installation page, but when I click either admin control panel or store front I get a blank page.

     

    I've read through posts but I've not found anything to help. I've done a phpinfo to see if there is anything there

     

    I found

    PHP Version 5.3.10

    This program makes use of the Zend Scripting Language Engine:
    Zend Engine v2.3.0, Copyright © 1998-2012 Zend Technologies
        with Xdebug v2.1.2, Copyright © 2002-2011, by Derick Rethans

     

    In the php.ini file there is:

    zend_extension = "c:/wamp/bin/php/php5.3.10/zend_ext/php_xdebug-2.1.2-5.3-vc9.dll"

  2. I installed  cube cart 3 years ago and now I'm trying to install 5.2.8 on my local machine. This is my only experience with cube cart.

     

    I'm running wampserver 2.2. Mysql 5.5.20 PHP 5.3.10 Apache 2.2.1

     

    I use dreamweaver and I've uploaded to wamp/www/solas2014/shop

     

    When I run http://localhost/solas%202014/shop/setup/setup.install.php I get 6 lots of "Notice: Use of undefined constant......" then "Fatal error: Call to undefined function chmod_writable() in C:wampwwwsolas 2014shopsetupsetup.install.php on line 32"

     

    Line 32 starts with "if" The code is below.

     

    ## Attempt to chmod
                if (!chmod(CC_ROOT_DIR.CC_DS.$target, chmod_writable())) {
                    $perm_status    = false;
                    $permissions    = false;
                    $errors[] = sprintf($strings['setup']['error_x_not_writable'], $target);

     

    Any help would be most appreciated.

  3. I've come back to a site after a couple of years and I can't edit the home page.

    When I edit it I get the message "Configuration Updated. Please make sure the file permission have been set back correctly." but it doesn't change.

    I've read the earlier posts - post and I've changed the permissions on shop/language/en/home.inc.php to 777.

    I've tried editing this directly and I can, so it's the correct file. The changes show in Admin and on the web page when I edit the file directly, but I can't edit it in the admin panel.

    I've copied the whole site over from a different web site on my server and I can edit the home page on the original web site so I assume I have to edit a file at the new location.

    Does anyone know which file I edit?

  4. Hi Jason

    Thanks for the encouraging comment.

    When I change to classic view the gap disappears.

    I'm still trying to find out what does what - getting there slowly. I've changed the code to add the px, but no joy. I think that was code straight from dreamweaver.

    I've not tried changing the order of the cols, but I have checked the generated code and the relavent bits are:

    From my customised layout:

    <div id="contents">	  
    
    <div class="boxContent">
    
    <span class="txtContentTitle">Scotland's West Coast</span>
    
    <br clear="all" />
    
    <br clear="left" />
    
    <div><strong>Products in:</strong> /Scotland's West Coast</div>
    
    
    From Classic layout:
    
    
    
    <div class="colMid">
    
    <div class="boxContent">
    
    <span class="txtContentTitle">Scotland's West Coast</span>
    
    <br clear="all" />
    
    <br clear="left" />
    
    <div><strong>Products in:</strong> /Scotland's West Coast</div>
    
    <div class="pagination"></div>

    I've looked at the relavent CSS and can find nothing amiss.

    Anyone any thoughts??

  5. Nice job so far!

    One problem is in the style id "contents";

    #contents {
    
    	margin: 0 180px 0px 20px;
    
    	border-right-width: 1px;
    
    	border-right-style: solid;
    
    	border-right-color: #666666;
    
    	padding-top: 20px;
    
    	padding-right: 10px;
    
    }

    You've a missing "px" from the 1st parameter.

    I also notice that the layout isn't linear.. You've got the rightmost col coded before the left. In an ideal world , this should be fine, but some browsers don't like it. I've not checked the styles you've set-up, but I guess your're floating them into position.

    I'd personally put it into the correct flow for readability.

    I'm also not too sure why you've got 2 clear's in the code, just where the gap is...

    Jason

×
×
  • Create New...