Examples: query, "exact match", wildcard*, wild?ard, wild*rd
Fuzzy search: cake~ (finds cakes, bake)
Term boost: "red velvet"^4, chocolate^2
Field grouping: tags:(+work -"fun-stuff")
Escape special characters +-&|!(){}[]^"~*?:\ - e.g. \+ \* \!
Range search: properties.timestamp:[1587729413488 TO *] (inclusive), properties.title:{A TO Z}(excluding A and Z)
Combinations: chocolate AND vanilla, chocolate OR vanilla, (chocolate OR vanilla) NOT "vanilla pudding"
Field search: properties.title:"The Title" AND text
Profile picture
Alex Bogdanovski
Administrator Moderator
2 Questions, 58 Answers
  Active since 11 February 2017
  Last activity 7 months ago

Reputation

1267 9 54

Badges 9

Editor Freshman Teacher Critic Newbie 6 × Reporter Enthusiast Scholar Supporter
3 Votes
2 Answers
4K Views
3 Votes 2 Answers 4K Views
How can a computer restart itself? After it's off, how does it tell itself to come back on again? What kind of software is it that can do this?
6 years ago
0 Votes
3 Answers
4K Views
0 Votes 3 Answers 4K Views
In Windows you have a C-drive. Everything labeled beyond that is with the following letter. So your second drive is D, your DVD is E and if you put in a USB ...
9 Front end flexibility of scoold

You use your own CSS file by setting para.stylesheet_url = "http://url.to/your_style.css". Apart from that, anything can be modified if you're comfortable recompiling the project with Maven.

5 years ago
6 on-prem HTTPS and para console

Yes, to both questions.

  1. You can enable HTTPS in the JVM using Spring Boot's configuration properties, or use nginx instead.
    https://github.com/Erudika/scoold#self-hosting-para-and-scoold-through-ssl

  2. The Para Web Console is an open source project - simply clone it and use it however you like. It's 100% client-side, so it doesn't really matter if you host it locally or not.
    https://github.com/erudika/para-admin-ui

2 years ago
6 Cannot add Tag in my localserver.

Try upgrading Scoold to 1.31.1. I think I fixed that issue a while back...

4 years ago
5 Does the pro version support login through Web Forms via Token Based Auth?

EDIT: Custom authentication is now supported by Para and implemented in Scoold Pro.

If your serverside implements OAuth 2.0, LDAP or SAML, then yes. Anything else would require custom authentication code running on the Para backend.

3 years ago
4 Any database preference for Scoold?

You are right - the schema for SQL databases is pretty simple. I wouldn't say document DBs are preferred over RDMBSs, it's just that Para is a schemaless backend server so the data fits better inside a document DB. In other words Para expects data in any kind of structure.

2 years ago
4 Can you create custom badges?

You can, but it requires modification of the source code.

4 years ago
5 years ago
5 years ago
3 I would like to check if location based question works properly.

Have you tried this with the latest version 1.28.5? Indeed, there was a parameter bug in previous versions.

5 years ago
3 Does scoold support Latex formatting?

Yes, but in the PRO version which is coming out later this year. In the OSS version only basic syntax hightlighting is supported.

4 years ago
3 installation
  1. Install Java
  2. Get the Scoold JAR file
  3. Get the Para JAR file
  4. Follow the instructions in the README

You can create private groups, called "spaces" inside of Scoold.

2 years ago
2 List my questions

Go to your profile to see a list of all your questions.

one year ago
2 Scaling Scoold up - Pro vs Pro Unlimited

One pod can definitely handle thousands of users, if it has enough memory and cpu.

  1. One pod for Para and one for Scoold should be enough
  2. Try adding more CPU or memory if necessary
  3. Scoold Pro and Scoold Pro unlimited are the same product, but with unlimited you can run Scoold Pro on any number of hosts.
  4. Use CloudSQL or Mongo Atlas
one year ago
2 Scoold database - are you recommending H2 database in production

Sure, it's a simple, stable and performant database and it's ideal for small-to-medium Scoold deployments. I can't recommend any particular DB because they all have their tradeoffs. Simply use the database engine you are most familiar with. It is also quite easy to implement a DAO plugin for any database you choose, unless it it's already implemented.

For details on how to access the H2 DB in ./data and how to back up/restore it,...

4 years ago
2 Are Translations reviewed or voted ?

Translations are voted and accepted automatically if they have 5+ votes or reviewed and accepted by an administrator. We'd greatly appreciate translating Scoold. Could you tell me which languages you were traslating?

5 years ago
2 How can I translate?

Here's the whole language file in English: https://github.com/Erudika/scoold/blob/master/src/main/resources/lang_en.properties

You can also go to the Translate page and translate there. It would be slower as all translated strings have to be approved first.

**If you translate the whole language file, please notify me or create a Pull Request on GitHub and I'll add it to the project as the official tra...

5 years ago
2 How to move a existing question to an other space

Yes, moderators and admins can move questions between spaces.

3 years ago
2 Why Can't I Comment On Things

Everyone with the 'Enthusiast' badge can post comments. You need 100+ reputation to get it.

5 years ago
2 Does it need admin approval to post a question on schoold ?

Everyone can ask a question here, but in Scoold Pro you can configure it so that questions posted by new users need to be approved by an admin in order to be published.

Answers to your other questions on Drift:

  1. You don't have to pay anything for the open source version of Scoold
  2. You can ask an unlimited number of questions on Scoold
  3. You can reply to any question
3 years ago
2 could you explain how we install this script on a server step by step ?

Hi, the deployment steps for Scoold are:

  1. Deploy Para on your machine OR create an account and app on ParaIO.com
  2. Create and edit the application.conf file and configure the Para endpoint and credentials
  3. Run Scoold with java -jar scoold.war -Dconfig.file=application.conf

Read the Para documentation and the Scoold Readme.

6 years ago
2 Login using SAML

Single sign-on with SAML is now supported in Scoold PRO.

5 years ago
2 Can you integrate scoold with yammer or microsoft teams ?

What kind of integration are you talking about? If you're talking about authenticating with Microsoft Teams, that's already supported.

3 years ago
2 Creating Slack integration

David, that's a cool idea! We should discuss this further via email or on Gitter. You're talking about 2 features here - first is the Slack bot and the second is a Scoold integration with the Slack API.

This will be a premium feature and will be available in Scoold Pro.

3 years ago
2 Manages Spaces - allow users to access (read/write) different spaces

This has been fixed in 1.31.0. Users -> Bulk Edit Spaces

4 years ago
2 Is it possible to make a particular tag required?

Currently, you can auto-assign tags for new questions if the question contains no tags. It's not possible to make a tag required. How would you decide if a tag is required for a particualar question?

2 years ago
2 [FIXED] Cannot add Tag in my localserver. Fixed in 1.31.3

This is finally fixed! Please upgrade to 1.31.3

4 years ago
2 Upload an image

Yes, Scoold Pro supports file uploads.

3 years ago
2 How to manually interact with the para database?

Of course, you can use the regular SQL browsing tools for your database to interact with the data. Another option is to use console.paraio.org to browse the data inside a Para app. It's a simple web console for CRUD operations on objects.

2 years ago
2 Is it possible to get logs ?

SAML passwords cannot be reset from Scoold.
Usually SAML errors are due to incorrect mapping of attributes, similar to this one:

Missing values for SAML attributes 'name', 'FirstName', 'LastName'.

Make sure you set the names of attributes to match your SAML attributes:

# attribute mappings (usually required)
# e.g. urn:oid:0.9.2342.19200300.100.1.1
para.security.saml.attributes.id = ""
# e.g. urn:oid:0.9.2342.19200300.100.1.3
para.security.saml.attributes.email = ""
#...
3 years ago
Show more results compactanswers