Search found 149 matches

by wakewatcher
Thu Apr 25, 2013 9:58 pm
Forum: [locked] Installation, Setup and Upgrade
Topic: Upgrading using Softaculous after the fact?
Replies: 3
Views: 1589

Re: Upgrading using Softaculous after the fact?

OK. Makes sense. I like what SMF does in that for their upgrades you can actually see what is changing. E.g. in x.php find "foo foo foo" and replace with "bar bar bar bar." While SMF has the capability to programmatically upgrade I generally do it by hand just to get a sense of w...
by wakewatcher
Tue Apr 23, 2013 12:54 am
Forum: [locked] Installation, Setup and Upgrade
Topic: Upgrading using Softaculous after the fact?
Replies: 3
Views: 1589

Upgrading using Softaculous after the fact?

I installed cmsms on host A and then moved it all to host B. Host B has Softaculous. Is there a way I can trick Softaculous into thinking it installed it in the first place so that I could use it to manage future upgrades? As an aside there must be a good reason that cmsms isn't upgradable from the ...
by wakewatcher
Sun Mar 03, 2013 10:11 am
Forum: CMSMS Core
Topic: FEU/Core/FF/IE interaction unresolved but now understood
Replies: 3
Views: 1751

Re: FEU/Core/FF/IE interaction unresolved but now understood

Yes that does look very similar. I found something else while working on a workaround. Don't know if it's useful or not. I found in this IE case that the session id in the feusers_loggedin table doesn't match the actual session id in the cases where the wrong form is rendered. (i.e keep getting the ...
by wakewatcher
Sat Mar 02, 2013 10:48 pm
Forum: CMSMS Core
Topic: FEU/Core/FF/IE interaction unresolved but now understood
Replies: 3
Views: 1751

FEU/Core/FF/IE interaction unresolved but now understood

First of all, thanks for all for your recent coddling. Secondly, I'm not sure how helpful the following is but thought I'd share it in case others ran into similar behaviors. Lastly, While nothing is fixed I now believe I know exactly what's happening. However I don't know the why it's happening. Th...
by wakewatcher
Fri Mar 01, 2013 7:03 pm
Forum: Modules/Add-Ons
Topic: Determining what form {FrontEndUsers} is displaying
Replies: 4
Views: 1837

Re: Determining what form {FrontEndUsers} is displaying

Thanks for the very quick reply. I apologize if this is getting blurred with my questions elsewhere. I'm wondering if your questions here are regarding my thread that apparently got moved to the lounge. (http://forum.cmsmadesimple.org/viewtopic.php?f=28&t=65457) But to answer your questions: sma...
by wakewatcher
Fri Mar 01, 2013 6:27 pm
Forum: CMSMS Core
Topic: Browser compatibility Issues
Replies: 4
Views: 2340

Re: Browser compatibility Issues

Oh. Thanks for the tip. I uninstalled FEUMailer and it didn't make any difference to this behavior. Incidentally how would one check if they are compatible with the latest CMSMS? thx.
by wakewatcher
Fri Mar 01, 2013 6:24 pm
Forum: Modules/Add-Ons
Topic: Determining what form {FrontEndUsers} is displaying
Replies: 4
Views: 1837

Re: Determining what form {FrontEndUsers} is displaying

Thanks Calguy. (I'm still trying to adapt to your particular brand of bedside manner. ;D ) Did you mean to say something supportive like: "Hmmm... If that bit of code returns an id then you should be seeing the sign out form. If not then that would indicate that there is a problem with FEU whic...
by wakewatcher
Fri Mar 01, 2013 8:07 am
Forum: Modules/Add-Ons
Topic: Determining what form {FrontEndUsers} is displaying
Replies: 4
Views: 1837

Determining what form {FrontEndUsers} is displaying

Is there a way for the content page to know what form is being shown by {FrontEndUsers} I want to print instructions depending on what is being shown. (depending if login or signout) Unfortunately it is not a simple matter of making a UDT of something like: $feusers = cms_utils::get_module('FrontEnd...
by wakewatcher
Thu Feb 28, 2013 7:42 pm
Forum: CMSMS Core
Topic: Browser compatibility Issues
Replies: 4
Views: 2340

Re: Browser compatibility Issues

Thanks. Let me add that this cmsms instance was a virgin install on 2/14 and I used the module manager to install all the modules during the week or so that followed. I'm assuming the module manager is picking up the latest modules. Right?
by wakewatcher
Thu Feb 28, 2013 7:10 pm
Forum: CMSMS Core
Topic: Browser compatibility Issues
Replies: 4
Views: 2340

Browser compatibility Issues

I've got a recurring issue. (Actually probably not recurring but outstanding.) I thought I had this fixed. http://forum.cmsmadesimple.org/viewtopic.php?f=7&t=65361 but apparently not. I thought it was related to the FEU module but now I'm wondering if it is a general issue. You can see the behav...
by wakewatcher
Tue Feb 26, 2013 5:56 am
Forum: CMSMS Core
Topic: General UDT Question re: accessing module output etc
Replies: 5
Views: 2056

Re: General UDT Question re: accessing module output etc

I'd like to claim inspiration but I think more of desperation I just simplified and this seems to work as an event handler udt. $smarty_data = "{JM_Forum action='last_posts'}"; $output = $smarty->fetch('string:'.$smarty_data); /* Massage and store $output in database */ I read in the docum...
by wakewatcher
Tue Feb 26, 2013 12:06 am
Forum: CMSMS Core
Topic: General UDT Question re: accessing module output etc
Replies: 5
Views: 2056

Re: General UDT Question re: accessing module output etc

Problem doesn't seem to be item 2 above as it hangs the page no matter which event I pin it to. E.g. I invoked it with the FEU OnLogin event and it just hangs and times out. Hmmm.....
by wakewatcher
Mon Feb 25, 2013 11:20 pm
Forum: CMSMS Core
Topic: General UDT Question re: accessing module output etc
Replies: 5
Views: 2056

Re: General UDT Question re: accessing module output etc

:( I spoke a bit too soon. While it works in a page as a udt it doesn't work when invoked by a triggered event. So positioning this as a general event handler question but using a specific example for illustration; Using the JM_Forum Module I've set up an "OnNewTopic" event triggered which...
by wakewatcher
Mon Feb 25, 2013 10:34 pm
Forum: CMSMS Core
Topic: General UDT Question re: accessing module output etc
Replies: 5
Views: 2056

Re: General UDT Question about accessing module output etc.

My delay in the thanks was me using your great tips and first digging in and figuring the rest out. (And additional thanks to the smarty website.) This is what I ended up with. There may be a more elegant way but this gets me the page into a variable which then, at the very least, I can parse to pul...
by wakewatcher
Mon Feb 25, 2013 3:30 am
Forum: CMSMS Core
Topic: General UDT Question re: accessing module output etc
Replies: 5
Views: 2056

General UDT Question re: accessing module output etc

I've got a general product support question but am showing a specific example to illustrate what I'm trying to learn. When a UDT is invoked I want it to be able to invoke a module and retrieve its output data. For example when a user gets to a certain page I want to log that into a database table. I...

Go to advanced search