[Mojolicious] getting parameters value as array is failed in Mojolicious 5.70

2014-12-30 Thread Ivan Kolisnyk
Hi, I have upgraded my Mojolicious to 5.7 version. But now the request to the form not receive prameters value from multiple checkbox with the same name as array. I get the last value of my checkbox list only. I have older version of Mojolicious on my VPS hosting, and I have no problem with p

[Mojolicious] Re: Change controller dynamically when routing (due to API REST versioning)

2015-03-30 Thread Ivan Kolisnyk
$r->route('/:param')->to(namespace => $version.'::Controller', action => 'action'); середа, 25 вересня 2013 р. 18:13:56 UTC+3 користувач Albert написав: > > Hi all > > I want to implement a REST API with Mojolicious with the ability to do API > versioning. > > I had in mind something like: > > $

[Mojolicious] set a link to http from https

2015-06-14 Thread Ivan Kolisnyk
Hello everybody. I'm developping CMS for web on Mojolicious. I have a problem with setting up a link from admin part under https protocol to client part under http protocol. And inversely, from client part under http protocol to admin part under https protocol. Thanks for the answer. -- You re

[Mojolicious] CMS based Mojolicious

2015-10-03 Thread Ivan Kolisnyk
Hi everybody. Welcome to try out my CMS "Morncat" for site based Mojolicious + MySQL. Download link: http://mojoblog.net/en/download -- You received this message because you are subscribed to the Google Groups "Mojolicious" group. To unsubscribe from this group and stop receiving emails from it

Re: [Mojolicious] CMS based Mojolicious

2015-10-06 Thread Ivan Kolisnyk
середа, 7 жовтня 2015 р. 00:29:22 UTC+3 користувач Stefan Adams написав: > > > Is there perhaps a demo site of Morncat that we can log in and try it out > before first making the effort to download, install, configure...? For me > -- at least -- it's nice to have context for the software I'll be

[Mojolicious] Re: Mojolicious on Openshift

2015-12-03 Thread Ivan Kolisnyk
Hi. I deployed my mojolicious project on http://ramnode.com. I'm satisfied. All configurations described on http://mojoblog.net/en. You can order hosting for $3.5/month only. понеділок, 30 листопада 2015 р. 13:20:22 UTC+2 користувач Aniruddha Pandit написав: > > Hello All, > > I have created a

[Mojolicious] $ ->has_error validation method in Mojolicious higher than 8.33 version

2020-04-12 Thread Ivan Kolisnyk
Hi everybody, I have installed last version of Mojolicious and I found that the $ ->has_error validation method was working with an error. When I send data form with empty field, which must be required full, I get empty value of $v->has_error. This method worked correctly in previous version of

[Mojolicious] Re: $ ->has_error validation method in Mojolicious higher than 8.33 version

2020-04-12 Thread Ivan Kolisnyk
This is the code I use in my project: In helper: $app->helper(_validation => sub { my($c, $required_fields) = @_; my $v = $c->validation; foreach my $item($required_fields ->@*){

[Mojolicious] Re: $ ->has_error validation method in Mojolicious higher than 8.33 version

2020-04-14 Thread Ivan Kolisnyk
The same code is used in the example of blog included in Mojo::Pg module. Method has_error is not working in this example too with 8.36 Mojolicious version. The feedback of $v->has_error cannot be used for creating alert message about empty field in a web form. Can you fix it so it worked like in

Re: [Mojolicious] Re: $ ->has_error validation method in Mojolicious higher than 8.33 version

2020-04-15 Thread Ivan Kolisnyk
Thank you Sebastian. All works now. I did not pay attention to the combination of 'required' method and filters. середа, 15 квітня 2020 р. 00:48:40 UTC+3 користувач Sebastian Riedel написав: > > > The same code is used in the example of blog included in Mojo::Pg > module. > > Method has_error is