Search…

X3 Photo Gallery Support Forums

Search…

Search found 53 matches

by amwpsaa
19 Nov 2021, 13:09
Forum: Files App
Topic: After the file is uploaded, the cache is not updated
Replies: 3
Views: 10473

After the file is uploaded, the cache is not updated

After uploading the file, the cache is not updated, resulting in thumbnails not updated, but also disrupt the sorting, after many experiments, sorting is indeed flawed You try to access this link to see if you can see sorting errors, especially for other countries' languages, and if you can't see th...
by amwpsaa
18 Nov 2021, 10:19
Forum: Files App
Topic: app0.3.0 found that the sorting is wrong
Replies: 13
Views: 12244

Re: app0.3.0 found that the sorting is wrong

I will need to see a link to understand what might be wrong. I’m sure it’s Intl.Collator’s problem, (Note that the results shown in the code above can vary between browsers and browser versions. This is because the values are implementation-specific. That is, the specification requires only that th...
by amwpsaa
17 Nov 2021, 23:49
Forum: Files App
Topic: Personal css modification and beautification
Replies: 3
Views: 10270

Re: Personal css modification and beautification

mjau-mjau wrote: Looks good. I did this with custom CSS:

Let me know if you want the necessary CSS code.
Yes, I have done it, it’s custom CSS ,I love CSS,
by amwpsaa
17 Nov 2021, 23:45
Forum: Files App
Topic: The new version cannot find PhotoSwipe.js
Replies: 8
Views: 10323

Re: The new version cannot find PhotoSwipe.js

Ok, I will add an option for this in next release, but it may be a while because I have another task. I was thinking about adding config.js with advanced javascript-related configuration options, because I don't want to add all these options into index.php and config.php for main settings. I tempor...
by amwpsaa
17 Nov 2021, 21:31
Forum: Files App
Topic: Personal css modification and beautification
Replies: 3
Views: 10270

Personal css modification and beautification

The folder thumbnail is changed to 100% wide, and an indicator icon is used, which is great
02825.jpg
02825.jpg (60.17 KiB) Viewed 10270 times
by amwpsaa
17 Nov 2021, 21:20
Forum: Files App
Topic: The new version cannot find PhotoSwipe.js
Replies: 8
Views: 10323

Re: The new version cannot find PhotoSwipe.js

How can I see this "problem"? I am testing from demo.files.gallery , and clicking image definitely navigates to NEXT image. This is how it's supposed to work. Please explain or send link. I think that when the mouse clicks on the image, the image is zoom, not the NEXT image, (version 0.2.0 is like ...
by amwpsaa
17 Nov 2021, 10:30
Forum: Files App
Topic: app0.3.0 found that the sorting is wrong
Replies: 13
Views: 12244

Re: app0.3.0 found that the sorting is wrong

Sorry but that IP is not working. Wish I could help, but I can't diagnose this specific issue based only on what I read in your post. You say you are sorting by date, and it changes when navigating between folders, but I don't even know what is the "correct" sort. I need to see it ... I can record ...
by amwpsaa
17 Nov 2021, 05:56
Forum: Files App
Topic: app0.3.0 found that the sorting is wrong
Replies: 13
Views: 12244

Re: app0.3.0 found that the sorting is wrong

mjau-mjau wrote: 如果我要诊断,我需要查看链接。
可以参观吗?http://185.243.241.193/
video

第一次进入时请注意页面的排序,记得排序,点一个文件夹,然后回到主页面,你会发现排序发生了变化。
by amwpsaa
17 Nov 2021, 05:47
Forum: Files App
Topic: The new version cannot find PhotoSwipe.js
Replies: 8
Views: 10323

Re: The new version cannot find PhotoSwipe.js

Glad you fixed it. We don't generally support this kind of fine-grain control of functionality. I have looked into the Photoswipe zoom functionality earlier ... First of all, I don't see any usage cases where anyone would want to scaled beyond 1X (as in their example "1.5"). I also don't see how yo...
by amwpsaa
17 Nov 2021, 05:13
Forum: Files App
Topic: The new version cannot find PhotoSwipe.js
Replies: 8
Views: 10323

Re: The new version cannot find PhotoSwipe.js

In latest Files app, the popup was much improved and although it's built upon the core of photoswipe, we don't use photoswipe options any longer. Besides, I am struggling to see the benefit of your implementation. Do you have an example link where this is used? I was testing this feature before, an...
by amwpsaa
17 Nov 2021, 04:54
Forum: Files App
Topic: app0.3.0 found that the sorting is wrong
Replies: 13
Views: 12244

Re: app0.3.0 found that the sorting is wrong

That link wasn't working any more when I tried from here, so I removed it. Do you have another working link? Sounds strange that you have "sort by date", because then it will ignore folder name/language and use date. It will only use the folder name if two items have the same sort-date value. I don...
by amwpsaa
17 Nov 2021, 01:59
Forum: Files App
Topic: The new version cannot find PhotoSwipe.js
Replies: 8
Views: 10323

The new version cannot find PhotoSwipe.js

In the old version, I can modify PhotoSwipe.js myself to meet my needs. 1. Double-click the picture on the phone to zoom in, it will be very large, avoid 100% zoom. I can change it like this:     isClickableElement: function(el) {         return el.tagName === 'A';     },     getDoubleTapZoom: funct...
by amwpsaa
16 Nov 2021, 13:04
Forum: Files App
Topic: app0.3.0 found that the sorting is wrong
Replies: 13
Views: 12244

app0.3.0 found that the sorting is wrong

After updating to 3.0, I found that the sorting is wrong, enter the folder and then return to the previous level. At this time, you will find that the file sorting has been disrupted. Error generation environment: 1. Multiple folders, 2. Use Chinese names for the folders, 3. Sort by date, 4. Enter s...
by amwpsaa
14 Nov 2021, 01:13
Forum: Files App
Topic: PHP regular expression issues for excluding or including files
Replies: 3
Views: 10080

Re: PHP regular expression issues for excluding or including files

I'm not an expert with regex, but I think that can be achived like this: 'files_exclude' =>'/\.(php|js|css)$|^hidden.jpg$/i', The above will hide only exact file name "hidden.jpg", because I included ^starts and ends$. I used this tool to test: https://www.phpliveregex.com/ No, there's a mistake! E...
by amwpsaa
13 Nov 2021, 22:30
Forum: Files App
Topic: PHP regular expression issues for excluding or including files
Replies: 3
Views: 10080

PHP regular expression issues for excluding or including files

PHP regular expression issues for excluding or including files, I want to hide the .php.js.css extension, which can be written like this: 'files_exclude' =>'/\.(php|js|css)$/i', I also want to hide the hidden.jpg file. It can be written like this: 'files_exclude' =>'/hidden.jpg/', I don’t know how t...