Search found 16 matches

by kembl
Tue Oct 15, 2013 11:26 am
Forum: Modules/Add-Ons
Topic: FrontEndUsers username as email problem
Replies: 3
Views: 1503

Re: FrontEndUsers username as email problem

Hello, Paul! Thx for your config in most parts it is like mine. I have no idea how config can affect to situation with symbol @, I will try to debug code and will post results. Any way my very simple config: CMS Install Information CMS Version 1.11.9 Installed Modules CMSMailer 5.2.2 CMSPrinting 1.0...
by kembl
Sun Oct 13, 2013 12:47 am
Forum: Modules/Add-Ons
Topic: FrontEndUsers username as email problem
Replies: 3
Views: 1503

Re: FrontEndUsers username as email problem

Hello all, just come to log that small problem still not solved :)

FrontEndUsers 1.21.18
1.11.9 "Bartolome"
PHP Version 5.4.20

Bugtrack: http://dev.cmsmadesimple.org/bug/view/9591
by kembl
Sun Oct 13, 2013 12:14 am
Forum: Modules/Add-Ons
Topic: Probable bug in last FrontEndUsers
Replies: 0
Views: 785

Probable bug in last FrontEndUsers

After update to last FrontEndUsers 1.21.18 on 1.11.9 "Bartolome" I cant call LoggedInId() in one session with Login(u,p) PHP Version 5.4.20 Check snippet: $feu =& $this->GetModuleInstance('FrontEndUsers'); $res = $feu->Login( 'mylogin', 'mypswd' ); echo("res: ".var_export($re...
by kembl
Sat Jan 19, 2013 1:56 pm
Forum: The Lounge
Topic: [SOLVED] Creating new page error
Replies: 5
Views: 2243

Re: [Workaround] Creating new page error

Hello, Jo Morg! You are the best! This was exactly {stylesheet} issue! Thank you! Hi, Chandra! >You have to modify the MenuManager sources manually >http://viewsvn.cmsmadesimple.org/diff.php?repname=menumanager&path=%2Fbranches%2F1.10.x%2Faction.default.php& > >or load (newer) SVN version (...
by kembl
Fri Jan 18, 2013 9:34 pm
Forum: The Lounge
Topic: [SOLVED] Creating new page error
Replies: 5
Views: 2243

Re: [Workaround] Creating new page error

Jos wrote:Or simply update MenuManager
Hmm, but it not outdated! I lost my modules versions at the bottom of previous post :)

My: MenuManager 1.8.5

there: http://dev.cmsmadesimple.org/project/files/133

i see equal version 1.8.5

Thanx for your guessing :)
by kembl
Fri Jan 18, 2013 8:37 pm
Forum: The Lounge
Topic: [SOLVED] Creating new page error
Replies: 5
Views: 2243

[SOLVED] Creating new page error

Solved by Jo Morg, see answer there http://forum.cmsmadesimple.org/viewtopic.php?f=3&t=64546 ----------------------------------------- Hello, developers! :) After update to version 1.11.4 "Fernandina" (and all modules was updated also), had got strange bug - cant create new pages and ...
by kembl
Mon Oct 22, 2012 3:49 pm
Forum: Modules/Add-Ons
Topic: [Solution]FrontEndUsers 1.17 one wrong add user aproach!
Replies: 0
Views: 764

[Solution]FrontEndUsers 1.17 one wrong add user aproach!

Hello all! Board: 1.10.3 "Hyacinthe" Module: FrontEndUsers 1.17 Just found this bug and wish to create this post to avoid you from troubles >:D When we needs to register some new user from code, we usually work by this steps: 1) Check if username not used already by some one else 2) If not...
by kembl
Tue Apr 10, 2012 8:28 pm
Forum: Modules/Add-Ons
Topic: [Solved] FrontEndUsers viewuser template
Replies: 3
Views: 1101

Re: FrontEndUsers viewuser template

... <p>Adres:&nbsp;{$userinfo.adres}</p> but the 'adres' field is not shown. ... As a fast guess you may have the mistake in 'address' field name :) Try this and see $userinfo array field names <pre> {$userinfo|var_export} </pre> this the same which Peciura mentored
by kembl
Tue Apr 10, 2012 8:20 pm
Forum: Modules/Add-Ons
Topic: FrontEndUsers username as email problem
Replies: 3
Views: 1503

FrontEndUsers username as email problem

Hello, developers! I have strange problem with FrontEndUsers module when users have email as username. ??? When I edit some prperty of FrontEnd user from FrontEndUsers interface, the symbol "@" in they name became %40 in database field and user cannot login to system :) I am not too often ...
by kembl
Mon Mar 26, 2012 10:54 pm
Forum: Developers Discussion
Topic: [SOLVED] How to change template while RegisterRoute?
Replies: 11
Views: 5132

Re: How to change template while RegisterRoute?

Oh my God, Jo Morg, I was tried this, and you are the best!!! This is exactly what i need :) I use CMS not first day, but this task was not solved by me, because I did not clear understood the docs! In my mind returnid have slight other meaning :) Jo Morg, since this forum has no "Thanks mod&qu...
by kembl
Sun Mar 25, 2012 6:26 pm
Forum: Developers Discussion
Topic: [SOLVED] How to change template while RegisterRoute?
Replies: 11
Views: 5132

Re: How to change template while RegisterRoute?

I guess you should read Calguy's post more carefully His answer has no sense for me, cause even if I got NotDefaultTemplate variable with template name in my action, I still not know how to ask system use template with that name when out page {content} block :( Thax Jo Morg, it was my fault, I real...
by kembl
Sat Mar 24, 2012 9:48 pm
Forum: Developers Discussion
Topic: [SOLVED] How to change template while RegisterRoute?
Replies: 11
Views: 5132

Re: How to change template while RegisterRoute?

Hello all, today :) After several cup of coffe, I almost found the way to set up differetn from default template for a page after RegisterRoute, without any changes in core CMS algorithm. Lets see this beautiful workaround: In the top of your action.custom_action.php ( this name only for example), y...
by kembl
Fri Mar 23, 2012 11:04 pm
Forum: Developers Discussion
Topic: [SOLVED] How to change template while RegisterRoute?
Replies: 11
Views: 5132

Re: How to change template while RegisterRoute?

Assuming your action understood the 'mytemplate' parameter (and you had set it's type with SetParameterType... you could use: $this->RegisterRoute('@some/place/(?P<paramname>.*?)$@', array('action'=>'custom_action', 'mytemplate='=>'NotDefaultTemplate')); Thx for the fast answer! This is main clue, ...
by kembl
Fri Mar 23, 2012 9:22 pm
Forum: Developers Discussion
Topic: [SOLVED] How to change template while RegisterRoute?
Replies: 11
Views: 5132

[SOLVED] How to change template while RegisterRoute?

Hello all! I wonder if some one know how to assign some template for route. I was try that: $this->RegisterRoute('@some/place/(?P<paramname>.*?)$@', array('action'=>'custom_action', 'showtemplate='=>'NotDefaultTemplate')); but with out some success. Do not wont to change some core logics but it seem...

Go to advanced search