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 Pages

HowTo 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" 

stuff

 

Testing referrer

http://test-ee.com

http://shetestsonline.com

HowTo 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.

See: EEDocs: Entry Tracking

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

HowTo Determine if Import Password is MD5

Question: I have a listing of members to import into EE 2.x, and I’m not sure if the password scheme is using MD5 or SHA1. How can I tell?

Answer: One way is to create a member with the password of password. If the password is using MD5 encryption, the password that is there will be:

5f4dcc3b5aa765d61d8327deb882cf99 

If you’re using SHA1, the password will be:

5baa61e4c9b93f3f0682250b6cf8331b7ee68fd8 

Or you can use this handy form to generate an MD5 hash: md5 Hash Generator