Jump to content

convict

Member
  • Posts

    1,302
  • Joined

  • Last visited

  • Days Won

    1

Posts posted by convict

  1. Did everything that the readme.txt said to do, but for some reason on the Setup screen the upgrade option is not there!! It only shows the option to do a fresh install.

    Any one know anything about this??

    Your help is greatly appreciated.

    Missing file(s) is the reason.

    CC3 > CC4 UPGRADE REQUIRES

    includes/ini.inc.php

    includes/global.inc.php

    CC4 > CC4 UPGRADE REQUIRES

    ini.inc.php

    includes/global.inc.php

    Please note CubeCart 4 package DOES NOT contain includes/global.inc.php thus no risk of current file replacement.

  2. Sorry but this is not encoder related. :wacko: Encoder is any code functionality independent.

    If the admin session is detected the prices are shown regardless to your customer login status. In other words once you are logged in as an admin you'll see all prices regardless to your guest store front-end status.

    It seems you were logged in as an admin first time and did not for second one.

  3. CubeCart since v4.2 sends exact IPN URL to PayPal however PayPal does not allow you to enable it without a valid URL. Valid means formal it does not check the URL already exist but must have the URL format and valid top level domain.

    PayPal IPN feature since CubeCart 4.2 does override the IPN URL in PayPal defined.

    It is suggested to post a real URL to a real PayPal IPN file as I have mentioned to prevent confusion but you can enter something like this:

    http://mystore.com

    Hope this is clear.

  4. Don't know what kind of CubeCart ]variables[ you would like to use in STORE OFF LINE page.

    offline.php

    offline.htm

    offline.html

    are very suitable to write a valid XHTML page as the build-in message ability does not have any html header/foter code thus no html page result.

  5. Ok I have cubecart 4 installed, i set up the paypal mod, but my paypal account is asking for a IPN url. I dont see this anywhere in the cubecart setup. What do i put in this?? Is it the same as cubecart v3? Or do I leave it blank? Please help.

    Sorry wrong forum, can you move it to payment models forum?

    No this is not as the same as CubeCart 3. This is a small misunderstanding by 4.2 release. The code to show PayPal IPN and Return URL is commented out because into checkout form added but forgot PayPal does not set IPN feature without a URL.

    Please see html source code on PayPal CC4 admin setting page for the exact URL as this is generally like:

    http://your.store.tld/index.php?_g=rm&type=gateway&cmd=call&module=PayPal

  6. Since upgrading to CC4, I am no longer able to have 2 people logged into the admin at the same time. With CC3 I was able to do this, and it was quite convenient when 2 people were working on order and product changes from 2 separate computers.

    Does anyone know if this is able to be bypassed, or override this so as to have 2 people working in the admin from 2 computers at the same time?

    Thanks

    CubeCart 4 does not allow 2 people logged into the admin using the same credentials at the same time work simultaneously.
  7. Code is correct but this is the latest

    			if (salePrice($productResults[$i]['price'], $productResults[$i]['sale_price']) == false) {
    
    				$view_cat->assign("TXT_PRICE", priceFormat($productResults[$i]['price'], true));
    
    				$view_cat->assign("TXT_SALE_PRICE", '');
    
    				
    
    			} else {
    
    				$view_cat->assign("TXT_PRICE","<span class='txtOldPrice'>".priceFormat($productResults[$i]['price'], true)."</span>");
    
    				$salePrice = salePrice($productResults[$i]['price'], $productResults[$i]['sale_price']);
    
    				$view_cat->assign("TXT_SALE_PRICE", priceFormat($salePrice, true));
    
    			}

  8. I suggest you to try read the warning messages carefully.

    Warning: session_start() [function.session-start]: Cannot send session cache limiter - headers already sent (output started at /home/flapjack/domains/flapjack.nl/public_html/shop/ini.inc.php:224) in /home/flapjack/domains/flapjack.nl/public_html/shop/classes/session/cc_session.php on line 172

    As red marked says OUTPUT STARTED .....

    ini.inc.php - file name where output started

    224 line of file above where output started at

    As greebowarrior mentioned blank line(s) just after ?> is most likely the reason of such behavior. Please edit ini.inc.php to remove unwanted lines a the end, save and upload using FTP ASCII mode.

×
×
  • Create New...