Page 2 of 3 FirstFirst 123 LastLast
Results 11 to 20 of 22
  1. #11
    Join Date
    Jan 2004
    Posts
    66,373
    Blog Entries
    7
    Plugin Contributions
    274

    Default Re: 3 payment methods, only CC radio button missing

    While this is unlikely related to payment module issues, you're still triggering "page is insecure" errors because you have two occurrences of HTTP:// URLs in your stylesheet.css file:

    background-image:url('http://misasfashioncafe.com/includes/templates/MFC/images/white_texture.jpg');

    Changing it to this might work better:
    background-image:url(../images/white_texture.jpg);
    .

    Zen Cart - putting the dream of business ownership within reach of anyone!
    Donate to: DrByte directly or to the Zen Cart team as a whole

    Remember: Any code suggestions you see here are merely suggestions. You assume full responsibility for your use of any such suggestions, including any impact ANY alterations you make to your site may have on your PCI compliance.
    Furthermore, any advice you see here about PCI matters is merely an opinion, and should not be relied upon as "official". Official PCI information should be obtained from the PCI Security Council directly or from one of their authorized Assessors.

  2. #12

    Default Re: 3 payment methods, only CC radio button missing

    Thanks, got them.....but yes, no change. no radio button....
    You can't wait for inspiration. You have to go after it with a club.
    "Jack London"

  3. #13
    Join Date
    Aug 2005
    Location
    Arizona
    Posts
    27,761
    Plugin Contributions
    9

    Default Re: 3 payment methods, only CC radio button missing

    Thanks, got them.....but yes, no change. no radio button....
    I am still seeing this two times in your stylesheet.css file
    Code:
    background-image:url('http://misasfashioncafe.com/includes/templates/MFC/images/white_texture.jpg');
    Zen-Venom Get Bitten

  4. #14

    Default Re: 3 payment methods, only CC radio button missing

    I click on it from page source and it's changed....was changed, both instances...in stylesheet.css to:

    color: #000000;
    background-image:url('../images/white_texture.jpg');
    height:100%; width:100%;
    background-repeat:repeat;
    You can't wait for inspiration. You have to go after it with a club.
    "Jack London"

  5. #15
    Join Date
    Aug 2005
    Location
    Arizona
    Posts
    27,761
    Plugin Contributions
    9

    Default Re: 3 payment methods, only CC radio button missing

    Well now I see a lock when selecting login

    But I also see that your store front is under https:

    Post the /includes/configure.php contents
    Zen-Venom Get Bitten

  6. #16

    Default Re: 3 payment methods, only CC radio button missing

    Posted whole file...removed the secure info


    HTML Code:
    <?php
    
    /**
    
     * @package Configuration Settings circa 1.3.8
    
     * @copyright Copyright 2003-2007 Zen Cart Development Team
    
     * @copyright Portions Copyright 2003 osCommerce
    
     * @license http://www.zen-cart.com/license/2_0.txt GNU Public License V2.0
    
     */
    
    
    
    
    
    /*************** NOTE: This file is similar, but DIFFERENT from the "admin" version of configure.php. ***********/
    
    /***************       The 2 files should be kept separate and not used to overwrite each other.      ***********/
    
    
    
    // Define the webserver and path parameters
    
      // HTTP_SERVER is your Main webserver: eg-http://www.your_domain.com
    
      // HTTPS_SERVER is your Secure webserver: eg-https://www.your_domain.com
    
      define('HTTP_SERVER', 'https://www.misasfashioncafe.com');
    
      define('HTTPS_SERVER', 'https://www.misasfashioncafe.com');
    
      define('HTTP_CATALOG_SERVER', 'https://www.misasfashioncafe.com');
    
      define('HTTPS_CATALOG_SERVER', 'https://www.misasfashioncafe.com');
    
    
    
      // Use secure webserver for checkout procedure?
    
     define('ENABLE_SSL_CATALOG', 'true');
    
      define('ENABLE_SSL_ADMIN', 'true');
    
    
    
    // NOTE: be sure to leave the trailing '/' at the end of these lines if you make changes!
    
    // * DIR_WS_* = Webserver directories (virtual/URL)
    
      // these paths are relative to top of your webspace ... (ie: under the public_html or httpdocs folder)
    
      define('DIR_WS_ADMIN', '//');
    
      define('DIR_WS_CATALOG', '/');
    
      define('DIR_WS_HTTPS_ADMIN', '//');
    
      define('DIR_WS_HTTPS_CATALOG', '/');
    
    
    
      define('DIR_WS_IMAGES', 'images/');
    
      define('DIR_WS_INCLUDES', 'includes/');
    
      define('DIR_WS_FUNCTIONS', DIR_WS_INCLUDES . 'functions/');
    
      define('DIR_WS_CLASSES', DIR_WS_INCLUDES . 'classes/');
    
      define('DIR_WS_MODULES', DIR_WS_INCLUDES . 'modules/');
    
      define('DIR_WS_LANGUAGES', DIR_WS_INCLUDES . 'languages/');
    
      define('DIR_WS_DOWNLOAD_PUBLIC', DIR_WS_CATALOG . 'pub/');
    
      define('DIR_WS_TEMPLATES', DIR_WS_INCLUDES . 'templates/');
    
    
    
      define('DIR_WS_PHPBB', '/');
    
    
    
    // * DIR_FS_* = Filesystem directories (local/physical)
    
      //the following path is a COMPLETE path to your Zen Cart files. eg: /var/www/vhost/accountname/public_html/store/
    
      define('DIR_FS_ADMIN', '/home/misasfas/public_html//');
    
      define('DIR_FS_CATALOG', '/home/misasfas/public_html/');
    
    
    
      define('DIR_FS_CATALOG_LANGUAGES', DIR_FS_CATALOG . 'includes/languages/');
    
      define('DIR_FS_CATALOG_IMAGES', DIR_FS_CATALOG . 'images/');
    
      define('DIR_FS_CATALOG_MODULES', DIR_FS_CATALOG . 'includes/modules/');
    
      define('DIR_FS_CATALOG_TEMPLATES', DIR_FS_CATALOG . 'includes/templates/');
    
      define('DIR_FS_BACKUP', DIR_FS_ADMIN . 'backups/');
    
      define('DIR_FS_EMAIL_TEMPLATES', DIR_FS_CATALOG . 'email/');
    
      define('DIR_FS_DOWNLOAD', DIR_FS_CATALOG . 'download/');
    
    
    
    // define our database connection
    
      define('DB_TYPE', 'mysql');
    
      define('DB_PREFIX', '');
    
      define('DB_SERVER', 'localhost');
    
      define('DB_SERVER_USERNAME', '');
    
      define('DB_SERVER_PASSWORD', '');
    
      define('DB_DATABASE', '');
    
      define('USE_PCONNECT', 'false');
    
      define('STORE_SESSIONS', 'db');
    
      // for STORE_SESSIONS, use 'db' for best support, or '' for file-based storage
    
    
    
      // The next 2 "defines" are for SQL cache support.
    
      // For SQL_CACHE_METHOD, you can select from:  none, database, or file
    
      // If you choose "file", then you need to set the DIR_FS_SQL_CACHE to a directory where your apache 
    
      // or webserver user has write privileges (chmod 666 or 777). We recommend using the "cache" folder inside the Zen Cart folder
    
      // ie: /path/to/your/webspace/public_html/zen/cache   -- leave no trailing slash  
    
      define('SQL_CACHE_METHOD', 'none'); 
    
      define('DIR_FS_SQL_CACHE', '/home/misasfas/public_html/cache');
    
    
    
    // EOF
    Last edited by studiotucker; 18 Jan 2013 at 11:08 PM.
    You can't wait for inspiration. You have to go after it with a club.
    "Jack London"

  7. #17
    Join Date
    Aug 2005
    Location
    Arizona
    Posts
    27,761
    Plugin Contributions
    9

    Default Re: 3 payment methods, only CC radio button missing

    That is the admin configure

    Post the /includes/configure.php contents

    But these should be http:/
    Code:
      // HTTPS_SERVER is your Secure webserver: eg-https://www.your_domain.com
    
      define('HTTP_SERVER', 'http://www.misasfashioncafe.com');
    
      define('HTTPS_SERVER', 'https://www.misasfashioncafe.com');
    
      define('HTTP_CATALOG_SERVER', 'http://www.misasfashioncafe.com');
    
      define('HTTPS_CATALOG_SERVER', 'https://www.misasfashioncafe.com');
    Zen-Venom Get Bitten

  8. #18

    Default Re: 3 payment methods, only CC radio button missing

    /*************** NOTE: This file is similar, but DIFFERENT from the "admin" version of configure.php. ***********/
    You can't wait for inspiration. You have to go after it with a club.
    "Jack London"

  9. #19
    Join Date
    Jan 2004
    Posts
    66,373
    Blog Entries
    7
    Plugin Contributions
    274

    Default Re: 3 payment methods, only CC radio button missing

    Quote Originally Posted by studiotucker View Post
    /*************** NOTE: This file is similar, but DIFFERENT from the "admin" version of configure.php. ***********/
    Yes, but you've mixed up the contents of the two versions of configure.php

    The ADMIN version contains these lines:
    define('ENABLE_SSL_CATALOG', 'true');
    define('ENABLE_SSL_ADMIN', 'true');

    And the NON-ADMIN version should contain this:
    define('ENABLE_SSL', 'true');


    Yours are mixed up.
    .

    Zen Cart - putting the dream of business ownership within reach of anyone!
    Donate to: DrByte directly or to the Zen Cart team as a whole

    Remember: Any code suggestions you see here are merely suggestions. You assume full responsibility for your use of any such suggestions, including any impact ANY alterations you make to your site may have on your PCI compliance.
    Furthermore, any advice you see here about PCI matters is merely an opinion, and should not be relied upon as "official". Official PCI information should be obtained from the PCI Security Council directly or from one of their authorized Assessors.

  10. #20

    Default Re: 3 payment methods, only CC radio button missing

    Damn! spent most of a day on this and it always comes down to something small....Thanks you much!!! Fixed.

    Your support is incredible....there must be an army of Dr. Bytes
    You can't wait for inspiration. You have to go after it with a club.
    "Jack London"

 

 
Page 2 of 3 FirstFirst 123 LastLast

Similar Threads

  1. adding additional payment radio button(s)
    By Sushigal in forum Templates, Stylesheets, Page Layout
    Replies: 4
    Last Post: 7 Sep 2010, 04:21 PM
  2. Replies: 4
    Last Post: 22 Sep 2008, 09:45 AM
  3. Payment method radio button
    By arrow in forum Templates, Stylesheets, Page Layout
    Replies: 2
    Last Post: 17 Dec 2007, 03:22 PM
  4. Payment module radio button
    By rocketrod in forum Built-in Shipping and Payment Modules
    Replies: 22
    Last Post: 30 Aug 2007, 06:24 AM
  5. Payment Radio Button Text. How Do Ya Change It?
    By bumba000 in forum General Questions
    Replies: 5
    Last Post: 6 May 2007, 08:50 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