forum

How does Google determine to index pages as discussion pages? [closed]

跟風遠走 提交于 2020-01-02 04:48:06
问题 Closed. This question is off-topic. It is not currently accepting answers. Want to improve this question? Update the question so it's on-topic for Stack Overflow. Closed 7 years ago . I am building a question and answering site by myself. I want to make this site indexed as a Q&A site or Forums by Google, which can be retrieved when using the "Discussions" in Google. In my personal experience, Google Discussion Search is a pretty useful function when I want to get others' real opinions or

Full integrate phpbb into existing website

旧城冷巷雨未停 提交于 2019-12-31 17:35:32
问题 I have a website that runs for around 2-3 years before, it has its own forum, however, recently I would like to use the phpbb3 to replace that forum. I encounter the problem when I need to do integration . To be precise, I have an existing database that have fields designed for my own website. What I would like to do is the old user do not need to register again and can login to the phpbb forum, using every functions it provided (e.g. check profile) . Are there any way to implement such

Forum using Php [closed]

£可爱£侵袭症+ 提交于 2019-12-31 06:24:11
问题 Closed. This question is off-topic. It is not currently accepting answers. Want to improve this question? Update the question so it's on-topic for Stack Overflow. Closed 4 years ago . I want to design a Forum using Php but the problem I am facing is that I dont know how can I put a Post creator in it. As far as I know something like wysiwyg editor is used for it but how can I get it. By Post creator I mean some thing like here on stackoverflow we are given an editor by which we post our

Difficulty with join 3 tables in a query in php

落花浮王杯 提交于 2019-12-31 03:45:45
问题 My database has 3 tables i wish to access in the select query but I cannot seem to get it to work. Selecting from 2 tables works fine so I know everything else is working apart from my code for selecting from 3 tables. My database has been created on PHPmyadmin The Tables are as follows: forum_replies reply_id topic_id user_id reply_text reply date forum_topics topic_id category_id user_id topic_title topic_description topic_date users user_id username This is the code I have tried to use and

Should DynamoDB adjacency lists use discrete partition keys to model each type of relationship?

徘徊边缘 提交于 2019-12-30 08:41:06
问题 Context I am building a forum and investigating modeling the data with DynamoDB and adjacency lists. Some top-level entities (like users) might have multiple types of relationships with other top-level entities (like comments). Requirements For example, let's say we want be able to do the following: Users can like comments Users can follow comments Comments can display users that like it Comments can display users that follow it User profiles can show comments they like User profiles can show

Warning: mysql_num_rows() expects parameter 1 to be resource, boolean given in /home/folder/public_html/folder/folder/login.php on line 18 [duplicate]

那年仲夏 提交于 2019-12-29 02:11:46
问题 This question already exists : Warning: mysql_fetch_* expects parameter 1 to be resource, boolean given error [duplicate] Closed 6 years ago . I'm trying to set up my database however I ran into some issues sadly. I've seen that many people asked either the same or similar question but no matter how I look at my code, and modify it. I get confused more, and add more errors. So if someone could explain to me how I can attempt to fix it I'd appreciate it. Here is the error message: Warning:

How Can i import Code ckeditor in my laravel app?

做~自己de王妃 提交于 2019-12-25 19:06:52
问题 I am making a discussion forum application in Laravel . Here I want to use Ckeditor in comment sections. When somebody comments, then the code should show like here in stackoverflow. @if(Auth::check()!=null) <div class="col-md-6 col-md-offset-3"> <div class="panel panel-default"> <div class="panel panel-body"> <form action="/comment" method="POST"> {{ csrf_field() }} <input type="hidden" name="user_id" value="{{ Auth::user()->id }}"> <input type="hidden" name="post_id" value="{{ $post->id }}"

Select all forums and get latest post too.. how?

我们两清 提交于 2019-12-24 18:05:15
问题 I am trying to write a query to select all my forums and get the corresponding latest post (including the author)... but I failed. This is my structure: forums forum_threads forum_posts ---------- ------------- ----------- id id id parent_forum (NULLABLE) forum_id content name user_id thread_id description title user_id icon views updated_at created_at created_at updated_at last_post_id (NULLABLE) This is my current query: SELECT forum.id, forum.name, forum.description, forum.icon, post_user

Select all forums and get latest post too.. how?

送分小仙女□ 提交于 2019-12-24 18:05:06
问题 I am trying to write a query to select all my forums and get the corresponding latest post (including the author)... but I failed. This is my structure: forums forum_threads forum_posts ---------- ------------- ----------- id id id parent_forum (NULLABLE) forum_id content name user_id thread_id description title user_id icon views updated_at created_at created_at updated_at last_post_id (NULLABLE) This is my current query: SELECT forum.id, forum.name, forum.description, forum.icon, post_user

Phpbb3 forum integration with existing site

萝らか妹 提交于 2019-12-24 07:09:36
问题 I am trying to integrate the phpbb forum with my existing site. I have already looked at these links, and it doesn't seem to work. I have copied this code define('IN_PHPBB', true); define('ROOT_PATH', "/path/to/forums"); if (!defined('IN_PHPBB') || !defined('ROOT_PATH')) { exit(); } $phpEx = "php"; $phpbb_root_path = (defined('PHPBB_ROOT_PATH')) ? PHPBB_ROOT_PATH : ROOT_PATH . '/'; include($phpbb_root_path . 'common.' . $phpEx); $user->session_begin(); $auth->acl($user->data); into a