Jason Varga

Results 443 comments of Jason Varga

Are you getting that validation error just when creating new entries? Or also when editing existing entries?

Cool, I had a feeling. I'm guessing it's because when it tries to validate the uri, it doesn't have an `id` at that point. Thanks!

What if you add `/subsite/blog` to the list of URLs?

Would you be able to provide `config/statamic/sites.php`?

The `ie` and `com` sites have the same url in the env file. Is that correct?

Okay thanks, I see the issue. The custom image validation rules are currently using the `statamic` namespaced translations. https://github.com/statamic/cms/blob/b2b108c6fda387ba02a25d1963bc4240987a6ae6/src/Fieldtypes/Assets/MaxRule.php#L25 It should only be doing that when inside the control panel.

> I'm still not 100% sure why this would try to move them under the root though. Passing null as the second argument to `move` will move it to the...

That would need to go in the Stache where it initially makes an instance from the file. Right about here: https://github.com/statamic/cms/blob/71fac6d87fadb2c954f5fa9e1574400e6804cc07/src/Stache/Stores/CollectionEntriesStore.php#L100

Nice! Something I can see might happen is if an evaluated value ends up returning `null` or `false`, it will still try to evaluate it again each time. Maybe you'll...