-
Posts
687 -
Joined
-
Last visited
-
Days Won
4
Everything posted by matjazp
-
Happening to me on PW 3.0.71
-
I also agree, but I'm not sure such a tool would be helpful since Ryan has his own way of doing things. What we need is more or less visible by looking at open issues, pull requests and feature requests.
-
You should resave your translations first. Or try with new translation.
-
Try adding this: if(DIRECTORY_SEPARATOR != '/') $data['file'] = str_replace(DIRECTORY_SEPARATOR, '/', $data['file']); To /wire/modules/LanguageSupport/LanguageTranslator.php to public function saveTextdomain(), right after $data = $this->textdomains[$textdomain];
-
@ryan Thanks for the fix! I find the active tags background color to light, not enough contrast to see which tag is active (.selectize-dropdown .active{background-color: #d7e2e6;)
-
Is this commit https://github.com/processwire/processwire/commit/faf1efc0495704c21b373dd424ce57df45605970 related to this?
-
@ryan I have to save the page before I can enter tags using selectize. There is also js error, as @fbg13 mentioned. It looks like some html is missing on newly uploaded image, like <div class="selectize-control InputfieldFileTagsSelect multi plugin-remove_button plugin-drag_drop">...</div>
-
Is it just me or what - I can't add tags if page is not saved first?
-
Module: AIOM+ (All In One Minify) for CSS, LESS, JS and HTML
matjazp replied to David Karich's topic in Modules/Plugins
... $field->entityEncodeText = false; //add this to allow html markup $field->description.= sprintf(__('Cached files: %s | Used space: %s'), $_cacheInfo['numberOfFiles'], $_cacheInfo['bytesTotal']); ... -
It was documented on labstack pages and AutoSmushPDF was working like a month ago, but it looks like they decided to remove support for this api. The module is not working any more :-( @adrian would you remove the module from modules directory?
-
Related? https://github.com/processwire/processwire-issues/issues/250
-
Are there any javascript errors on upload (check with browser's dev tools)? Any other pages or templates have working image uploads or is this behaviour specific to this page only? Image is smaller that 2M (looks it is)? Any clues in PW log files? Try chmod -R 777 /site/assets/files/1234 to see if there are permissions problems.
-
About session fingerprint and load balancer IP change
matjazp replied to Karl_T's topic in General Support
If I remember correctly, Ryan made some modification regarding AWS, be sure to use PW 3.0.60. -
Using CSRF protection with AJAX doesn't work as expected
matjazp replied to abdus's topic in API & Templates
Wild guess: is $this->config->ajax true? Is HTTP_X_REQUESTED_WITH header set? Or is the problem with getTokenName()? -
Check permissions and ownership of assets folder.
-
Convert .htaccess to web.config for Microsoft Azure Cloud
matjazp replied to VirtuallyCreative's topic in General Support
ProCache on IIS is not supported, as far as I know, but it should work with some additional rules. Since I don't have ProCache, I can't say for sure. As this is payed product I don't know if I'm allowed to post this rules here on forum.- 3 replies
-
- azure cloud
- .htaccess
-
(and 1 more)
Tagged with:
-
Are you talking about the score on frontened or backend (admin)? As far as I know, you can't get A score since you need script-src 'unsafe-inline' and possibly 'unsafe_eval'. So, how you got A+?
-
Oh, I never thought of that! Yes, local means on a computer (server), where PW is installed. Hmm, now I see how confusing can it be. What wording do you propose?
-
https://github.com/processwire/processwire-issues/issues/191 Yes, it use large amount of RAM and it's slooooow. I tried on windows, 5 MB jpg, peak memory usage was around 4 GB, CPU usage was 25% and it took 10-15 minutes (not seconds) to finish, src 6.020.543 bytes, dst 4.343.674 bytes.
-
I can't know that. Check the "Advanced options for local tools", the module shoud show you if (and what) optimizers are available on your machine.
-
That 404 is response from resmush.it web service, it happens sometimes. But the optimisation process should continue, regardless of the error - at least that's how its intended to be... As recommended, I would try setting pollTime from 100 to 500 in AutoSmush.js Installing local optimizers would save you sending/fetching the file to/from web service.
-
This one! Thanks @szabesz
-
I could, but that would give me all the files, not just images. And even I get the images by extension, I would have to know if image is of FiletypeFile of FieldtypeImage, and also would have to differentiate between originals and variations. If PW would store variations in DB... Also, I'm searching the forum and cant't find the post, where someone described (could be you?) how to iterate through a lot of pages (all of them) but without running out of memory and execution time.