Copied to clipboard

Flag this post as spam?

This post will be reported to the moderators as potential spam to be looked at


  • Eran 292 posts 436 karma points
    Aug 16, 2010 @ 11:29
    Eran
    0

    problem when the Zip Upload package is installed before

    great package, just let you know - when i installed your package, i already have the nibble Zip Upload package installed, so when i installed your package, i was not able to see it on the media section panel, because Zip Upload already use the media panel.

    after uninstalled Zip Upload, everything was o.k.

  • Matt Brailsford 4124 posts 22215 karma points MVP 9x c-trib
    Aug 16, 2010 @ 14:32
    Matt Brailsford
    0

    Hey Eran,

    That's strange, it should just add a new tab along the top if you already have a control registered.

    I'll definatley look into it though. Thanks for letting me know.

    Cheers

    Matt

  • Rich Green 2246 posts 4008 karma points
    Sep 09, 2010 @ 13:57
    Rich Green
    0

    Same problem here :)  4.0.3

  • Rich Green 2246 posts 4008 karma points
    Sep 09, 2010 @ 14:08
    Rich Green
    0

    Actually worse than I thought, you cannot have Zip uploader and Desktop Media Uploader installed at the same time.

    Steps to reproduce (4.0.3)

    • Install Zip Upload
    • Install Desktop Media Uploader
    At this point when the media tab is clicked only the Zip upload tab can be viewed
    • Uninstall Zip Upload
    At this point you can see the Desktop Media Uploader tab
    • Reinstall Zip Upload
    At this point you can still only see the Desktop Media Uploader tab, which makes it impossible to use Zip Upload.
    Hope this can be resolved.
    On a side note,  thanks for the superb package Matt :)
    Rich

  • Matt Brailsford 4124 posts 22215 karma points MVP 9x c-trib
    Sep 09, 2010 @ 14:42
    Matt Brailsford
    0

    Ok, I've had a look, and it seems to be an issue when installing the dashboard control, in that it's not merging the config, rather just adding on to the end so the one that displays, is the one higher up in the doc. You can get them both to display by modifying your config/dashboard.config file and merging the zipupload and desktopmedia uploader section together, so instead of:

    <section alias="MyDashboardSection">
        <areas>
          <area>media</area>
        </areas>
        <tab caption="Zip Upload">
          <control>/usercontrols/zipupload.ascx</control>
        </tab>
      </section>
      <section alias="DesktopMediaUploader">
        <areas>
          <area>media</area>
        </areas>
        <tab caption="Desktop Media Uploader">
          <control>/usercontrols/desktopmediauploader/dashboard.ascx</control>
        </tab>
      </section>

    merge them together like so:

     <section alias="MyDashboardSection">
        <areas>
          <area>media</area>
        </areas>
        <tab caption="Zip Upload">
          <control>/usercontrols/zipupload.ascx</control>
        </tab>
        <tab caption="Desktop Media Uploader">
          <control>/usercontrols/desktopmediauploader/dashboard.ascx</control>
        </tab>
      </section>

    I'll have a look into it, but it looks like it's an issue with the builtin package action for dashboard controls, so will probably need patching in the core.

    This should fix it for the time being though.

    Happy uploading

    Matt

  • Rich Green 2246 posts 4008 karma points
    Sep 09, 2010 @ 16:46
    Rich Green
    0

    Thanks Matt!

Please Sign in or register to post replies

Write your reply to:

Draft