This is the H2
HowTo Replace Underscores with Dashes in url_title
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_titles` SET `url_title` = REPLACE(`url_title`, '_', '-');
For EE2.x:
UPDATE `exp_channel_titles` SET `url_title` = REPLACE(`url_title`, '_', '-');
NOTE: As with any direct sql manipulation, make sure you’ve backed up the table before attempting this.
Link to Docs on security in PHP templates
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
HowTo Set the Time Out Limit in EE2.x
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
Setting Time Out LimitsCreating a New Entry in EE 1.6.8
Just a quick video.
HowTo Create a Sticky Post
Question: How can I make my forum topic sticky?
Answer: Take a look at this short video:
