FileDownloadR

помогите разобраться с счетчиком количества скачиваний. все делаю по мануалу с офф сайта. может есть какие-то ньюансы?

и есть какие-нибудь особенности, чтобы подружить его с migx?

[[!FileDownloadLink?
&getFile=`[[*mytvfilepath]]`
&tplCode=`
Скачать<hr />
[[+date]]
([[+count]] раз)

`
&dateFormat=`d-m-Y`
&toArray=`0`
]]

упорно не хочет считать. все время 0
Артём
22 июля 2016, 06:19
modx.pro
1 048
0

Комментарии: 2

R2m0x94 (Vasily)
08 мая 2018, 09:52
0
Fileattach & FileDownload
<table>
    <tbody>
        [[!FileDownload?
            &getDir=`[[++core_path]]/docs`
            &tplFile=`@CODE:
                <tr[[+fd.class]]>
                    <td style="width:16px;"><img src="[[+fd.image]]" alt="[[+fd.image]]" /></td>
                    <td>
                        [[-<a href="javascript:void(0);"
                           rel="#formLink"
                           id="[[+fd.hash]]"
                           >[[+fd.filename]]
                        </a>
                        <span style="font-size:80%">([[+fd.count]] downloads)</span>]]
                        [[!FileAttach? &privateUrl=`1` &private=`true` &mediasource=`1` &sortby=`rank` &tpl=`FileAttachTpl`]]
                    </td>
                    <td>[[+fd.sizeText]]</td>
                    <td>[[+fd.date]]</td>
                </tr>
                [[+fd.description:notempty=`<tr>
                    <td></td>
                    <td colspan="3">[[+fd.description]]</td>
                </tr>`:default=``]]`
            &dateFormat=`d-m-Y`
            &toArray=`0`
        ]]
    </tbody>
</table>
Если указать:
<a href="javascript:void(0);" rel="#formLink" id="[[+fd.hash]]">[[+fd.filename]]</a>
<span style="font-size:80%">([[+fd.count]] downloads)</span>
[[+fd.count]] — не обновляется

FileAttachTpl:
<p>[[+description:notempty=`<strong>[[+description]]</strong>
`]]
<a href="[[+url]]">[[+name]]</a> <span class="badge">[[+download]]</span>
[[+size:notempty=`
<small>Size: [[+size]] bytes</small>`]]
[[+ext:notempty=`
<small>Type: <img src="/img/[[+ext]].png" /></small>`]]
[[+timestamp:notempty=`
<small>Date: [[+timestamp:date=`%d.%m.%Y %H:%M`]]</small>`]]
[[+hash:notempty=`
<small>SHA1: [[+hash]]</small>`]]</p>
docs.modx.pro/components/fileattach
    R2m0x94 (Vasily)
    08 мая 2018, 10:52
    0
    или же так:
    <style>
        table.fd-table {
        width: 100%;
    }
    
    table.fd-table .fd-header{
        background-color: firebrick;
        color: white;
    }
    
    table.fd-table .fd-firstDir{}
    table.fd-table .fd-lastDir{}
    table.fd-table .fd-firstFile{}
    table.fd-table .fd-lastFile{}
    table.fd-table .fd-dir{}
    table.fd-table .fd-file{}
    table.fd-table .fd-path{}
    
    table.fd-table .fd-altRow{
        background-color: #efefef;
    }
    
    table.fd-table .fd-group-dir{
        background-color: #ddd;
    }
    
    table.fd-table tr {
        border-bottom: 1px solid #ccc;
    }
    
    table.fd-table tr td {
         padding:5px;
    }
    
    table.fd-table .fd-xlsx {
        background-color: #E3D1E6;
    }
    
    table.fd-table.no-border,
    table.fd-table.no-border > tr,
    table.fd-table.no-border > tr > td {
        border: none;
    }
    
    table.fd-table .fd-icon{
        display: inline-block;
        width: 16px;
    }
    tr.fd-file {
        background: white;
    }
    </style>
    <table class="fd-table">
        <tbody>
            <tr class="fd-header">
                <td colspan="4"></td>
            </tr>
            [[!FileAttach? &privateUrl=`1` &private=`false` getUrl=`1` &mediasource=`1` &sortby=`rank` &tpl=`FileAttachTpl`]]
        </tbody>
    </table>
    FileAttachTpl:
    <tr class="fd-file">
        [[-<td style="width:16px;">[[+ext:notempty=`<small>Type: <img src="/img/[[+ext]].png" /></small>`]]</td>]]
        [[+description:notempty=`<td>[[+description:notempty=`<strong>[[+description]]</strong>`]]</td>`:default=``]]
        <td>
            <a href="[[+url]]">[[+name]]</a> <span style="font-size:80%">([[+download]] downloads)</span>
            <p>[[+hash:notempty=`<small>SHA1: [[+hash]]</small>`]]</p>
        </td>
        <td>[[+size:notempty=`<small>Size: [[+size]] bytes</small>`]]</td>
        <td>[[+timestamp:notempty=`<small>Date: [[+timestamp:date=`%d.%m.%Y %H:%M`]]</small>`]]</td>
    </tr>
      Авторизуйтесь или зарегистрируйтесь, чтобы оставлять комментарии.
      2