HowTo Turn on Error Checking in EE2.x
Question: How can I turn on error checking in EE2.x?
Answer: You’ll need to edit the index.php file found in your /system directory, and change the value of
$debug = 0;
to
$debug = 1;
NOTE: Remember to change this value back when you are done troubleshooting.
Tags: error checking - ee2EE2.0 Only HowTo Note to Self
Tell-a-Friend
TShoot: Problems with File Uploads in EE2.02PB build 20100430
When I attempt to use the File Manager from EE202PB build 20100430, I see the following error:
Fatal error: Using $this when not in object context in */expressionengine/config/mimes.php on line 62
What causes this, and how can I fix it?
There was a change in the /system/expressionengine/config/mimes.php file that you need to replace if you were using an earlier build of EE2.0x.
Replacing the mimes.php file fixes the problem.
Tags: mimes - tshootBuilds and Updates
Tell-a-Friend
Add-on Conversion Guidelines
Question: Where can I find conversion guidelines to convert my EE1.6x add-ons to EE2.x?
Answer: You can find this information at: EEDocs: Conversion Information
Tags: eedocs - conversionEE2.0 Only EEDocs
Tell-a-Friend
Location of Language Downloads for EE2
Question: Where can I find language packs for EE2?
Answer: You can find language packs for EE2 here.
EE2.0 Only Note to SelfTell-a-Friend
Hidden Configuration Variables
Question: Where can I find the list of hidden configuration variables for EE1.6.x?
Answer: You can find these in the EEWiki: Hidden Configuration Variables
Tags: eewikiTell-a-Friend
Don’t Allow Non-Logged in Members to See Memberlist
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: eeforum - member list
EE1.6 Only HowTo Forum
Tell-a-Friend
Simple Search Finding Content
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"
HowTo Note to Self
Tell-a-Friend
HowTo Turn off Honoring DST Settings on Entries
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 - dst
EE2.0 Only HowTo
Tell-a-Friend
HowTo Get Rid of my Publish Page Layout
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`
Tell-a-Friend
Where can I find Snippets in the EE2 Control Panel?
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 - snippets
EE2.0 Only HowTo
Tell-a-Friend


