Quantcast
Channel: Discourse Meta - Latest topics
Viewing all 60613 articles
Browse latest View live

Wrong link in admin page on non Docker install


First time setup

$
0
0

Matthew Hawley wrote:

So after I put in "bundle exec rails s" in the console It started serving a bunch of pages according to the vagrant setup guide. It hasnt stopped yet. I put localhost:4000 in my browser and it is taking forever to load. It says "Vagrant Discourse" in the title bar.

Is this just a first time thing?

Posts: 2

Participants: 2

Read full topic

How to install Discourse on Koding?

Can I only view a post's source if it's been edited?

$
0
0

Erlend Sogge Heggen wrote:

Am I missing something or am I completely reliant on a "post last edited" pencil-style button in order to view the Raw & HTML version of a post?

There's been many cases when I've wanted to view the source of posts to see how a particular Markdown/HTML trick was achieved, or to investigate a glitch in someone's post.

Perhaps a subtle "view source" link could be incorporated into the "share a link to post" datestamp/share pop-up?

OR

When you hover over juuust this spot exactly, the button will be revealed.

That'd make me a very happy power user.

Posts: 5

Participants: 4

Read full topic

Help Required in Migration from Vbulletin to Discourse

$
0
0

Nitesh Agrawal wrote:

We are a forum working out of India and is probably the biggest forum in its space. We have approximately 200,000 registered users with huge amount of Posts and Replies. We are currently Vbulletin based forum with some modifications performed as per our requirements.

We have received a feedback that this type of Migration is not possible for a forum as large as ours. However, we believe that this migration is completely possible and can be done. We do not have resources to perform the migration in House and will like to outsource this task. Can anyone take up this task? We are ok even if we have to pay some amount to get it done.

Regards,
Nitesh

Posts: 2

Participants: 2

Read full topic

Missing email with Facebook account use phone number at primary contact

$
0
0

Khoa Nguyen wrote:

This is a follow up with previous post here:

I DID NOT remove view email permission. But I set my phone number as my primary contact.

I can login successfully with this facebook accout in other site, even my own developing app which is using Hybrid Auth (http://hybridauth.sourceforge.net/)

Posts: 3

Participants: 2

Read full topic

Gmail dot trick

Hooking into after_authenticate for all authentication methods

$
0
0

Leo McArdle wrote:

I'm wanting to call an API every time a user logs in, to assign them to (or remove them from) various groups. The way I'm currently doing it is with a fork of the Persona authentication plugin, by tacking it on to the end of the existing after_authenticate function.

https://github.com/LeoMcA/discourse-persona-mozillians

Is it possible to do this after authentication no matter what login method a user uses? Or is there some other way to achieve the same effect?

Any help will be greatly appreciated smile

Posts: 1

Participants: 1

Read full topic


Search results are still shown in mobile view after deleting search term in search popup

Plugin not working for WP with nginx and WP 4.x

$
0
0

omfg wrote:

I like Discourse and I went over to the Github page to check out the status of the current WP plugin.
According to several issues the plugin can't work with Nginx and the WP 4.x.
Is that true?
Reference: https://github.com/discourse/wp-discourse/issues/83

My second concern is that it seems quite sensitive to various WP gotchas and unexpected situations (and that's fine).
I've been wondering if it's worth the trouble. Is it possible to instead show a Discourse RSS feed below each post so that whoever clicks on it gets redirected to the Discourse instance where they can leave a comment? I know it's a very manual and annoying approach, but it's less likely to get broken.

Posts: 2

Participants: 2

Read full topic

Flagging with long private message in unicode languages causes error

Site setting search shows "no results found" inappropriately

$
0
0

Anton wrote:

  1. Open site settings.
  2. Select "Users" tab.
  3. Type "admin" in the search box.

It ends up with GUI like on the image below:

  • On the right side, it says no results.
  • On the left side, it shows there are 2 results.

It looks confusing.

Posts: 2

Participants: 2

Read full topic

Wrong links to subcategory in noscript tags in a Thread

$
0
0

wrote:

Steps to reproduce:

  1. Create a category, say "Fruits"
  2. Create a category, say "Apples", add Fruits to its parent category
  3. Make a post in Apples, open the source of the page, Ctrl+F for /category/apples

You will find a <a href="/category/apples">Apples</a> link in its source in some noscript tag and the link will lead to an unknown link:

https://gist.github.com/Moter8/4573307264a498d84cc0#file-apples-post-html-L109

-

Running discourse 1.2.0.beta3

Posts: 2

Participants: 2

Read full topic

Clarification request of mobile Browser support

$
0
0

wrote:

Continuing the discussion from [Chrome on iOS bug] and [Samsung Browser bug on Android]:


Eh, seems kinda contradicting to me. I don't want to start an argument and I understand (and hate too) that Samsung doesn't update their browser/bloatware.

But what about the Android AOSP browser and apps that use the "in-app-browser" APIs? By what you had said it wouldn't be supported either, but both usually do ship up-to-date webkit etc.

Mind clarifying this?

Posts: 2

Participants: 2

Read full topic

vBulletin 4 migration

$
0
0

Chadi wrote:

Hi folks. Looking to migrate from vBulletin 4 and wanted to know the following.

  1. Any official importer for this?
  2. Any Discourse plugins? Themes?

Important features that I need also:
- censoring (word filters)
- WordPress bridge (if a WP user is logged in, automatically logged into Discourse and vice versa)
- gender based forum access (men cannot access women only forum, vice versa)
- anti spam controls
- social account login (FB, Twitter, LinkedIn, Google)
- hashtags (tags) and twitter like mentions "@username"

Thanks.

Posts: 9

Participants: 2

Read full topic


Config Nginx to receive real IP when using Cloudflare for noobs

$
0
0

Khoa Nguyen wrote:

Since CloudFlare acts as a reverse proxy, all connections now come from one of CloudFlare's IP addresses. and as @codinghorror

wink
So here is the instruction :
(see CloudFlare official document )

cd /var/docker
./launcher ssh enter
cd /etc/nginx/
vi nginx.conf

Type A

Add these code between http block

   set_real_ip_from   199.27.128.0/21;
   set_real_ip_from   173.245.48.0/20;
   set_real_ip_from   103.21.244.0/22;
   set_real_ip_from   103.22.200.0/22;
   set_real_ip_from   103.31.4.0/22;
   set_real_ip_from   141.101.64.0/18;
   set_real_ip_from   108.162.192.0/18;
   set_real_ip_from   190.93.240.0/20;
   set_real_ip_from   188.114.96.0/20;
   set_real_ip_from   197.234.240.0/22;
   set_real_ip_from   198.41.128.0/17;
   set_real_ip_from   162.158.0.0/15;
   set_real_ip_from   104.16.0.0/12;
   set_real_ip_from   2400:cb00::/32;
   set_real_ip_from   2606:4700::/32;
   set_real_ip_from   2803:f800::/32;
   set_real_ip_from   2405:b500::/32;
   set_real_ip_from   2405:8100::/32;
   real_ip_header     CF-Connecting-IP;

Your nginx.conf file should look like this:

http
{
   set_real_ip_from   199.27.128.0/21;
   set_real_ip_from   173.245.48.0/20;
   set_real_ip_from   103.21.244.0/22;
   set_real_ip_from   103.22.200.0/22;
 ......
real_ip_header     CF-Connecting-IP;
........
}

Type ESC >> :wq >> Enter

Test nginx config

nginx -t

If you see this line nginx: configuration file /etc/nginx/nginx.conf test is successful, your nginx configuration file is OK.
Restart nginx to take effect:

service nginx restart
exit

@sam @codinghorror can you help me to add this as a template?

Posts: 3

Participants: 3

Read full topic

Newly created category cannot be found

$
0
0

Tamás Michelberger wrote:

When I create a new category and immediately try to post a new topic the newly created category is not in the category drop-down. A page reload solves the issue.

My guess is that the category drop-down's content is not adjusted after a category has been created.

Posts: 2

Participants: 2

Read full topic

API - Where find all possibility?

SSO issue in v1.2.0beta3: "Account login timed out"

$
0
0

mike w wrote:

My site is configured for SSO. I upgraded to 1.2.0b3 today, now my users see the following error from the site after logging in via SSO:

Account login timed out, please try logging in again

Any advice on troubleshooting this? I checked date / time on both systems: they're within a few seconds drift of eachother, and both configured for UTC.

Posts: 2

Participants: 2

Read full topic

Creating and Submitting XML Sitemaps to Google, Bing & Yandex

$
0
0

wrote:

While not necessary, submitting a sitemap will make your site appear faster on search indexes.
This Howto covers submitting sitemaps to Google, Bing and Yandex.


Generating the Sitemap

Open http://www.web-site-map.com/ and generate your sitemap. While the site may seem a bit scammy, it works just fine. It will output a sitemap.xml and a broken_links.txt if there are any.

Open the sitemap.xml and change the root site (for example meta.discourse.org)'s frequency to daily and other sites too as you see fit.

Uploading the Sitemap to your Discourse installation

Navigate to your discourse installation's settings and search for extensions. Add xml as an authorized extension and click apply.

Navigate to your site assets topic (only visible for staff) and reply to the first post. Click the upload button and upload the previously generated sitemap.xml. You will see something like

<a class="attachment" href="/uploads/default/17/d86d639b474069e9.xml">sitemap.xml</a> (5.5 KB)

Copy the URL to the sitemap, e.g /uploads/default/17/d86d639b474069e9.xml and continue with the next step.

Submitting the sitemap

Create accounts at Google, Bing and Yandex and submit the sitemap. Should be self-explanatory, each service has their own help pages.

http://webmaster.yandex.com/site/
http://www.bing.com/toolbox/webmaster/
https://www.google.com/webmasters/tools/home

Where will my site's pages get found now?

Google, Yahoo, Bing, Yandex, Duckduckgo etc. will now index your site! surfer smiley

Posts: 1

Participants: 1

Read full topic

Viewing all 60613 articles
Browse latest View live


Latest Images