Viewing 9 posts - 1 through 9 (of 9 total)
  • Author
    Posts
  • gaylepetrie Friend
    #134250

    Hi All,

    I have a seemingly standard Joomla 1.5.6 installation with VM1.1.2 using JA Mesolite.

    However, i have the checkout set to https in VM, but when a user goes to the checkout they are confronted with the “this page has secure and unsecure items” warning.

    When looking at the source of the page, i notice that the stylesheets, and VM productslide module and some scripts are not being called to use the HTTPS. VM is calling the https fine, it just seems to be the JA Mesolite template. Why is this? Have i missed a setting? As i would have thought a template specifically designed for VM would not have this issue.

    Any Help much appreciated to fix this problem!


    <link rel="stylesheet" href="http://www.site.com.au/templates/jamesolite/css/ja.vm.css" type="text/css" />

    <link rel="stylesheet" href="http://www.site.com.au/templates/system/css/system.css" type="text/css" />
    <link rel="stylesheet" href="http://www.site.com.au/templates/system/css/general.css" type="text/css" />
    <link rel="stylesheet" href="http://www.site.com.au/templates/jamesolite/css/template.css" type="text/css" />
    <link rel="stylesheet" href="http://www.site.com.au/templates/jamesolite/css/typo.css" type="text/css" />
    <link rel="stylesheet" href="http://www.site.com.au/templates/jamesolite/css/ja.vm.css" type="text/css" />

    <script language="javascript" type="text/javascript">
    var siteurl = 'http://www.site.com.au/';
    var tmplurl = 'http://www.gsite.com.au/templates/jamesolite';
    </script>

    <script language="javascript" type="text/javascript" src="http://www.site.com.au/templates/jamesolite/js/ja.script.js"></script>
    <!-- js for dragdrop -->

    <link href="http://www.site.com.au/templates/jamesolite/ja_menus/ja_cssmenu/ja.cssmenu.css" rel="stylesheet" type="text/css" />
    <script src="http://www.site.com.au/templates/jamesolite/ja_menus/ja_cssmenu/ja.cssmenu.js" language="javascript" type="text/javascript"></script>

    <link href="http://www.site.com.au/templates/jamesolite/css/colors/red.css" rel="stylesheet" type="text/css" />

    <div id="ja-mainnav">
    <ul id="ja-cssmenu" class="clearfix">
    <li class="havechild"><a href="http://www.site.com.au/" class="menu-item0 first-item" id="menu1" title="Home"><span class="menu-title">Home</span></a>

    <script type="text/javascript" src="http://www.site.com.au/modules/mod_ja_vmproductslide/ja_vmproductslide/ja.vmproductslide.js"></script>

    $('ja-slide-left-img').src = 'http://www.site.com.au/modules/mod_ja_vmproductslide/ja_vmproductslide/img/re-left.gif';

    $('ja-slide-right-img').src = 'http://www.site.com.au/modules/mod_ja_vmproductslide/ja_vmproductslide/img/re-right.gif';

    <div id="ja-slider-left" style="height: 165px; line-height: 165px;"><img id="ja-slide-left-img" src="http://www.site.com.au//modules/mod_ja_vmproductslide/ja_vmproductslide/img/re-left.gif" alt="Left direction" onmouseover="javascript: setDirection('right',0);" onmouseout="javascript: setDirection('right',1);" title="Left direction" /></div>

    gaylepetrie Friend
    #274605

    does anyone else have this issue with this template? or is it just me

    shertmann Friend
    #274656

    i think the best way is work from the beginning in a https folder for not to face this issue

    gaylepetrie Friend
    #274914

    ok so i think this has something to do with setting the $tmpTools->baseurl(); ? and $tmpTools->templateurl(); ? to be correct or something. These are the ones that are coming back as http not https when in secure mode. where do we change this?

    <link rel="stylesheet" href="<?php echo $tmpTools->baseurl(); ?>templates/system/css/system.css" type="text/css" />
    <link rel="stylesheet" href="<?php echo $tmpTools->baseurl(); ?>templates/system/css/general.css" type="text/css" />
    <link rel="stylesheet" href="<?php echo $tmpTools->templateurl(); ?>/css/template.css" type="text/css" />
    <link rel="stylesheet" href="<?php echo $tmpTools->templateurl(); ?>/css/typo.css" type="text/css" />
    <link rel="stylesheet" href="<?php echo $tmpTools->templateurl(); ?>/css/ja.vm.css" type="text/css" />

    <script language="javascript" type="text/javascript">
    var siteurl = '<?php echo $tmpTools->baseurl();?>';
    var tmplurl = '<?php echo $tmpTools->templateurl();?>';
    </script>

    wooohanetworks Friend
    #274928

    Before doing anything on a https issue, I would highly recommend to update your 1.5.6 to 1.5.7 immediately as the new upgrade also fixes and includes some security patches etc..

    It is nothing hard to upgrade, just upload the the files and folder contained in the upgrade package like a usual installation via FTP to your Joomla, the files to be updated will be overwritten with the new ones and the rest stays how it is right now.
    😮

    woonydanny Friend
    #275482

    i have upgraded to 1.5.7 still having issues

    wooohanetworks Friend
    #275512

    <em>@peetree21 86127 wrote:</em><blockquote>i have upgraded to 1.5.7 still having issues</blockquote>

    I did not mean that is solves your problem, but it is a necessary step to upgrade to the latest version and to look for the rest in addition. I wonder why so many people still use Joomla 1.0 and why it is not set to outdated and not supported no more. All the efforts spend into the old Joomla could fix a lot more current issues of 1.5. indeed, also your https problem which is see as typical for a CMS like Joomla.

    First you have the issues that some SSL certs require relative links, some definite links, Joomla uses relative links unless you link manually and create definite links. Some SSL want picture paths relative or definite or the message “site contains secure and insecure elements” comes up.

    Etc., etc., I would ask my host or the issuer of the certificate and will do so as I will want to install mine. Also, simply enabling https inside Joomla creates a fake SSL I read, meaning the site seems to be secure but the message “certificate was signed by itself” comes up.

    shertmann Friend
    #275569

    <em>@gaylepetrie 85355 wrote:</em><blockquote>ok so i think this has something to do with setting the $tmpTools->baseurl(); ? and $tmpTools->templateurl(); ? to be correct or something. These are the ones that are coming back as http not https when in secure mode. where do we change this?

    <link rel="stylesheet" href="<?php echo $tmpTools->baseurl(); ?>templates/system/css/system.css" type="text/css" />
    <link rel="stylesheet" href="<?php echo $tmpTools->baseurl(); ?>templates/system/css/general.css" type="text/css" />
    <link rel="stylesheet" href="<?php echo $tmpTools->templateurl(); ?>/css/template.css" type="text/css" />
    <link rel="stylesheet" href="<?php echo $tmpTools->templateurl(); ?>/css/typo.css" type="text/css" />
    <link rel="stylesheet" href="<?php echo $tmpTools->templateurl(); ?>/css/ja.vm.css" type="text/css" />

    <script language="javascript" type="text/javascript">
    var siteurl = '<?php echo $tmpTools->baseurl();?>';
    var tmplurl = '<?php echo $tmpTools->templateurl();?>';
    </script>

    </blockquote>

    well i found some post in joomla forum aparently is a common issue that is not easy to solve because other using templates from another party have the same issue, maybe a starting point could be checking this http://forum.joomla.org/viewtopic.php?f=466&t=330289 is the only one solution till now i have found

    Jay Kim Friend
    #291804

    The only way I was able to work around this issue was to hard code the RELATIVE path to the css.
    changed the

    <?php echo $tmpTools->baseurl(); ?>templates/system/css/system.css

    to

    /templates/system/css/system.css

    There are 4 lines you have to change

    This seem to work for now.

    I also had to do it in the /public_html/templates/ja_edenite/ja_menus/CSSmenu.class.php file

Viewing 9 posts - 1 through 9 (of 9 total)

This topic contains 9 replies, has 5 voices, and was last updated by  Jay Kim 15 years, 3 months ago.

We moved to new unified forum. Please post all new support queries in our New Forum