forums

How to add a new post on Opencart forum?

家住魔仙堡 提交于 2020-05-15 19:42:49
问题 I have an account at opencart forum https://forum.opencart.com/ and I have a few things to ask regarding opencart , but I don't get to know how to add a new post on this forum, there is no option showing in my account to add a new post. I have searched but could not find anything. Can anybody tell me about it? 回答1: 1.Login. 2.choose where to post your new post.. like General,OpenCart 2.0 Support etc. then choose and click on that type of support... 3.click on general support. 4.you can see

Handling unread posts in PHP / MySQL

橙三吉。 提交于 2019-12-20 11:49:14
问题 For a personal project, I need to build a forum using PHP and MySQL. It is not possible for me to use an already-built forum package (such as phpBB). I'm currently working through the logic needed to build such an application, but it's been a long day and I'm struggling with the concept of handling unread posts for users. One solution I had was to have a separate table which essentially holds all post IDs and user IDs, to determine if they've been read: tbl_userReadPosts: user_id, post_id,

using django and twisted together

馋奶兔 提交于 2019-12-18 12:38:38
问题 1)I want to devlop a website that has forums and chat. The chat and forums are linked in some way .Meaning for each thread the users can chat in the chat room for that thread or can post a reply to the forum. I was thinking of using django for forums and twisted for chat thing.Can i combine the two? The chat application devloped using twisted is linked to the forum. 2)If i use twisted and django what kind of web host shold i use while putting by website on web ?Shold i use a VPS? Or can i get

How do forums show you unread topics?

天大地大妈咪最大 提交于 2019-12-18 11:57:52
问题 I have user discussion forums I coded in php/mysql, I am wanting to know how the big name forums can make it show you which topics have new posts in them, usually by changing an icon image next to the thread without using hardly any resources? 回答1: The simplest way is to track the last time someone was logged in. When they come back to visit, everything which has been updated since then is obviously "new". This has some problems though, since logging out effectively marks all items as read.

How to group different forums into categories PHP

与世无争的帅哥 提交于 2019-12-13 19:11:34
问题 I would like to group my forums into categories, as seen here: I currently have a database table called forum_categories that takes a title and creates an ID for all the categories created. I also have a column in a database table named forum_forums (all the different forums that I want to categorize) which takes a value named category_apart_of . How would I go about listing the forums in their correct category ID? Thank you so much! If you would like to see any of my code, or want me to

Asp.net Custom user control button. How to stop multiple clicks by user

两盒软妹~` 提交于 2019-12-12 04:31:10
问题 I am trying to modify an open source Forum called YetAnotherForum.net in the project they have a custom user control called Yaf:ThemeButton. Now its rendered as an anchor with an onclick method in this code ThemeButton.cs using System; using System.Web.UI; using System.Web.UI.WebControls; namespace YAF.Controls { /// <summary> /// The theme button. /// </summary> public class ThemeButton : BaseControl, IPostBackEventHandler { /// <summary> /// The _click event. /// </summary> protected static

Select all categories with latest post, user, and topic information

♀尐吖头ヾ 提交于 2019-12-11 03:33:52
问题 I am working on a custom forum for a web project. I have categories with id, topics with id and category, and posts with id and topic and user id. What I'm trying to do is display a list of the categories with data from the categories table along with data from the posts table for the newest post in that category, data for that posts's associated user, as well as some data for the topic associated with that latest post. I've been banging my head on the wall trying to figure the query out, but

Drupal email when someone posts to forum topic

别说谁变了你拦得住时间么 提交于 2019-12-10 18:37:51
问题 Is there a module to email the owner of a post when someone replies to there forum post? 回答1: Use Rules, and based on the fact that forum post is a node, and a comment is standard comment, define a rule that sends mail on comments of the forum content type. If you need additional help, please let me know. 回答2: I have used the drupal Notifications Module, which is the module used on groups.drupal.org to notify users of comment and content changes. http://drupal.org/project/notifications 来源:

Image processing related discussion forum [closed]

心不动则不痛 提交于 2019-12-08 14:58:19
问题 As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance. Closed 7 years ago . I am looking for discussion forum for Image processing related queries, Can someone direct me some discussion groups, Though I am a

Handling unread posts in PHP / MySQL

笑着哭i 提交于 2019-12-03 01:53:22
For a personal project, I need to build a forum using PHP and MySQL. It is not possible for me to use an already-built forum package (such as phpBB). I'm currently working through the logic needed to build such an application, but it's been a long day and I'm struggling with the concept of handling unread posts for users. One solution I had was to have a separate table which essentially holds all post IDs and user IDs, to determine if they've been read: tbl_userReadPosts: user_id, post_id, read_timestamp Obviously, if a user's ID appears in this table, we know they've read the post. This is