Results 1 to 10 of 108

Hybrid View

  1. #1
    Join Date
    Sep 2009
    Location
    Stuart, FL
    Posts
    13,942
    Plugin Contributions
    96

    Default Re: Clone a Template [Support Thread]

    Quote Originally Posted by flappingfish View Post
    just installed this module, i see it in the plugins page but when i click on install i get a http 500 and checking logs i see the following error....

    Code:
    --> PHP Fatal error: Uncaught Error: Undefined constant "Zencart\ViewBuilders\TEXT_NEW_PLUGIN_DOWNLOAD_AVAILABLE" in /includes/classes/ViewBuilders/PluginManagerController.php:42
    i assume i installed it incorrectly? i uploaded the contents of zc_plugins to zc_plugins and wondering if i misunderstood the instructions perhaps?? Also after reading the support thread so far i believe my understanding is that it won't work for any template and is just for responsive/bootstrap templates ie i cannot easily clone my wokiee template??
    You don't say what version of Zen Cart is in use. Let me know and I'll see what's up.

    Clone-a-template's functionality isn't limited to the responsive/bootstrap templates.

  2. #2
    Join Date
    Nov 2020
    Posts
    310
    Plugin Contributions
    1

    Default Re: Clone a Template [Support Thread]

    Quote Originally Posted by lat9 View Post
    You don't say what version of Zen Cart is in use. Let me know and I'll see what's up.

    Clone-a-template's functionality isn't limited to the responsive/bootstrap templates.
    Whoops my bad, I'm using 1.58a version 🙂 currently experiencing a dip in page speed and it has some flaws that need ironing out but it looks really nice my template so I really do want to sort it out and get it functioning on zen 2.1, I did try on a mamp setup but I was missing many required files/modules ect and realised it was a huge pain to find and locate all these files manually so I'm super happy you said it supports other templates 😎

  3. #3
    Join Date
    Sep 2009
    Location
    Stuart, FL
    Posts
    13,942
    Plugin Contributions
    96

    Default Re: Clone a Template [Support Thread]

    Quote Originally Posted by flappingfish View Post
    Whoops my bad, I'm using 1.58a version  currently experiencing a dip in page speed and it has some flaws that need ironing out but it looks really nice my template so I really do want to sort it out and get it functioning on zen 2.1, I did try on a mamp setup but I was missing many required files/modules ect and realised it was a huge pain to find and locate all these files manually so I'm super happy you said it supports other templates 
    Searching the zc158a as-shipped fileset results in no matches for

    TEXT_NEW_PLUGIN_DOWNLOAD_AVAILABLE

  4. #4
    Join Date
    Nov 2020
    Posts
    310
    Plugin Contributions
    1

    Default Re: Clone a Template [Support Thread]

    Quote Originally Posted by lat9 View Post
    Searching the zc158a as-shipped fileset results in no matches for

    TEXT_NEW_PLUGIN_DOWNLOAD_AVAILABLE
    curious... my admin now reports im on 1.58 but many files i have recently looked at say "last edited by... ...in 1.58 alpha" a quick search for that term finds the only result as follows...

    Code:
    /includes/classes/ViewBuilders/PluginManagerController.php
    
    Line # 42 :                 sprintf(TEXT_NEW_PLUGIN_DOWNLOAD_AVAILABLE, $available['latest_plugin_version'], $available['id'])

  5. #5
    Join Date
    Sep 2009
    Location
    Stuart, FL
    Posts
    13,942
    Plugin Contributions
    96

    Default Re: Clone a Template [Support Thread]

    You've somehow got a Zen Cart v2 version of that file; here's the version that was shipped with zc158a:
    Code:
    <?php declare(strict_types=1);
    /**
     * @copyright Copyright 2003-2023 Zen Cart Development Team
     * @license http://www.zen-cart.com/license/2_0.txt GNU Public License V2.0
     * @version $Id: Marco Ponchia 2023 Feb 10 Modified in v1.5.8a $
     */
    
    namespace Zencart\ViewBuilders;
    
    use Zencart\FileSystem\FileSystem;
    
    class PluginManagerController extends BaseController
    {
    
        protected $pluginManager;
        protected $installerFactory;
    
        public function init($pluginManager, $installerFactory)
        {
            $this->pluginManager = $pluginManager;
            $this->installerFactory = $installerFactory;
        }
    
        protected function processDefaultAction()
        {
            $this->setBoxHeader('<h4>' . $this->currentFieldValue('name') . '</h4>');
            if ($this->currentFieldValue('status') == 1) {
                $this->setBoxContent('<br>' . sprintf(TEXT_VERSION_INSTALLED, $this->currentFieldValue('version')) . '<br>');
            }
            $this->setBoxContent('<br>' . TEXT_INFO_DESCRIPTION . '<br>' . $this->currentFieldValue('description'));
            if ($this->currentFieldValue('status') == 0) {
                $this->setBoxContent(
                    '<a href="' . zen_href_link(
                        FILENAME_PLUGIN_MANAGER,
                        $this->pageLink() . '&' . $this->colKeylink() . '&action=install'
                    ) . '" class="btn btn-primary" role="button">' . TEXT_INSTALL . '</a>'
                );
            }
            if ($this->pluginManager->isUpgradeAvailable($this->currentFieldValue('unique_key'), $this->currentFieldValue('version'))) {
                $this->setBoxContent(
                    '<a href="' . zen_href_link(
                        FILENAME_PLUGIN_MANAGER,
                        $this->pageLink() . '&' . $this->colKeylink() . '&action=upgrade'
                    ) . '" class="btn btn-primary" role="button">' . TEXT_UPGRADE_AVAILABLE . '</a>'
                );
            }
            if ($this->currentFieldValue('status') == 1) {
                $this->setBoxContent(
                    '<a href="' . zen_href_link(
                        FILENAME_PLUGIN_MANAGER,
                        $this->pageLink() . '&' . $this->colKeylink() . '&action=disable'
                    ) . '" class="btn btn-primary" role="button">' . TEXT_DISABLE . '</a>'
                );
                $this->setBoxContent(
                    '<a href="' . zen_href_link(
                        FILENAME_PLUGIN_MANAGER,
                        $this->pageLink() . '&' . $this->colKeylink() . '&action=uninstall'
                    ) . '" class="btn btn-primary" role="button">' . TEXT_UNINSTALL . '</a>'
                );
            }
            if ($this->currentFieldValue('status')== 2) {
                $this->setBoxContent(
                    '<a href="' . zen_href_link(
                        FILENAME_PLUGIN_MANAGER,
                        $this->pageLink() . '&' . $this->colKeylink() . '&action=enable'
                    ) . '" class="btn btn-primary" role="button">' . TEXT_ENABLE . '</a>'
                );
                $this->setBoxContent(
                    '<a href="' . zen_href_link(
                        FILENAME_PLUGIN_MANAGER,
                        $this->pageLink() . '&' . $this->colKeylink() . '&action=uninstall'
                    ) . '" class="btn btn-primary" role="button">' . TEXT_UNINSTALL . '</a>'
                );
            }
            if ($this->pluginManager->hasPluginVersionsToClean($this->currentFieldValue('unique_key'), $this->currentFieldValue('version'))) {
                $this->setBoxContent('<br>' . TEXT_INFO_CLEANUP);
                $this->setBoxContent(
                    '<a href="' . zen_href_link(
                        FILENAME_PLUGIN_MANAGER,
                        $this->pageLink() . '&' . $this->colKeylink() . '&action=cleanup'
                    ) . '" class="btn btn-primary" role="button">' . TEXT_CLEANUP . '</a>'
                );
            }
        }
    
        protected function processActionInstall()
        {
            $this->setBoxHeader('<h4>' . $this->currentFieldValue('name') . '</h4>');
            $this->setBoxForm(
                zen_draw_form('plugininstall', FILENAME_PLUGIN_MANAGER, $this->pageLink() . '&' . $this->colKeylink() . '&action=doInstall', 'post', 'class="form-horizontal"')
            );
            $this->setBoxContent('<br>' . TEXT_INFO_DESCRIPTION . '<br>' . $this->currentFieldValue('description'));
            $versions = $this->pluginManager->getPluginVersionsForPlugin($this->currentFieldValue('unique_key'));
            $hasMultiple = (count($versions) > 1);
            $firstKey = key($versions);
            if ($hasMultiple) {
                foreach ($versions as $version) {
                    $checked = ($version['version'] == $firstKey) ? true : false;
                    $this->setBoxContent('<br>' . zen_draw_label($version['version'], 'version', 'class="control-label"') . zen_draw_radio_field('version', $version['version'], $checked));
                }
            }
            if (!$hasMultiple) {
                $this->setBoxContent(zen_draw_hidden_field('version', $firstKey));
            }
            $this->setBoxContent(
                '<br><button type="submit" class="btn btn-primary">'
                . TEXT_INSTALL . '</button> <a href="' . zen_href_link(
                    FILENAME_PLUGIN_MANAGER,
                    $this->pageLink() . '&' . $this->colKeylink()
                ) . '" class="btn btn-default" role="button">' . IMAGE_CANCEL . '</a>'
            );
        }
    
        protected function processActionDoInstall()
        {
            if (!$this->request->has('version')) {
                zen_redirect(
                    zen_href_link(
                        FILENAME_PLUGIN_MANAGER,
                        $this->pageLink() . '&' . $this->colKeylink()
                    )
                );
            }
            $installer = $this->installerFactory->make($this->currentFieldValue('unique_key'), $this->request->input('version'));
            $installed = $installer->processInstall($this->currentFieldValue('unique_key'), $this->request->input('version'));
            if (!$installed) {
                $this->outputMessageList($installer->getErrorContainer()->getFriendlyErrors(), 'error');
                zen_redirect(
                    zen_href_link(
                        FILENAME_PLUGIN_MANAGER,
                        $this->pageLink() . '&' . $this->colKeylink()
                    )
                );
            }
            $this->messageStack->add_session(TEXT_INSTALL_SUCCESS, 'success');
            zen_redirect(
                zen_href_link(
                    FILENAME_PLUGIN_MANAGER,
                    $this->pageLink() . '&' . $this->colKeylink()
                )
            );
        }
    
        protected function processActionUninstall()
        {
            $this->setBoxHeader('<h4>' . $this->currentFieldValue('name') . '</h4>');
            $this->setBoxForm(
                zen_draw_form(
                    'pluginuninstall',
                    FILENAME_PLUGIN_MANAGER,
                    $this->pageLink() . '&' . $this->colKeylink() . '&action=doUninstall',
                    'post',
                    'class="form-horizontal"'
                ) . zen_draw_hidden_field('version', $this->currentFieldValue('version'))
            );
            $this->setBoxContent('<br>' . TEXT_CONFIRM_UNINSTALL . '<br>');
            $this->setBoxContent(
                '<br><button type="submit" class="btn btn-primary">'
                . TEXT_UNINSTALL . '</button> <a href="' . zen_href_link(
                    FILENAME_PLUGIN_MANAGER,
                    $this->pageLink() . '&' . $this->colKeylink()
                ) . '" class="btn btn-default" role="button">' . IMAGE_CANCEL . '</a>'
            );
        }
    
        protected function processActionDoUninstall()
        {
            if (!$this->request->has('version')) {
                zen_redirect(
                    zen_href_link(
                        FILENAME_PLUGIN_MANAGER,
                        $this->pageLink() . '&' . $this->colKeylink()
                    )
                );
            }
            $installer = $this->installerFactory->make($this->currentFieldValue('unique_key'), $this->request->input('version'));
            $uninstalled = $installer->processUninstall($this->currentFieldValue('unique_key'), $this->request->input('version'));
            if (!$uninstalled) {
                $this->outputMessageList($installer->getErrorContainer()->getFriendlyErrors(), 'error');
                zen_redirect(
                    zen_href_link(
                        FILENAME_PLUGIN_MANAGER,
                        $this->pageLink() . '&' . $this->colKeylink()
                    )
                );
            }
            $this->messageStack->add_session(TEXT_UNINSTALL_SUCCESS, 'success');
            zen_redirect(
                zen_href_link(
                    FILENAME_PLUGIN_MANAGER,
                    $this->pageLink() . '&' . $this->colKeylink()
                )
            );
        }
    
        protected function processActionUpgrade()
        {
            if (!$this->pluginManager->isUpgradeAvailable($this->currentFieldValue('unique_key'), $this->currentFieldValue('version'))) {
                zen_redirect(
                    zen_href_link(
                        FILENAME_PLUGIN_MANAGER,
                        $this->pageLink() . '&' . $this->colKeylink()
                    )
                );
            }
            $versions = $this->pluginManager->getVersionsForUpgrade($this->currentFieldValue('unique_key'), $this->currentFieldValue('version'));
            $this->setBoxHeader('<h4>' . $this->currentFieldValue('name') . '</h4>');
            $this->setBoxForm(zen_draw_form('pluginupgrade', FILENAME_PLUGIN_MANAGER, $this->pageLink() . '&' . $this->colKeylink() . '&action=confirmUpgrade', 'post', 'class="form-horizontal"'));
            $this->setBoxContent('<br>' . TEXT_INFO_UPGRADE . '<br>');
            $firstKey = key($versions);
            foreach ($versions as $version) {
                $checked = ($version == $firstKey);
                $this->setBoxContent('<br>' . zen_draw_label($version, 'version', 'class="control-label"') . zen_draw_radio_field('version', $version, $checked));
            }
            $this->setBoxContent(
                '<br><button type="submit" class="btn btn-primary">'
                . TEXT_UPGRADE . '</button> <a href="' . zen_href_link(
                    FILENAME_PLUGIN_MANAGER,
                    $this->pageLink() . '&' . $this->colKeylink()
                ) . '" class="btn btn-default" role="button">' . IMAGE_CANCEL . '</a>'
            );
        }
    
        protected function processActionConfirmUpgrade()
        {
            $error = false;
            $versions = $this->pluginManager->getVersionsForUpgrade($this->currentFieldValue('unique_key'), $this->currentFieldValue('version'));
            if (!$this->pluginManager->isUpgradeAvailable($this->currentFieldValue('unique_key'), $this->currentFieldValue('version'))) {
                $error = true;
            }
            if ((!$this->request->has('version'))) {
                $error = true;
            }
            if (!in_array($this->request->input('version'), $versions)) {
                $error = true;
            }
            if ($error) {
                zen_redirect(
                    zen_href_link(
                        FILENAME_PLUGIN_MANAGER,
                        $this->pageLink() . '&' . $this->colKeylink()
                    )
                );
            }
            $this->setBoxHeader('<h4>' . $this->currentFieldValue('name') . '</h4>');
            $this->setBoxForm(zen_draw_form(
                    'pluginupgrade',
                    FILENAME_PLUGIN_MANAGER,
                    $this->pageLink() . '&' . $this->colKeylink() . '&action=doUpgrade',
                    'post',
                    'class="form-horizontal"'
                ) . zen_draw_hidden_field('version', $this->request->input('version')));
            $this->setBoxContent(
                '<br>' . TEXT_CONFIRM_UPGRADE . '<br>' . sprintf(TEXT_INFO_UPGRADE_CONFIRM, $this->request->input('version')) . '<br><br>' . TEXT_INFO_UPGRADE_WARNING
            );
            $this->setBoxContent(
                '<br><button type="submit" class="btn btn-primary">'
                . TEXT_UPGRADE . '</button> <a href="' . zen_href_link(
                    FILENAME_PLUGIN_MANAGER,
                    $this->pageLink() . '&' . $this->colKeylink()
                ) . '" class="btn btn-default" role="button">' . IMAGE_CANCEL . '</a>'
            );
        }
    
        protected function processActionDoUpgrade()
        {
            $error = false;
            $versions = $this->pluginManager->getVersionsForUpgrade($this->currentFieldValue('unique_key'), $this->currentFieldValue('version'));
            if (!$this->pluginManager->isUpgradeAvailable($this->currentFieldValue('unique_key'), $this->currentFieldValue('version'))) {
                $error = true;
            }
            if ((!$this->request->has('version'))) {
                $error = true;
            }
            if (!in_array($this->request->input('version'), $versions)) {
                $error = true;
            }
            if ($error) {
                zen_redirect(zen_href_link(FILENAME_PLUGIN_MANAGER, $this->pageLink() . '&' . $this->colKeylink()));
            }
            $installer = $this->installerFactory->make($this->currentFieldValue('unique_key'), $this->request->input('version'));
            $upgraded = $installer->processUpgrade($this->currentFieldValue('unique_key'), $this->request->input('version'), $this->currentFieldValue('version'));
            if (!$upgraded) {
                $this->outputMessageList($installer->getErrorContainer()->getFriendlyErrors(), 'error');
                zen_redirect(
                    zen_href_link(
                        FILENAME_PLUGIN_MANAGER,
                        $this->pageLink() . '&' . $this->colKeylink()
                    )
                );
            }
            $this->messageStack->add_session(TEXT_UPGRADE_SUCCESS, 'success');
            zen_redirect(
                zen_href_link(
                    FILENAME_PLUGIN_MANAGER,
                    $this->pageLink() . '&' . $this->colKeylink()
                )
            );
        }
    
        protected function processActionCleanUp()
        {
            $versions = $this->pluginManager->getPluginVersionsToClean($this->currentFieldValue('unique_key'), $this->currentFieldValue('version'));
            $this->setBoxHeader('<h4>' . zen_output_string_protected($this->currentFieldValue('name')) . '</h4>');
            $this->setBoxForm(
                zen_draw_form(
                    'pluginupgrade',
                    FILENAME_PLUGIN_MANAGER,
                    $this->pageLink() . '&' . $this->colKeylink() . '&action=confirmCleanUp',
                    'post',
                    'class="form-horizontal"'
                )
            );
            $this->setBoxContent('<br>' . TEXT_INFO_SELECT_CLEAN . '<br>');
            foreach ($versions as $version) {
                $this->setBoxContent('<br>' . zen_draw_label
                        (
                            $version['version'],
                            'version',
                            'class="control-label"'
                        ) . zen_draw_checkbox_field(
                            'version[]',
                            $version['version']
                        )
                );
            }
            $this->setBoxContent(
                '<br><button type="submit" class="btn btn-primary">'
                . TEXT_CONFIRM . '</button> <a href="' . zen_href_link(
                    FILENAME_PLUGIN_MANAGER,
                    $this->pageLink() . '&' . $this->colKeylink()
                ) . '" class="btn btn-default" role="button">' . IMAGE_CANCEL . '</a>'
            );
        }
    
        protected function processActionConfirmCleanUp()
        {
            if (!$this->request->has('version') || !is_array($this->request->input('version'))) {
                zen_redirect(
                    zen_href_link(
                        FILENAME_PLUGIN_MANAGER,
                        $this->pageLink() . '&' . $this->colKeylink() . '&action=cleanup'
                    )
                );
            }
            $this->setBoxHeader('<h4>' . $this->currentFieldValue('name') . '</h4>');
            $this->setBoxForm(zen_draw_form(
                'pluginupgrade',
                FILENAME_PLUGIN_MANAGER,
                $this->pageLink() . '&' . $this->colKeylink() . '&action=doCleanUp',
                'post',
                'class="form-horizontal"'
            ));
            $this->setBoxContent('<br>' . TEXT_INFO_CONFIRM_CLEAN . '<br>');
            foreach ($this->request->input('version') as $version) {
                $this->setBoxContent('<br>' . $version . zen_draw_hidden_field('version[]', $version));
            }
            $this->setBoxContent(
                '<br><button type="submit" class="btn btn-primary">'
                . TEXT_CONFIRM . '</button> <a href="' . zen_href_link(
                    FILENAME_PLUGIN_MANAGER,
                    $this->pageLink() . '&' . $this->colKeylink()
                ) . '" class="btn btn-default" role="button">' . IMAGE_CANCEL . '</a>'
            );
        }
    
        protected function processActionDoCleanup()
        {
            if (!$this->request->has('version') || !is_array($this->request->input('version'))) {
                zen_redirect(
                    zen_href_link(
                        FILENAME_PLUGIN_MANAGER,
                        $this->pageLink() . '&' . $this->colKeylink() . '&action=cleanup'
                    )
                );
            }
            $error = "";
            foreach ($this->request->input('version') as $version) {
                $path = DIR_FS_CATALOG . 'zc_plugins/' . $this->currentFieldValue('unique_key') . '/' . $version;
                (new FileSystem)->deleteDirectory($path);
                if (is_dir($path)) {
                    $error .= " :" . $path;
                }
            }
            if ($error === "") {
                $this->messageStack->add_session(TEXT_CLEANUP_SUCCESS, 'success');
            } else {
                $this->messageStack->add_session(TEXT_CLEANUP_ERROR . $error, 'error');
            }
            zen_redirect(zen_href_link(FILENAME_PLUGIN_MANAGER, $this->pageLink()));
        }
    
        protected function processActionEnable()
        {
            $this->setBoxHeader('<h4>' . $this->currentFieldValue('name') . '</h4>');
            $this->setBoxForm(zen_draw_form(
                    'pluginuninstall',
                    FILENAME_PLUGIN_MANAGER,
                    $this->pageLink() . '&' . $this->colKeylink() . '&action=doEnable',
                    'post',
                    'class="form-horizontal"'
                ) . zen_draw_hidden_field('version', $this->currentFieldValue('version')));
            $this->setBoxContent('<br>' . TEXT_CONFIRM_ENABLE . '<br>');
            $this->setBoxContent(
                '<br><button type="submit" class="btn btn-primary">'
                . TEXT_ENABLE . '</button> <a href="' . zen_href_link(
                    FILENAME_PLUGIN_MANAGER,
                    $this->pageLink() . '&' . $this->colKeylink()
                ) . '" class="btn btn-default" role="button">' . IMAGE_CANCEL . '</a>'
            );
        }
    
        protected function processActionDoEnable()
        {
            if (!$this->request->has('version')) {
                zen_redirect(
                    zen_href_link(
                        FILENAME_PLUGIN_MANAGER,
                        $this->pageLink() . '&' . $this->colKeylink()
                    )
                );
            }
            $installer = $this->installerFactory->make($this->currentFieldValue('unique_key'), $this->request->input('version'));
            $installer->processEnable($this->currentFieldValue('unique_key'), $this->request->input('version'));
            $this->messageStack->add_session(TEXT_ENABLE_SUCCESS, 'success');
            zen_redirect(
                zen_href_link(
                    FILENAME_PLUGIN_MANAGER,
                    $this->pageLink() . '&' . $this->colKeylink()
                )
            );
        }
    
        protected function processActionDisable()
        {
            $this->setBoxHeader('<h4>' . $this->currentFieldValue('name') . '</h4>');
            $this->setBoxForm(zen_draw_form(
                    'pluginuninstall',
                    FILENAME_PLUGIN_MANAGER,
                    $this->pageLink() . '&' . $this->colKeylink() . '&action=doDisable',
                    'post',
                    'class="form-horizontal"'
                ) . zen_draw_hidden_field('version', $this->currentFieldValue('version')));
            $this->setBoxContent('<br>' . TEXT_CONFIRM_DISABLE . '<br>');
            $this->setBoxContent(
                '<br><button type="submit" class="btn btn-primary">'
                . TEXT_DISABLE . '</button> <a href="' . zen_href_link(
                    FILENAME_PLUGIN_MANAGER,
                    $this->pageLink() . '&' . $this->colKeylink()
                ) . '" class="btn btn-default" role="button">' . IMAGE_CANCEL . '</a>'
            );
        }
    
        protected function processActionDoDisable()
        {
            if (!$this->request->has('version')) {
                zen_redirect(zen_href_link(FILENAME_PLUGIN_MANAGER, $this->pageLink() . '&' . $this->colKeylink()));
            }
            $installer = $this->installerFactory->make($this->currentFieldValue('unique_key'), $this->request->input('version'));
            $installer->processDisable($this->currentFieldValue('unique_key'), $this->request->input('version'));
            $this->messageStack->add_session(TEXT_DISABLE_SUCCESS, 'success');
            zen_redirect(zen_href_link(FILENAME_PLUGIN_MANAGER, $this->pageLink() . '&' . $this->colKeylink()));
        }
    
    }

  6. #6
    Join Date
    Nov 2020
    Posts
    310
    Plugin Contributions
    1

    Default Re: Clone a Template [Support Thread]

    thankyou for clarifying, i reinstated the file whilst keeping a backup in case i ran into troubles for the v2 file. for me i did not see it appear under tools and had to manually visit the page...

    Code:
    adminurl/index.php?cmd=clone_template
    it seems to have cloned my template as promised and give me a list of necessary files. should i perhaps be concerned about this though due to my order_total module associated with my ticketing module....

    Code:
    Copying 0 file(s) from folder /public_html/includes/languages/english/modules/order_total/wokiee/ ...
    Copying 0 file(s) from folder /public_html/includes/languages/english/modules/payment/wokiee/ ...
    Copying 0 file(s) from folder /public_html/includes/languages/english/modules/shipping/wokiee/ ...
    seems like it is saying "hey these files are needed but i left them behind"?? or "these files aren't needed"??

    would i be correct in guessing these skipped files perhaps indicate a module will need manual review/updating??

  7. #7
    Join Date
    Sep 2009
    Location
    Stuart, FL
    Posts
    13,942
    Plugin Contributions
    96

    Default Re: Clone a Template [Support Thread]

    Those messages are indicating that there are no template-overrides for those language directories.

 

 

Similar Threads

  1. Lavender Template Support Thread
    By kobra in forum Addon Templates
    Replies: 262
    Last Post: 13 May 2015, 01:00 AM
  2. TB Sempre Template Support Thread
    By brandonturpin in forum Addon Templates
    Replies: 48
    Last Post: 19 Mar 2015, 06:33 PM
  3. Rustic Template Support Thread
    By clydejones in forum Addon Templates
    Replies: 320
    Last Post: 20 May 2013, 10:47 AM
  4. DigitalShop Template Support Thread
    By blingthemes in forum Addon Templates
    Replies: 19
    Last Post: 9 Mar 2011, 07:49 PM
  5. Wallet Template - Support Thread
    By zami in forum Addon Templates
    Replies: 45
    Last Post: 25 Mar 2010, 10:15 PM

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