0
Welcome Guest! Login
0 items Join Now

XSS Patches available for all templates

  • Re: XSS Patches available for all templates

    Posted 16 years 8 months ago
    • I am a Pro subscriber and normally download the monthly template even if I don't use it. Having said that, would it be possible for you to bundle up all the club templates so that they can be downloaded in one hit. This would save hours of work going from template to template and downloading individual files.
  • Re: XSS Patches available for all templates

    Posted 16 years 8 months ago
    • This has been discussed before and it is logistically, a lot of work.
    • James Spencer / Developer & Support / Hull, UK
  • Re: XSS Patches available for all templates

    Posted 16 years 8 months ago
    • James S! wrote:
      This ... is logistically, a lot of work.

      I am confused. If your downloadable files are located in directory structure that has a single root, then tarballing the lot ready for one download is quite trivial at your end:

      tar -cvjf all_rocketthemes.tar.bz2 ${DOWNLOAD_ROOT}/${THEME_ROOT}/

      If all the themes are not organised under a single directory root, then there is a tar command that can traverse your directory structure and while it may become long or convoluted, it can easily be captured in a shell script.

      Of course, I am assuming that your server is *NIX based and you can use the command line interface. If it's Mac OS X or Windoze based then it is a drag-and-drop exercise. In either case, I don't see it as "a lot of work."

      I do something similar every month when I archive my customers' sites and databases.
  • Re: XSS Patches available for all templates

    Posted 16 years 8 months ago
    • As my subscription has just ended, will these updates be available to me as well ?
    • Andy Miller's Avatar
    • Andy Miller
    • Preeminent Rocketeer
    • Posts: 9919
    • Thanks: 96
    • Web Kahuna

    Re: XSS Patches available for all templates

    Posted 16 years 8 months ago
    • Yes, you can continue to download the patches even if your subscription has expired, you just need to be logged in.
  • Re: XSS Patches available for all templates

    Posted 16 years 7 months ago
    • what is the deal if you bought the template that needs updating but you aren't a member anymore? I can't access the special page for Versatility 2.... Am I just SOL if I don't renew my membership?
  • Re: XSS Patches available for all templates

    Posted 16 years 7 months ago
    • sorry... answer right above here...
  • Re: XSS Patches available for all templates

    Posted 16 years 7 months ago
    • But hold up... this is why I asked.. I go to the page linked below the following and it says I can't have access.... also, where do I download from? (maybe cause it's 6am)?

      * These templates require a few extra modifications to match the new stylechanger syntax. The exact changes are listed in detail in the following posts
  • Re: XSS Patches available for all templates

    Posted 16 years 7 months ago
    • Heres the post
      Low impact XSS Vulnerability Patch:-

      Versatility 2 requires some additional patching in contrast to the other templates. Please follow the instructions below and read the following thread www.rockettheme.com/forum/index.php?t=24550&rb_v=viewtopic

      This zip package contains an updated version of the "styleloader.php" and "styleswitcher.php" files. To patch your template, simply replace your template's current "styleloader.php" and "styleswitcher.php" files with the ones contained in this package.

      Next, you will need to make some minor modifications to your template's "index.php" file. The updated "index.php" file is included in this package, but if you have modified yours and would rather manually update it, you can use the instructions below:


      At Line 3, immediately following:
      defined( '_VALID_MOS' ) or die( 'Direct Access to this location is not allowed.' );
      Add the following:
      require($mosConfig_absolute_path."/templates/" . $mainframe->getTemplate() . "/rt_styleswitcher.php");


      At line 22, change this:
      $header_style = "dark";                     // light | dark
      $toolbar_style = "blue";                    // orange | blue | red | green
      $footer_style = "dark";                     // dark | orange | blue | red | green
      $menu_name = "mainmenu";                    // mainmenu by default, can be any Joomla menu name
      $menu_sidenav = "left";                     // left | right

      To this:
      $header_style = "dark";                     // light | dark
      $toolbar_style = "blue";                    // orange | blue | red | green
      $footer_style = "dark";                     // dark | orange | blue | red | green
      $menu_name = "mainmenu";                    // mainmenu by default, can be any Joomla menu name
      $menu_sidenav = "left";                     // left | right
      $default_width = "fluid";                   // wide | thin | fluid
      $default_font = "default";              // smaller | default | larger


      At lines 62-69, change this:
      <div id="buttons">
           <a href="<?php echo $mosConfig_live_site;?>/templates/<?php echo $mainframe->getTemplate(); ?>/rt_styleswitcher.php?widthstyle=w-fluid" title="Fluid width" class="fluid"><span class="button">&nbsp;</span></a>
           <a href="<?php echo $mosConfig_live_site;?>/templates/<?php echo $mainframe->getTemplate(); ?>/rt_styleswitcher.php?widthstyle=w-wide" title="Wide width" class="wide"><span class="button">&nbsp;</span></a>
           <a href="<?php echo $mosConfig_live_site;?>/templates/<?php echo $mainframe->getTemplate(); ?>/rt_styleswitcher.php?widthstyle=w-thin" title="Narrow width" class="thin"><span class="button">&nbsp;</span></a>
           <a href="<?php echo $mosConfig_live_site;?>/templates/<?php echo $mainframe->getTemplate(); ?>/rt_styleswitcher.php?fontstyle=f-larger" title="Increase size" class="lrg"><span class="button">&nbsp;</span></a>
           <a href="<?php echo $mosConfig_live_site;?>/templates/<?php echo $mainframe->getTemplate(); ?>/rt_styleswitcher.php?fontstyle=f-default" title="Default size" class="med"><span class="button">&nbsp;</span></a>
           <a href="<?php echo $mosConfig_live_site;?>/templates/<?php echo $mainframe->getTemplate(); ?>/rt_styleswitcher.php?fontstyle=f-smaller" title="Decrease size" class="sml"><span class="button">&nbsp;</span></a>
      </div>

      To this:
      <div id="buttons">
           <a href="<?php echo $thisurl; ?>widthstyle=w-fluid" title="Fluid width" class="fluid"><span class="button">&nbsp;</span></a>
           <a href="<?php echo $thisurl; ?>widthstyle=w-wide" title="Wide width" class="wide"><span class="button">&nbsp;</span></a>
            <a href="<?php echo $thisurl; ?>widthstyle=w-thin" title="Narrow width" class="thin"><span class="button">&nbsp;</span></a>
           <a href="<?php echo $thisurl; ?>fontstyle=f-larger" title="Increase size" class="lrg"><span class="button">&nbsp;</span></a>
      &nbsp; &nbsp; &nbsp; &nbsp; <a href="<?php echo $thisurl; ?>fontstyle=f-default" title="Default size" class="med"><span class="button">&nbsp;</span></a>
           <a href="<?php echo $thisurl; ?>fontstyle=f-smaller" title="Decrease size" class="sml"><span class="button">&nbsp;</span></a>
      </div>
    • James Spencer / Developer & Support / Hull, UK
    • todakin's Avatar
    • todakin
    • Newbie
    • Posts: 12
    • Thanks: 0

    Re: XSS Patches available for all templates

    Posted 16 years 7 months ago
    • Thanks

Time to create page: 0.069 seconds