forked from andrewcy86/memphis-documents-library
-
Notifications
You must be signed in to change notification settings - Fork 0
/
readme.txt
1305 lines (998 loc) · 54.1 KB
/
readme.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
=== Memphis Documents Library ===
Contributors: bhaldie
Donate link: https://www.kingofnothing.net/
Tags: plugin,documents,memphis,bhaldie,WordPress,library,repository,files,versions, import, export,document management, file management, customer file manager, distribution, document management, document manager, enterprise document control, file manager, file sharing, file uploads, Retrieval & storage, version, versioning
License: GPLv2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Requires PHP: 5.6
Requires at least: 3.5
Tested up to: 5.4.1
Stable tag: 3.10.10
A documents library for WordPress.
== Description ==
Memphis Documents Library (mDocs) is a documents library for WordPress with a robust feature set. It is a great tool for the organization and distribution of files.
= Frontend Upload Button Just Released =
Finally it is here the frontend upload file button. Head over to kingofnothing.net to get all the details:
[Help With Frontend Upload Button](https://kingofnothing.net/frontend-upload-button-help/)
= Creating a Box API Developer Key for Memphis Documents Library =
[https://kingofnothing.net/creating-a-box-api-developer-key-for-memphis-documents-library/](https://kingofnothing.net/creating-a-box-api-developer-key-for-memphis-documents-library/)
= What's New With Version 3.10.9 =
* *Update* - Added another condition to the preview options.
* *Bug* - Fixed issue admin page upload redirect.
* *Bug* - Removed var_dump.
= Memphis Documents Library Features =
* Document preview and thumbnails available for most file types.
* Batch Upload of files into the system
* Upload media files that match WordPress's white-list. This white-list is configurable from the WordPress menus.
* Download tracking of files
* Posts created for each new media upload, showing information of the specific file.
* Version control, allows you to view and revise to older version of your file.
* The ability to share you files on other websites.
* Social media buttons for each document.
* Referential file methodology. This allows for the updating of a file while the link remains the same.
* Importing of document libraries into your current library, or just migrating to another website.
* Exporting you documents libraries for safe backup and store, migration to another website or sharing with someone elsecheck box
* The ability to create, edit and delete categories and subcategories.
* Search for files using the WordPress search.
* Customization of download button view
== Feature Requests ==
* Feature - Have the ability to define sort options per folder.
* Feature - Shortcode take parameters to be able to hide version/last mod/etc.
* Feature - One file added into multiple folders.
* Feature - Have the ability to comment on documents and have the owner notified what changes need to be made to the file.
* Feature - Change the font size of the folders or have them in a gallery like format.
* Feature - Have a shortcode to display all files by owner, contributor, tag or category.
* Feature - Have the ability to create a custom sort order.
* Feature - Custom input fields.
* Feature - Restrict file download by user or role.
* Feature - Permissions in folders instead of each document independently.
* Feature - Add the ability to add a link back to the mDocs documents list.
* Feature - Added more level to categories.
* Feature - Exposing filepath for indexing website via ElasticSearch.
* Feature - Add folder structure to the mdocs post page.
* Feature - Password protected files.
* Feature - Added categories and tags to batch edit.
* Feature - Add number of files in each folder.
* Feature - Reordering of the dropdown list.
* Feature - Add thumbnail support to table view.
* Feature - Right click dropdown menu.
* Feature - Frontend uploader have a redirect for non logged in users.
* Feature - Add a description for folders.
* Feature - Maximum upload for users.
* Feature - Change owner of file.
* Feature - Use mDocs thumbnail as feature image.
* Feature - Shortcode for adding top download, top rated and last modified to any page or post.
* Feature - Post page next and previous based on mDocs sort options..
* Feature - Total number of downloads for each folder.
* Feature - Total number of downloads of entire site.
* Feature - Email document link to users.
* Feature - Download all files from a folder.
* Feature - Batch upload keeping folder structure.
== Frequently Asked Questions ==
= Frontend Upload Button Help =
Head to this link for more information on how to use the shortcode mdoc_upload_btn: [https://kingofnothing.net/frontend-upload-button-help/](https://kingofnothing.net/frontend-upload-button-help/)
= Creating a Box API Developer Key for Memphis Documents Library =
I've created a guide to follow if anyone is interested in using the Box preview for Memphis Documents Library:
Here is the link to the guide: [https://kingofnothing.net/creating-a-box-api-developer-key-for-memphis-documents-library/](https://kingofnothing.net/creating-a-box-api-developer-key-for-memphis-documents-library/)
= Supported Documents Types Using Local Preview =
*PFD* - Browser Support: Chrome, Safari, Firefox, Edge, IE
* 'pdf'
*Image* - Browser Support: Chrome, Safari, Firefox, Edge, IEfile name
* 'ai', 'bmp', 'gif', 'eps', 'jpeg', 'jpg', 'png', 'ps', 'psd', 'svg', 'tif', 'tiff', 'dcm', 'dicm', 'dicom', 'svs', 'tga'
= Add Page Templates to Memphis Documents Library =
To add templates to custom posts you will need to download a plugin "Custom Post Type Page Template". This will allow you to add templates to any custom post including mdocs posts. Here is the link to the plugin: [https://wordpress.org/plugins/custom-post-type-page-template/](https://wordpress.org/plugins/custom-post-type-page-template/)
= Non Member Can't Download =
If you are getting an issue with non member not being able to download files try this fix.
* Go to the Dashboard > Memphis Docs Tab
* Check the check box beside the Name label of the table
* Click on the Batch Edit button
* Check the NM check boxes for every file
* Save you work
* Sign out of WordPress and then try to see if you can now download the file.
= Preview not Working =
First thing to try is go to Setting > Disable Third Party Includes: > Bootstrap and check the check box. Try the preview again. If that doesn't work the second most like issue is your themes css if conflicting with mDocs functionality. The second problem is hard to fix it requires you to debug you site and check and change values in order to get the preview to show. If you need assistance on the css to edit please feel free to contact me.
Another issue with preview is with Google docs viewer which is Memphis Docs default viewer. I have noticed lately that the preview will not load sometime if a refresh the page it seems to solve the problem but is not really a solution. The only solution that I have found is to change to the Box previewer. I have an not issue with this previewer and works every time.
= 404 Error when trying to access document page =
If you get a 404 error when trying to access your Memphis documents pages try going to Setting>Permalinks and pressing Save. This may solve the issue, if it doesn't please contact me for more support.
= Memphis Documents Library look wrong in IE =
Add the following code to your theme right under the `<head>` tag this will turn off compatibility mode for IE.
`<meta http-equiv="X-UA-Compatible" content="IE=11; IE=10; IE=9; IE=8; IE=7; IE=EDGE" />`
= Importing Into Memphis Documents Library =
There are two type of imports you can choose from.
**Keep Existing Saved Variables**
* Is the safest way to import. This option keeps all your current files and only imports new ones.
If a file that is being imported matches one on the current system, the one on the current system will be left untouched,
and you will have to manually import these files.
**Overwrite Saved Variables**
* Is a good when you have a empty documents library or you at looking to refresh your current library.
This method deletes all files, posted and version on the current system. After the method has completed you will
get a list of all the conflicts that have occurred make note of them.
Please take great care in using this method as there is little to no return.
= Exporting Out of Memphis Documents Library =
When you click the export button the document library will create a ZIP files for you to save to your computer.
This compressed data, will contain your documents, saved variables, media and posts tied to each document.
Once you've saved the download file, you can use the Import function in another WordPress installation to import the content from this site.
= ImageMagick PDF Issue =
If you are getting error like this when displaying the description in mDocs:
Exception type: ImagickException
Exception message: not authorized ..... @ error/constitute.c/ReadImage/412
In file /etc/ImageMagick-6/policy.xml (or /etc/ImageMagick/policy.xml)
comment line
<!-- <policy domain="coder" rights="none" pattern="MVG" /> -->
change line
<policy domain="coder" rights="none" pattern="PDF" />
to
<policy domain="coder" rights="read|write" pattern="PDF" />
add line
<policy domain="coder" rights="read|write" pattern="LABEL" />
= Uninstalling Memphis Documents Library =
When you uninstall the documents library make sure you export all your important files. **All data will be removed on completion of uninstall, this includes files, directories, posts, and media.**
== Installation ==
From the WordPress plugin menu click on Add New and search for Memphis Documents Library
Instead of searching for a plugin you can directly upload the plugin zip file by clicking on Upload:
Use the browse button to select the plugin zip file that was downloaded, then click on Install Now. The plugin will be uploaded to your blog and installed. It can then be activated.
Once uploaded the configuration menu is located in either the "Memphis" menu with the heading of "Documents" in the Dashboard or in the "Memphis Docs" menu.
== Screenshots ==
1. screenshot-1.png
2. screenshot-2.png
3. screenshot-3.png
4. screenshot-4.png
5. screenshot-5.png
6. screenshot-6.png
7. screenshot-7.png
8. screenshot-8.png
== Changelog ==
= 3.10.10 =
* *Update* - Added another condition to the preview options.
* *Bug* - Fixed issue admin page upload redirect.
* *Bug* - Removed var_dump.
= 3.10.9 =
* *Update* - Added another condition to the preview options.
* *Bug* - Fixed issue admin page upload redirect.
= 3.10.8 =
* *Bug* - Fixed issue with blank author field in 'Manage File'.
= 3.10.7 =
* *Update* - Update to date with WordPress version 5.4
* *Update* - $num_td variable set to zero.
* *Bug* - Added new setting for redirect issue. Options > Settings > System Settings > Redirect is Blank
= 3.10.6 =
* *Update* - Updated JavaScript to latest methodology.
* *Bug* - Made change to action of upload button, hopefully will fix the 404 redirect error.
* *Bug* - Fixed issue with font clipping in upload modal.
= 3.10.5 =
* *Bug* - Fixed notice issue on setting page.
* *Bug* - Fixed issue with m icon not showing for some users.
* *Bug* - Fixed install issue.
* *Bug* - Fixed a plugin activation warning.
= 3.10.4 =
* *Bug* - Fixed issue with permissions of image previews.
= 3.10.3 =
* *Bug* - Fixed issue with permissions and user roles being able to upload files.
= 3.10.2 =
* *Bug* - Notice error remove on preview.
* *Bug* - Permissions for files fixed in Dashboard editing view.
* *Bug* - More permission fixes.
* *Bug* - Localization variable index fixed.
= 3.10.1 =
* *Update* - Minor changes to Thumbnail plugin.
* *Update* - Changed the way ob_start functions when it comes to download. Hopefully will address download issue with some users.
= 3.10 =
* *New* - Added a Insert button at the top of add file or add folder shortcode interface.
* *Update* - Security fixes.
* *Update* - Minor changes to uninstall file.
* *Update* - Minor changes to import process.
* *Update* - Translation update.
* *Update* - Removed compatibility test.
* *Update* - Updated versions file
* *Update* - Updated to the thumbnail plugin.
* *Update* - Minor change to java script function call.
= 3.9.20 =
* *Update* - Removed Google Plus.
* *Bug* - Fixed issue with mulitple share buttons on one page.
* *Bug* - Fixed issue with frontend upload and file status, will now save the file as private.
* *Bug* - Fixed issue with description sorting.
= 3.9.19 =
* *Bug* - Fixed issue with mdocs columns, you will have to reconfigure the Document list again.
= 3.9.18 =
* *New* - Restore default will now save the file structure by default.
* *New* - Added new feature to widget, will now show all files no matter what the state is.
* *New* - New setting for widget to hide the column titles.
* *New* - Added error reporting to frontend upload.
* *New* - Removed most of the curl methods, now using the WordPress wp_remote_request method.
* *Update* - Minor changes to restore to default module.
* *Update* - Minor style changes to mDocs widgets.
* *Update* - Added all search filters to the WordPress "init" action.
* *Update* - Minor changes to widgets.
* *Bug* - Fixed issue with Box API and file deletion.
* *Bug* - Fixed issue with widget option "Hide Widget Numbers" the setting was backwards.
* *Bug* - Removed used variables in file delete method.
* *Bug* - Fixed issue with error reporting on upload.
= 3.9.17 =
* *Update* - Added new function for debugging.
* *Update* - Cap check on role admin.
* *Update* - Minor update to donate button.
= 3.9.16 =
.
* *Update* - Checks admins capabilities to make sure they are correct.
* *Update* - Minor update to the export tool.
* *Bug* - Fixed issue with mDocs loading properly on the homepage.
* *Bug* - More updates to the way table information is loaded.
* *Bug* - Fixed shortcode issue with Post Status.
* *Bug* - Cleaned up some php notices.
* *Bug* - Fixed issue with widgets and non logged in users. Files will now only be hidden when you make the file private.
* *Bug* - Fixed issue with viewing of private files.
* *Bug* - Minor bug repaired in File Lost Files.
= 3.9.15 =
* *Update* - Moved the shortcode buttons into the tinymce editor, now they are in a drop down menu with the m icon. This is preparation for WordPress 5.0.
* *Update* - Added the mdocs class to mDocs posts.
* *Bug* - Fixed issue with mDocs loading properly on the homepage.
* *Bug* - More updates to the way table information is loaded.
* *Bug* - Fixed shortcode issue with Post Status.
= 3.9.14.1 =
* *New* - Added new table column file type.
* *Update* - Removed all session data.
* *Update* - the shortcode [mdocs cat="Folder"] now accepts the variable "hide_folder". This will allow users to still use the old cat variable and have the ability to hide and show folders.
* *Update* - Fixed upload form resubmit issue.
* *Update* - Removed form tag from shortcode buttons.
* *Bug* - Fixed undefined variable in post pages.
* *Bug* - Modification to the memphis-documents-rtl.min.css file.
* *Bug* - small fix to html markup.
* *Bug* - Fixed issue with frontend upload variable.
= 3.9.12 =
* *Update* - Did some work with cyrillic and batch uploads.
* *Update* - Korean language download update.
* *Bug* - Fixed issue with table widths not saving.
= 3.9.11 =
* *Bug* - Fixed issue when posts status was hidden in the upload form.
* *Bug* - Fixed small issue with roles and caps.
* *Bug* - Fixed author bug.
* *Bug* - Cleanup of table columns.
= 3.9.10 =
* *New* - mDocs table now has option to change size of columns. Look under the Display file information in Settings.
* *Update* - Minor update to folders.
* *Update* - Updated disable bootstrap dashboard now includes post editor.
* *Update* - Update to description and preview style.
* *Bug* - Fixed small issue with slashes and folders.
= 3.9.9 =
* *New* - Can now change the layout of items in the mdocs table. For example you can move the version column to the front or back. Head to the setting menu to configure.
* *Update* - Small change to the css dealing with the files checkbox in the dashboard.
* *Update* - Updated the ShortCode list page.
* *Update* - Version table now inline with normal mDocs table.
* *Update* - Minor changes to css.
* *Bug* - Fixed issue with cursor and Manage Versions.
* *Bug* - Fixed missing downloads icon.
= 3.9.8 =
* *Update* - Removed important in tables.
* *Bug* - Removed the var_dump in the rights file.
* *Bug* - Fixed issue when version manager closes.
= 3.9.7 =
* *Update* - Added a cache buster to all mDocs scripts and styles.
* *Bug* - Fixed issue with privacy and preview.
* *Bug* - Fixed some missing or change Font Awesome icons.
= 3.9.6.1.1 =
* *Update* - Share button on post page colour change and smaller.
* *Update* - Added the new or updated label on the post page.
* *Bug* - Fixed issue with preview not working.
* *Bug* - Fixed issue with loading of java script.
* *Bug* - Fixed issue issue with new and updated banner and label.
* *Bug* - Removed alert message.
= 3.9.6.1 =
* *Update* - Share button on post page colour change and smaller.
* *Update* - Added the new or updated label on the post page.
* *Bug* - Fixed issue with preview not working.
* *Bug* - Fixed issue with loading of java script.
* *Bug* - Fixed issue issue with new and updated banner and label.
= 3.9.6 =
* *New* - Added a new button "Add mDocs Folder" to the content editor of posts and pages.
* *New* - Added a new button "Add mDocs File" to the content editor of posts and pages.
* *New* - All clicks on folders and sorts options now refresh the table div not the entire page.
* *Update* - Updated to Font Awesome 5.2.0.
* *Update* - Modified the box view show download and print link.
* *Update* - Added collapse to custom bootstrap.
* *Update* - Replace the file mdocs-categories.php with mdocs-folders.php.
* *Bug* - Fixed issue with private files and widgets.
* *Bug* - Fixed position issue with Upload File button.
* *Bug* - Fixed issue with upload button shortcode.
* *Bug* - Fixed issue the version control.
* *Bug* - Minor bug fixes.
= 3.9.5 =
* *New* - Added a print and download button to the box preview.
* *New* - Toggle the index numbers for mDocs widgets.
* *Update* - Updated ALL version icons.
* *Update* - Update to the error message location and style.
* *Bug* - Removed file name from version model, if the check box is checked "Hide File Name".
* *Bug* - Deletion of incorrect file should be corrected in this version.
= 3.9.4 =
* *Update* - Updates to css.
* *Bug* -Fixed style issue.
* *Bug* - Fixed permission issue.
* *Bug* - Fixed undefined variable issue.
= 3.9.3 =
* *Update* - Cleaned up some css.
* *Update* - Style changes to mDocs widgets.
* *Bug* - Fixed permission issue.
= 3.9.2 =
* *Update* - Changed icon for version.
* *Update* - Added code to initialize the shortcode mdocs_media_attachment, will not be seen when looking at a media post now.
* *Bug* - Small fix to patch 3.8.6.
* *Bug* - Removed the extra donate button from the setting page.
= 3.9.1 =
* *New* - Added a link to frontend upload button help in the shortcode menu.
* *Bug* - Fixed issue with null array when adding or updating a file.
* *Bug* - Fixed some minor permission issues.
* *Bug* - Fixed issue with frontend uploader not initializing.
= 3.9 =
* *New* - Added the ability to upload files from the front end by using the shortcode [mdocs_upload_btn] check the shortcode manual under options for more details.
* *New* - Four new capabilities added, allow to upload frontend, batch edit, batch move and batch delete can now be assigned to specific roles.
* *Update* - Change the word "File Name" to "Title" in the upload modal.
* *Update* - Added the localization text for the work "Download".
* *Update* - Updated user capabilities to reflex new roles and caps settings.
* *Update* - Updated the style of the error/info text area.
* *Update* - Minor bootstrap style updates to the Add/Update Document modal.
* *Update* - Minor changes to the bootstrap.css file.
= 3.8.7.1 =
* *Update* - Spelling mistakes fixed.
* *Update* - Update to some saved variables.
* *Update* - Updated Latin translation function.
* *Update* - Localization of mDocs saved options.
* *Update* - Style issue fixed.
* *Bug* - Fixed issue with saving variables.
* *Bug* - Fixed issue with recreating of mDocs Page.
* *Bug* - Removed unused constants.
= 3.8.7 =
* *Update* - Spelling mistakes fixed.
* *Update* - Update to some saved variables.
* *Update* - Updated Latin translation function.
* *Update* - Localization of mDocs saved options.
* *Update* - Style issue fixed.
* *Bug* - Fixed issue with saving variables.
* *Bug* - Fixed issue with recreating of mDocs Page.
= 3.8.6 =
* *New* - Added new capability "Manage Options", which allows a user to manage options but not settings.
* *Update* - Setting page minor style changes.
* *Bug* - Fixed Issue with roles and capabilities.
* *Bug* - Fixed issue with creation of unwanted mDocs page.
* *Bug* - Added values to empty em and i tags.
= 3.8.5.1 =
* *Bug* - Fixed Issue with setting page.
= 3.8.5 =
* *Update* - Changed the access to the export file.
* *Bug* - Fixed issue with contributors not being able to see files.
= 3.8.4 =
* *New* - Added colors to the batch upload logs.
* *New* - Can now hide the footer of the Documents List.
* *Update* - Description text is now searchable.
* *Update* - Added title text to all icons in mdocs files list.
* *Update* - Removed unwanted slashes from filename.
* *Update* - Added a clearfix style to the new and updated banner.
* *Update* - Style update to new and updated label.
* *Bug* - Fixed issue with widget displaying no data.
* *Bug* - Fixed issue with search on multisite, special thanks to @jyria for their work.
* *Bug* - Fixed download issues for some users.
= 3.8.3 =
* *Update* - More updates to widgets.
* *Update* - Update to the unsupported preview text output for local preview.
* *Update* - Minor changes to the mdocs style.
* *Bug* - Fixed an issue on when to display files in file list.
= 3.8.2 =
* *Bug* - Fixed issue with modals loading on incorrect pages.
* *Bug* - Fixed issue with Top Download widget
= 3.8.1 =
* *Bug* - Fixed issue with top downloads widget.
= 3.8 =
* *New* - Box API version 2.0 is now live, you will have to create a new "Primary Access Token" in order for the view to work.
* *New* - Changed words in file upload windows, File Status - Hidden is now File Status - Private. No change to the underlying features.
* *New* - Removed Google Preview. You will now have the choice of local preview or Box View.
* *Update* - Updated the style of all mdocs widgets, more inline with standard practice.
* *Update* - More accessibility updates.
* *Update* - Remove unneeded text in Direct Download URL.
* *Bug* - Fixed issue with Twitter sharing.
* *Bug* - Security Fixes.
= 3.7.4.2 =
* *Bug* - Fixed issue "Find Lost Files" module.
= 3.7.4.1 =
* *New* - Improved accessibility compliance.
* *Bug* - Fixed issue with "Add New Document" button.
= 3.7.4 =
* *New* - Added thumbnail support for mDocs Post, themes must have this activated for this functionality to work.
* *New* - Added the ability to change the file highlight colors.
* *Update* - Added a key exist check for mdocs-cateogories.
* *Update* - Removed double post tile from mDocs post page.
* *Update* - Minor change to how the role is displayed in "Allow to Upload" and "Private File Post Viewing".
* *Bug* - Fixed issue with added more than one contributor at a time.
* *Bug* - Fixed issue post rights.
* *Bug* - Fixed issue with sorting and null indexes found.
* *Bug* - Fixed issue with Table View Settings.
= 3.7.3 =
* *New* - Added code to remove the social scripts if not in use.
* *New* - You can now delete the Documents page without it recreating itself over and over again.
* *New* - Added the ability to add excerpts to your mDocs posts.
* *New* - Added new file information "File Size", this is off by default.
* *Update* - More permission changes.
* *Update* - Change the label 'Author' to 'Owner' on the mDocs post page.
* *Update* - Prettified the file sizes.
* *Update* - Removed an unwanted variable.
* *Bug* - Fixed bbpress bug where there was a warning about a string.
* *Bug* - Fixed issue with setting page and a null value.
* *Bug* - Removed redundant mdocs_load_modals function.
* *Bug* - Fix issue with search functionality.
* *Bug* - Fixed issue with null object.
* *Bug* - Minor fix to mDocs post page.
= 3.7.2.2 =
* *Bug* - Remove alert in javascript.
= 3.7.2.1 =
* *Bug* - Fixed html issue.
* *Bug* - Fixed user rights issue.
= 3.7.2 =
* *New* - Added an author and description to the list of items in the file list table.
* *Update* - Change of function name get_the_mdoc_by to mdocs_get_file_by.
* *Update* - Minor modifications to the social functions.
* *Update* - Changed get attribute from att to mdocs-att.
* *Bug* - Fixed php version issues.
* *Bug* - Security updates.
= 3.7.1 =
* *New* - Add the ability to added WordPress categories to your mDocs posts.
* *New* - Added a FTP batch upload.
* *New* - Export has option to manually delete system temp directory export file.
* *Update* - Minor improvements to the import feature.
* *Update* - More changes to how session data is handled.
* *Update* - Changes to date time functionality.
* *Update* - Removed function mdocs_get_inline_admin_css.
* *Update* - Removed output check.
* *Update* - Security update.
* *Bug* - Fixed issue with search functionality.
= 3.7 =
* *New* - Added a session check.
* *Update* - Removed redundant file.
* *Bug* - Added a catch for no file extension when importing.
* *Bug* - Security fixes.
= 3.6.23 =
* *New* - Test with version 4.8.
* *New* - Added mDocs id information to preview iframe.
* *Update* - Added a function check for session_status.
* *Update* - When adding a file type any "." will be removed, also the file extension will be converted to lowercase.
* *Bug* - fixed issue with import and file extension that are capitalized.
* *Bug* - Fixed issue with TinyMCE not showing certain buttons like bullet list.
= 3.6.22 =
* *New* - Added new file type tif
* *New* - Remove the title from all mdocs widgets.
* *New* - Added woocommerce support.
* *Update* - All file extension will be converted to lowercase for icon check function is run.
* *Update* - Font Awesome will now be disabled in the dashboard when disabled from the setting menu.
* *Update* - Added localization text for widget titles.
* *Update* - Made some minor changes to how update to revision works.
* *Update* - Added .mdocs-tooltip .btn-group { font-size:inherit !important;} to mDocs stylesheet.
* *Bug* - More security fixes.
= 3.6.21 =
* *New* - Added a new sanitize function check sanitizing strings.
* *Update* - Updated widgets to be compatible with PHP 7+.
* *Update* - Updated the way sanitation for arrays are handled.
* *Update* - Removed unwanted link information from the share modal.
* *Update* - Changed the way sessions are handle.
* *Update* - Added an ignore if user doesn't exists when importing files.
= 3.6.20 =
* *Update* - Changed how description finds mdocs id.
* *Update* - Added a function check for the tooltip() function in the dashboard.
* *Update* - Removed class small from Memphis css.
* *Bug* - Fixed issue with Firefox and space characters in a file name.
= 3.6.19 =
* *Update* - File names will no longer be aloud to use commas.
* *Update* - New image and pdf uploads will no longer create thumbnail images.
* *Bug* - Fixed issue with import and the addition of posts and media items.
= 3.6.18 =
* *Bug* - Added a missing comma to a substr function thanks @codeward
* *Bug* - Fixed issue with mdocs dashboard not displaying the proper folder link.
= 3.6.17 =
* *New* - Can set the Goto Post link to open in new tab or not set.
* *New* - Added version to the advance search functionality.
* *Update* - Change the way mdocs loads its headers.
* *Bug* - Fixed issue with the loading of bootstrap tooltip and some sites.
= 3.6.16 =
* *Update* - Moved the when the modals get loaded. Now are loaded when wp_head fires.
* *Bug* - Fixed issue with the hook post type and loading of mdocs scripts.
* *Bug* - Fixed issue with tabs not working.
* *Bug* - Fixed issue with description thumbnail of images not displaying.
* *Bug* - Fixed issue with bootstrap not loading on mdocs post page.
* *Bug* - Fixed issue with advanced search functionality.
* *Bug* - Fixed issue with the display of contributors in the Manage File menu.
= 3.6.15.1 =
* *Bug* - Fixed issue with an uncaught error.
= 3.6.15 =
* *Feature* - When using WordPress search, file name, name and owner will now find matching results.
* *Feature* - Added icons to files to show owners and administrators what the status of the file and post is.
* *Bug* - Fixed issue with grid view of media module showing mdocs media.
* *Bug* - Cleaned up links in widgets.
= 3.6.14 =
* *Feature* - Added a new short code for showing one file on any post, page or widget.
* *Update* - minor style change to file type icons.
* *Update* - Cleaned up permalink for go to post.
* *Bug* - Fixed issue with import making every post a draft.
* *Bug* - Fixed issue with mime types.
* *Bug* - Fixed issue with widgets not sorting properly.
= 3.6.13 =
* *Feature* - Added an error code output for zip errors.
* *Feature* - Removed some unneeded data in the mdocs-post.
* *Update* - Tested with version 4.7.
* *Update* - Changed style of more admin modules.
* *Bug* - Fixed an issue with the correct date and time when viewing versions.
= 3.6.12 =
* *Feature* - Add a robust "Unauthorized to download file" page.
* *Update* - Changes some admin screen styles.
* *Update* - Removed extra slashes from mdocs file title.
= 3.6.11 =
* *Feature* - Added contributor adding and removal from the batch edit tool.
* *Feature* - Added a new server compatibility check to see if the systems temp directory is available to php.
* *Update* - Changed error messaging in batch upload module.
* *Update* - Changed the layout of the batch upload module.
* *Bug* - Language fixes.
* *Bug* - Fixed issue with disabling non members checkbox, causing documents to be not downloadable from non members by default.
= 3.6.10 =
* *Bug* - Language fixes.
* *Bug* - Fixed issue with contributors.
* *Bug* - Fixed style problem with contributor editor.
= 3.6.9 =
* *Feature* - Unfortunately it has come to my attention the Box is no longer allowing the creation of Box View applications keys. This means that new users to mDocs will not be able to use the Box Viewer as an alternative to Google. I am looking at alternatives but currently there is no solution.
* *Bug* - Fixed issue with download button and logged in users.
= 3.6.8 =
* *Bug* - Fixed download issue with non members.
= 3.6.7 =
* *Update* - Now fully with WordPress Translate. There is currently one translation complete and one in progress. Thanks to @gsavix for the Brazil translation and @hyrules for both french translations.
* *Update* - Added a safe guard if you disable bootstrap in the dashboard, the setting menu will be added as a sub menu to the Memphis Docs tab.
* *Update* - Style clean up and refinement.
= 3.6.6 =
* *Feature* - Added the ability to turn off bootstrap in the dashboard.
* *Update* - changed the css to add a cursor pointer to the sort text buttons.
* *Bug* - Fixed issue with permalinks and the sort buttons, not displaying the right page.
= 3.6.5 =
* *New* - Added a new setting, converts Cyrillic, European and Georgian characters in file names to Latin characters.
* *Update* - Remove widget style, now it is up to the users theme to determine what the widgets style is.
* *Bug* - Fixed capital letter bug.
* *Bug* - Fixed file names with spaces bug.
* *Bug* - Fixed accent bug.
= 3.6.4 =
* *Update* - Changed the folder structure to more of a traditional folder layout. Also removed the setting to show current folder on top.
* *Update* - Minor codes clean up and changes.
* *Fix* - Fixed bug with the WPSOR plugin.
* *Fix* - Fixed issue with TinyMce editor.
= 3.6.3 =
* *Update* - Changed the way post are handled if they have been deleted by a user.
* *Bug* - Fixed issue when deleting a previous version of the file.
* *Bug* - Fixed issue with the hiding of file attributes
= 3.6.2 =
* *Fix* - Removed the donate button from WordPress pages.
= 3.6.1 =
* *New* - From setting menu can choose to hide the name of the file or the file name. You can not hide both if you select both only the file name will show.
* *Update* - Changed the way a file's version auto updates.
* *Update* - Renamed a function from parse_size to mdocs_parse_size.
* *Update* - Change the location of batch edit, batch move and batch delete.
* *Bug* - Fixed issue with privacy settings.
* *Bug* - Fixed issue with updating a file.
= 3.6 =
* *New* - Added a download button to the list of files
* *Update* - File will now retain there name upon upload, the only exceptions will be if the file name already exists.
* *Update* - Reorganized the setting page.
* *Update* - Removed the new and updated badge on the file list and replaced it with a green background color or new and and blue background color for updated.
* *Update* - By default file type icons are now disabled. You can go to the setting page to re enable them.
* *Update* - Changed the way files are cleaned up after a mdocs process is run.
* *Update* - Small update to the mdocs style-sheet.
* *Update* - Updated the way a version file checks to see if it can be downloaded.
* *Update* - Updated font awesome link.
* *Update* - The new and updated label is now hidden by default, you can enable the label from the settings under Configuration Settings> UI Options > Hide New and Updated Label
* *Bug* - Removed a variable dump from the previous version.
* *Bug* - Fixed bug the caused files to disappear after opening them thanks to @norucus for finding this one.
= 3.5.9 =
* *Bug* - Date and time bug fixes.
= 3.5.8 =
* *Update* - Updated some text.
* *Bug* - Made a change on how time is processed.
* *Bug* - Changed a check point message.
= 3.5.7 =
* *Fix* - More 5.6 and lower testing.
= 3.5.6 =
* *Fix* - More 5.6 and lower testing.
= 3.5.5 =
* *Fix* - More 5.6 and lower testing.
= 3.5.4 =
* *New* - PHP support 5.6 and greater.
* *Bug* - Fixed issue with revisions
* *Bug* - Another fix for batch file method bug.
= 3.5.3 =
* *Bug* - Fixed issue with batch file method.
= 3.5.2 =
* *New* - Added a setting to turn off sessions.
* *New* - From the setting menu you can now hide the navbar.
* *New* - From the setting menu you can now hide the sort bar.
* *New* - Added a setting to control the mdocs post title.
* *Update* - Added icon support for pptx files.
* *Update* - System check show the upload dir.
* *Bug* - Fixed issue with session data.
* *Bug* - Fixed a placement of an error message.
* *Bug* - Fixed issue with timezones.
* *Bug* - Fixed issue with temp directory and trying to delete full folder.
= 3.5.1 =
* *Update* - Removed some debugging code.
= 3.5 =
* Fixed issue with batch upload
* Tested up to version 4.6.1
* other small bug fixes and updates.
= 3.4.6 =
* *Bug* - Fixed folder issue.
* *Bug* - Fixed issue with image preview.
* *Bug* - Minor bug fixes.
= 3.4.5 =
* *Update* - Removed some legacy css.
* *Bug* - Fixed issue with tinymce.
* *Bug* - Fixed issue with folders.
= 3.4.4 =
* *Bug* - Fixed issue with sub folder not displaying the right parent folder.
* *Bug* - Added the nav menu back to the setting page, was removed by mistake.
= 3.4.3 =
* *Update* - Changed file structure.
* *Update* - Changed the way options were being set.
= 3.4.2 =
* *Feature* - From the settings menu you can now turn off the file type icons.
* *Update* - Code cleanup.
* *Bug* - Fixed issue with a zero index in the ratings system.
* *Bug* - Fixed issue with description removing line breaks.
= 3.4.1 =
* *Feature* - By default all Memphis Documents are hidden in the Media Dashboard. You have the ability to show them from the Settings menu under Hide Things.
* *Feature* - Added a new server compatibility check, this check that a server has sessions enabled.
* *Update* - Tested up to 4.5.2
* *Update* - Changed some style settings.
* *Update* - Rating a file can only be done by logged in users.
* *Update* - Streamlined the preview/description code.
* *Update* - Added new function get_the_mdoc_by, which which will remove redundant functions.
* *Update* - Move some settings around, for a more uniform layout.
* *Update* - Added closing div tags to the mdocs navbar.
* *Bug* - Defined an undefined variable.
* *Bug* - Fixed issue with viewing of private files.
= 3.4 =
* *Update* - Changed the right and permissions methodology.
* *Update* - Bootstrap style updates.
* *Fix* - Fixed issue with Site Origin plugin and Memphis Documents Library.
* *Fix* - Fixed issue with contributors and downloading of files.
* *Fix* - Fixed issue when added contributors.
* *Fix* - Fixed issue with iris color pickers.
= 3.3.4 =
* *Update* - Localization language updates.
* *Update* - Changed to the way batch file options are display. Now are hidden by default.
* *Update* - Changed the look of the Server Compatibility Check administration page.
* *Update* - Changed the look of the Short Codes administration page.
* *Update* - Changed the look of the Find Lost Files administration page.
* *Update* - Minor updates and fixes.
* *Update* - Deleted unused file.
* *Fix* - Fixed and issue where users that were not logged in could not see the preview button.
= 3.3.3 =
* *Fix* - Minor bug fixes and improvements.
= 3.3.2 =
* *New* - Added improved localization support.
* *New* - Added the ability to hide upload settings. [megecookie]
* *New* - Added the ability to show current folder on top of document list [megacookie]
* *Update* - NL translation updated [ megacookie ]
* *Fix* - Fixed issue with the loading of the javascript for Color picker
* *Fix* - Other small bug fixes
= 3.3.1 =
* *New* - Added the ability to change the navbar background color and text color from the Setting menu.
* *Update* - Style updates.
* *Fixes* - Bootstrap drop down button.
* *Fixes* - Minor bug fixes and updates.
= 3.3 =
* *New* - Batch file management.
* *New* - Now you can set an future dates on all files and post just by changing the date to a future one.
* *New* - Added an new server compatibility check.
* *New* - Added the ability to download older versions of files.
* *Update* - Changed when file is updated, now will only update when a new file has been uploaded.
* *Update* - Condensed bootstrap to fix a lot of style issue with many users. This should fix a lot of style issues.
* *Fix* - Fixed issue with Google preview counting as download.
* *Fix* - Fix issue with preview was showing in drop down menu when it was disabled in settings.
* *Fix* - Fixed issue with File System Cleanup.
* *Fix* - Fixed issue with version deletion.
* *Fix* - Minor bug fixes and updates.
= 3.2.1 =
* *Fix* - Fixed issue with downloads not registering.
= 3.2 =
* *Update* - Update to the localization files.
* *Fix* - Minor bug fixes
= 3.1.6 =
* *Fix* - Removed method to destroy session, too many users with session issues.
* *Fix* - Security fix.
= 3.1.5 =
* *Fix* - Changed method to destroy session.
* *Fix* - Fixed an issue with Google docs preview.
= 3.1.4 =
* *New* - Added another setting for drop down menu issue using bootstrap.
* *New* - Added a new setting to hide a mDocs post from the main page.
* *New* - Added a destroy session on log-in or log-out.
* *Update* - Changed the displayed output of the preview windows, made the preview window bigger.
* *Update* - Changed the way a session is initialized.
= 3.1.3 =
* *Update* - Remove bot checking.
* *Bug* - Fixed issue with the go to post button.
* *Bug* - Added a fix for Twenty Sixteen theme.
* *Bug* - Fixed bug prevented Box View updater to run.
= 3.1.2 =
* *Bug* - Fixed bug prevented Box View updater to run.
= 3.1.1 =
* *New* - Now you have the choice to use Google Document Preview or Box View.
* *Update* - Removed a redundant css file.
* *Bug* - Fixed Page Builder bug.
= 3.1 =
* *New* - Added thumbnail image for PDFs using Imagick.
* *Update* - Removed Box view and reverted back to Google doc view.
* *Update* - Added another server compatibility check, to see if WordPress upload directory is accessible.
* *Update* - Added another server compatibility check, to test if ZipArchive is installed.
* *Update* - Added another server compatibility check, to see if Imagick is installed.
* *Update* - Minor changes and updates.
* *Bug* - Fixed localization bug which didn't allow uploading files when using translations.
= 3.0.18 =