Don’t Allow Non-Logged in Members to See Memberlist

- | March 28, 2010 | posted by Sue Crocker | Permalink

Question: How can I keep Guests (non-logged in users) from seeing the member list in the forum?

Answer: You’ll need to make a slight change in your forum code to switch out a line in the logged_out code to reside in the logged_in code:

From the

{if logged_out}
    {lang
:welcome}
    {include
:top_bar_spacer}
    
<a href="{path:login}">{lang:login}</a>    
    
{include:top_bar_spacer}
    
<a href="{path:register}">{lang:register}</a>    
    
{include:top_bar_spacer}
    
<a href="{path:memberlist}">{lang:memberlist}</a>
{/if} 

Remove the last line in this part of the template, and move it to the next grouping.

NOTE: This article is for EE 1.6.8 only.


Tags: -
EE1.6 Only HowTo Forum
Tell-a-Friend
Share |

Simple Search Finding Content

- | March 26, 2010 | posted by Sue Crocker | Permalink

Question: I’ve added some custom fields for my site, but when I search on words that should be searched, I get no matches. Why is that?

Answer: The default Simple Search form defaults to only searching titles, unless you specify differently.

Add the following code snippet to your Simple Search Form:

search_in="everywhere" 
Tags: -
HowTo Note to Self
Tell-a-Friend
Share |

HowTo Turn off Honoring DST Settings on Entries

- | March 18, 2010 | posted by Sue Crocker | Permalink

Question: How can I turn off DST settings being applied to my entries?

Answer: From the EE 2.01PB control panel, choose Admin > Localization Settings and set the value of Honor the Daylight Saving Time setting associated with each channel entry? to No.


Tags: -
EE2.0 Only HowTo
Tell-a-Friend
Share |

HowTo Get Rid of my Publish Page Layout

March 14, 2010 | posted by Sue Crocker | Permalink

Question: How can I get rid of the formatting I have set for EE2.x?

Answer: You’ll need to manually truncate the exp_layout_publish table.

Use the following snippet in either EE or using PHPMyAdmin:

TRUNCATE  `exp_layout_publish
EE2.0 Only HowTo
Tell-a-Friend
Share |

Where can I find Snippets in the EE2 Control Panel?

- | February 16, 2010 | posted by Sue Crocker | Permalink

Question: Where can I find Snippets in the EE2 Control Panel?

Answer: Snippets can be found at:

# CP Home # Design # Template Manager # Snippets


Tags: -
EE2.0 Only HowTo
Tell-a-Friend
Share |

HowTo Set Accessories to not be used

- | February 01, 2010 | posted by Sue Crocker | Permalink

Question: How can I get accessories to not be active if I have errors when accessing the Accessories page?

Answer: You can delete rows from the exp_accessories table. This query will remove all the rows in the table, but not delete any files on the server.

delete from exp_accessories 
Tags: -
HowTo Note to Self
Tell-a-Friend
Share |

HowTo Replace Underscores with Dashes in url_title

January 20, 2010 | posted by Sue Crocker | Permalink

Question: How can I change the url_title to use dashes (-) instead of underscores (_)

Answer: You can perform the following sql query to do this.

UPDATE `exp_weblog_titlesSET `url_title` = REPLACE(`url_title`, '_''-'); 

For EE2.x:

UPDATE `exp_channel_titlesSET `url_title` = REPLACE(`url_title`, '_''-'); 

NOTE: As with any direct sql manipulation, make sure you’ve backed up the table before attempting this.

HowTo Note to Self
Tell-a-Friend
Share |

Link to Docs on security in PHP templates

| January 20, 2010 | posted by Sue Crocker | Permalink

Question: Where can I find out more information about security risks with PHP in templates?

Answer: You can find more info from the following page in the EE 1.x docs: EEDocs: PHP in Templates

Array

Tags:
Note to Self
Tell-a-Friend
Share |

HowTo Set the Time Out Limit in EE2.x

- - | January 07, 2010 | posted by Sue Crocker | Permalink

Question: Is there a way of setting the time interval for the EE backend when using Sessions or Cookies and Sessions?

Answer: You can change this via Time Interval for Lockout in your Security and Session Preferences

CP Home -> Administration -> Security and Session Preferences

Forum Thread

Tags: - -
EE2.0 Only HowTo
Tell-a-Friend
Share |

Creating a New Entry in EE 1.6.8

- | January 01, 2010 | posted by Sue Crocker | Permalink

Just a quick video.

Tags: -
EE1.6 Only HowTo Videos
Tell-a-Friend
Share |

Page 2 of 4 pages  < 1 2 3 4 >