This is the H2
Guide to 404 Pages
Are you looking for more information on EE’s 404 pages? See: Guide to 404 Pages.
404 PagesHowTo Set Textareas to be a Certain Size in SafeCracker
Question: How can I set my textareas in SafeCracker to be a certain size?
Answer: Add the following code to your SafeCracker form:
add rows="10" cols="100"

Testing referrer
HowTo Set the Default Status for a SafeCracker Entry
Question: How can I set the default status value for a SafeCracker entry? I want all entries to be placed into the database with a particular status.
Answer: You can set the default status of each channel by simply editing the values of the extension. Click on SafeCracker in your list of Modules, and choose which channel to have a default status.
SafeCracker Setting a default statusHowTo Create a Top Twenty List of Popular Items
Question: How can I create a list of the most popular items on my site?
Answer: You’ll need to first set up a single entry template (such as a comments or a permalink page) with a track_views=“one” parameter added to your exp:channel:entries loop.
Then you’ll create a template or an embed with the following code:
{exp:query limit="20"
sql="select entry_id, view_count_one as cnt, url_title, title
from exp_channel_titles
where view_count_one > 0
order by view_count_one desc"}
{cnt} - <a href="{path=howto/articles/{url_title}}">{title}</a><br />
{paginate}
<p>Page {current_page} of {total_pages} pages {pagination_links}</p>
{/paginate}
{/exp:query}
Change the path to your single entry page as needed.
Top Hits