Featured Sites: A-Z Index
H
Newest 10 Entries
Question | What are gift points, and how do they work? |
---|---|
Answer | Gift points are a separate points balance that can only be sent to other members as gifts. They cannot be spent directly or used in escrow transactions. Gift points are earned daily based on usergroup membership and replenish independently of the regular points balance. When a member sends gift points, they become regular points for the recipient. |
Question | Can members send points to each other? |
---|---|
Answer | Yes, members can send points to each other as a token of appreciation, reward for a service, or as part of an agreement using the Points Escrow system. |
Question | How does content validation affect point earning? |
---|---|
Answer | Points are typically awarded immediately upon content submission to encourage participation. However, forum posts requiring validation only earn points after approval to deter spam. To further encourage high-quality content, consider using the "awards" addon to reward exceptional contributions. |
Question | Can I reward members who use specific browsers or operating systems? |
---|---|
Answer | Yes, Composr allows you to configure bonus points based on browser/platform criteria. You can set bonus points for members using Open Source browsers, specific operating systems, or even those who have enabled privacy features like "Do Not Track" (DNT) or "Global Privacy Control" (GPC). |
Question | What's the difference between points balance and rank points? |
---|---|
Answer | Points balance refers to the number of points a member currently has available to spend. This is the 'liquid' currency they can use for various actions. Rank points represent the total points a member has accumulated throughout their time on the website. These points determine the member's rank, which can grant access to additional privileges and act as a status symbol. |
Question | How can members earn points on my Composr website? |
---|---|
Answer | Members can earn points in various ways, including:
Most earning methods can be customized in the Admin Zone > Setup > Configuration > Points options to fit your website's needs. |
Question | What are cleanup tools in Composr and how do I use them? |
---|---|
Answer | Cleanup tools assist with website maintenance by deleting unnecessary data and optimizing database tables. They are divided into "De-cachers" and "Optimizers". You can access them through: Admin Zone > Tools > Cleanup tools. |
Question | How can I access PHP-Info in Composr? |
---|---|
Answer | PHP-Info provides a comprehensive overview of your PHP configuration. You can access it within Composr by navigating to Admin Zone > Tools > PHP-Info / Server Checks. This page also provides additional useful server information. |
Question | What is the purpose of the Health Check feature in Composr? |
---|---|
Answer | The Health Check feature in Composr proactively identifies potential issues that may affect your website's performance, security, and overall health. It performs various checks and alerts you to problems like:
The Health Check can be run manually or scheduled to run automatically and send e-mail notifications of results. |
Question | How can I use Content Delivery Networks (CDNs) to enhance my website? |
---|---|
Answer | CDNs improve website performance by serving content from geographically distributed servers, reducing latency and server load. You can leverage CDNs for your Composr website by:
|
Top 10 Entries
Question | Can I display different content to different usergroups? |
---|---|
Answer | Yes, you can achieve this by leveraging Tempcode within your templates. By using conditional statements like {$IS_IN_GROUP} and {$HAS_PRIVILEGE}, you can show or hide specific content sections based on the user's group membership or privileges. This technique allows you to "tease" premium content to non-paying users or tailor the user experience based on their access level. |
Question | What are match-key permissions and why would I use them? |
---|---|
Answer | Match-key permissions provide a more granular level of access control beyond the standard zone, page, and category permissions. They allow you to restrict access based on specific "match-keys", which are unique identifiers for different actions or content within Composr. For instance, you could use match-key permissions to prevent guests from submitting banners or to restrict access to the member directory for all but specific usergroups. You can also specify custom access denied errors for each match-key. A "match-key" is typically a page-link, such as cms:cms_banners:add. |
Question | How can I control who can view specific pages or categories? |
---|---|
Answer | You can manage access control for zones, pages, and categories primarily through the Permissions Tree Editor (Admin Zone > Security > Permissions Tree Editor). This tool provides a central location to set view permissions for different usergroups. You can also edit individual zone and category permissions through their respective editing interfaces, but the Permissions Tree Editor offers a more streamlined and efficient approach. |
Question | What is the difference between access permissions and privileges in Composr? |
---|---|
Answer | Access permissions control whether members of a certain usergroup can view specific areas of your site, such as zones, pages, and categories. A member only needs one of their usergroups to have access permission to view the content. But permissions work on a deny-first policy; if one of the permissions applicable to viewing something is denied for a usergroup, then the whole thing is denied for that usergroup (e.g. even if a download itself grants access, access will be denied if its category denies access). Privileges, on the other hand, dictate what actions a usergroup is allowed to perform across the website, like using advanced Comcode or bypassing the word filter. |
Question | How can I change the news archive display to show summaries instead of just headlines? |
---|---|
Answer | By default, the news archive screen shows only headlines. To display summaries like the news block, add :inline=1 to the page-link. For example, if your news archive page-link is site:news, modify it to site:news:inline=1. This will show summaries instead of just the headlines in the archive view. |
Question | What are Trackbacks and how do they work in Composr? |
---|---|
Answer | Trackbacks are a blogging feature that creates a link from an article on one blog to an article on another, acting as a citation mechanism. How Trackbacks Work:
To enable trackbacks, go to Admin Zone > Setup > Configuration > Feature options and check the "Trackbacks" option. You can then enable trackbacks for individual content items. |
Question | How can I filter the news archive to show specific content? |
---|---|
Answer | The news system allows advanced filtering:
These filters are controlled through parameters passed to the news blocks and carried through navigation links. When viewing a news post, you can also filter by the categories associated with that post. |
Question | How do I display external RSS feeds on my Composr website? |
---|---|
Answer | Composr offers two blocks for displaying RSS and Atom feeds in a news-like format:
To add a block, use the Block Construction Assistant or insert the following Comcode into your page: [block="http://example.com/feed.xml"]main_rss[/block] [block="http://example.com/feed.xml"]side_rss[/block] Replace "http://example.com/feed.xml" with the actual feed URL. Important: Exercise caution when using external feeds. Ensure the source is trustworthy, as malicious feeds can contain harmful code. |
Question | What are RSS/Atom feeds and how do they benefit my website? |
---|---|
Answer | Feeds, in formats like RSS and Atom, are XML files that syndicate your website content, making it accessible beyond your website. They can be viewed using feed reader applications (e.g., Feedly, Vienna) or integrated into other websites or web browsers. Composr supports both RSS and Atom for syndicating news and other content. While RSS is more common, Atom is a cleaner, standardized format. Both effectively share your content updates. Benefits:
|
Question | What are Personal Categories/Blogs in Composr? How do I create one? |
---|---|
Answer | Composr allows members of permitted usergroups to have their own personal news categories, also known as "blogs". These blogs appear as a tab on the member's profile (Conversr-only) and may also appear in the main news block depending on your configuration. To create a blog, a member simply adds a news post and selects their personal category. If the category doesn't exist, it will be automatically created upon submission. A dedicated "Blogs" CMS module (Admin Zone > Content > Blogs) is available if the "Separate blogs" configuration option is enabled. This simplified module focuses on blog posting and can be used to restrict members from submitting to general website news. |