Search found 13 matches
- Sat Jun 14, 2008 6:05 pm
- Forum: Developers Discussion
- Topic: 'Update' functionality for CMS Made Simple
- Replies: 0
- Views: 1093
'Update' functionality for CMS Made Simple
Hey peeps, I've been using CMSMS for a while now and I think I've got the hang of it. It's a great tool for building fast interactive websites. Recently however I have been considering other possibilities for using the system and was wondering if anyone could give me any advice or musings on the top...
- Tue Jun 03, 2008 8:06 pm
- Forum: [locked] Installation, Setup and Upgrade
- Topic: Site migration: No Admin menu, No index.php
- Replies: 9
- Views: 7290
Re: Site migration no Admin theme
Cheers for the quick reply. I've found and removed the file, but i'm now getting a blank page for both admin and frontend. Sorry to bug, and I can't really be more helpful, 'cuse there's nothing to comment on :P. EDIT: I don't know if this'll help but I found this in the server error log, [Tue Jun ...
- Tue Jun 03, 2008 7:07 pm
- Forum: [locked] Installation, Setup and Upgrade
- Topic: Site migration: No Admin menu, No index.php
- Replies: 9
- Views: 7290
Site migration: No Admin menu, No index.php
I recently moved my site from a local server to an internet server, I cleared my cache, backed up the sql file, copied it to my new server, changing the permissions via ftp and reuploaded the sql. However, the frontend of the site tells me that the site is under maintenance and when I attempt to acc...
- Sun Jun 01, 2008 4:56 pm
- Forum: Developers Discussion
- Topic: Calendar Module API
- Replies: 0
- Views: 1089
Calendar Module API
Does anyone know if there is an api for the Calendar module and if so where I can find the darned thing?
I'm attempting to write it into a UDT (or should that be an UDT...), and have had trouble calling the module using the $gCms->modules['MODULE NAME']['object'];
Cheers for any help.
I'm attempting to write it into a UDT (or should that be an UDT...), and have had trouble calling the module using the $gCms->modules['MODULE NAME']['object'];
Cheers for any help.
- Sat May 31, 2008 3:56 pm
- Forum: Modules/Add-Ons
- Topic: [Solved] Help on how to show or hide Email in FEU Listing
- Replies: 2
- Views: 1183
Re: Help on how to show or hide Email in FEU Listing
This is written purely off the top of my head but something like this may work for you. {foreach from=$items item=entry} <tr> <td>{$entry.name}</td> {if $entry.view_email == 1} <td>{$entry.email}</td> {/if} .... You basically want the script to check each user's email preferences each time. Therefor...
- Sat May 31, 2008 2:21 pm
- Forum: Modules/Add-Ons
- Topic: Calendar and FEU Question
- Replies: 0
- Views: 830
Calendar and FEU Question
Hey all. I was wondering if anyone could help me out with a problem I have. Basically, my calendar is set up to display information to certain users dependent upon a value matching that user's name. I was wondering whether it is possible to then parse that information into the user's FEU data and ad...
- Mon May 26, 2008 1:37 pm
- Forum: Modules/Add-Ons
- Topic: InterComm Module Question
- Replies: 9
- Views: 2758
InterComm Module Question
Does anyone know as to why I can't access any of the functionality of the InterComm ( http://dev.cmsmadesimple.org/projects/internalmsg/ ) module. From the php I've read it should have intergrated itself into my admin section, but I have nothing. Are there other steps I should be taking to use the m...
- Sun May 25, 2008 1:27 pm
- Forum: Modules/Add-Ons
- Topic: [solved]News: how to change the detailpage according to the category?
- Replies: 3
- Views: 1596
Re: News: how to change the detailpage according to the category?
One possible, but very simplified way of doing it could be to add an 'if' statement below the foreach statement on the calender template. This will of course require the use of three templates.
I hope this helps.
Code: Select all
{foreach from=$items item=entry}
{if $entry->category == 'General'}
- Sun May 25, 2008 1:14 pm
- Forum: Modules/Add-Ons
- Topic: [Solved] Intergration of Calendar and FEU
- Replies: 3
- Views: 2770
Re: Intergration of Calendar and FEU
Cheers for the help vilkis. I've played around a bit using the code you gave me, and come out with this, which works quite well, by editing the calendar template. {foreach from=$day.events item=event} {if $event.fields.name == $ccuser->property('name')} <li><a href="{$event.url}">{$event.e...
- Sat May 24, 2008 3:04 pm
- Forum: Modules/Add-Ons
- Topic: [Solved] Intergration of Calendar and FEU
- Replies: 3
- Views: 2770
[Solved] Intergration of Calendar and FEU
I was wondering whether it is possible to integrate the Calendar and FrontEndUser modules to display only the events which pertain to the user they are intended for. I require the calendar to take a custom value (name) and compare it to a value in ccuser (Name). I know that this isn't actual code, b...
- Tue May 13, 2008 4:25 pm
- Forum: Modules/Add-Ons
- Topic: Front End Users problem
- Replies: 1
- Views: 876
Front End Users problem
Hey all, I'm using the frontendusers module for my site and have recently incorporated the login panel as a sidebar. However, since I placed it there, the text in every page becomes a hyperlink to the user's account settings when the user is logged on. I have tried almost everything i can think of t...
- Mon Apr 21, 2008 10:39 pm
- Forum: Modules/Add-Ons
- Topic: Property Variables and CustomContent
- Replies: 2
- Views: 1116
Re: Property Variables and CustomContent
Cheers, thank you.
- Mon Apr 21, 2008 10:32 pm
- Forum: Modules/Add-Ons
- Topic: Property Variables and CustomContent
- Replies: 2
- Views: 1116
Property Variables and CustomContent
Hey all, I was wondering if someone can tell me whether it is possible to extract the property variables from a user, which are defined by FrontEndUsers. I know you can access the information, and test whether it is true or false with: {if $ccuser->property("propertyname") However, is it p...