Questions tagged [bolt-cms]

Bolt is a sophisticated, lightweight and simple CMS for PHP.

Bolt is a sophisticated, lightweight and simple CMS for PHP.

It is quick to set up, easy to configure, uses elegant templates, and above all, it’s a joy to use. Bolt is created using modern open source libraries, and is best suited to build sites in HTML5 with modern markup.

From a technical perspective: Bolt is written in PHP, and uses either SQLite, MySQL or PostgreSQL as a database. It's built upon the Silex framework together with a number of Symfony components and other libraries. Bolt is released under the open source MIT-license.

  • Bolt was created for developers who need a tool to create websites in an easy and straightforward way, while at the same time it should be pleasant to use for content-editors, without getting in the way at any time. To be more specific:

  • Front-end designers and developers who like to write clean markup, and who want to build websites where the CMS doesn’t dictate what the templates or website should look like. Developers who need a system that’s easy to set up and configure, that’s easy to manage and maintain, but is also flexible and versatile.

  • End users (read ‘editors’) that want to focus on producing and editing content, and not on clicking buttons in the CMS.

You can learn more about Bolt by visiting http://bolt.cm/.

Installation

Detailed instructions can be found in the Installation section in the documentation.

Resources

315 questions
1
vote
2 answers

Bolt CMS - automatic relations

I'm new to Bolt CMS, but it looks good so far. My goal for now is to create rating for articles. For that, I created ratings content type, and there I placed article_id, user_id and rating fields. Now how can I set those fields to create relations…
Tomek Buszewski
  • 7,659
  • 14
  • 67
  • 112
1
vote
1 answer

How to run custom PHP code in Bolt CMS?

What I want to do is have one page that lists some data from my database (the data is separate from Bolt). I've looked into extensions but I don't see any way to make a "page" as such, only create "snippets". But snippets don't display actually in…
DisgruntledGoat
  • 70,219
  • 68
  • 205
  • 290
1
vote
1 answer

Listing records by 'sortorder' in Bolt CMS template not following numerical value

I have a contenttype called "courses" which I would like to list in a specific order. I'm able to do so in the backend (by setting has_sortorder: true for the corresponding taxonomy), but I am not able to get the records to list in the same order in…
Blackthorn
  • 11
  • 3
1
vote
2 answers

Set default route for taxonomy

In routing.yml I have defined a new route for categories: categories: path: '/{slug}/' defaults: _controller: 'Bolt\Controllers\Frontend::taxonomy' taxonomytype: categories But Bolt still generates url for categories…
nightlybus
  • 11
  • 3
1
vote
2 answers

Bolt CMS - Email host connection timeout when using SimpleForms

I'm currently trying to set up a website using Bolt CMS. For a simple contact form, I'm trying to use the "SimpleForms" extension. For this, it seems I have to set up a "mailoptions" field in "config.yml". Now, for the mail host I use Zoho Mail. I…
CodingBeagle
  • 1,888
  • 2
  • 24
  • 52
1
vote
1 answer

Running PHP scripts with Bolt CMS

So, this might be a stupid question. Bear with me, I'm new to CMS usage :P Anyways, I'm using Bolt CMS to create a very simple website. For it, I just need a simple contact form, which means my server needs to be able to send out an email. I want to…
CodingBeagle
  • 1,888
  • 2
  • 24
  • 52
1
vote
2 answers

Composer install: your requirements could not be resolved to an installable set of packages

Trying to install Bolt v2.2.4 with the following commands: git clone git://github.com/bolt/bolt.git bolt cd bolt git checkout v2.2.4 composer install Then I get the following error: $ composer install Loading composer repositories with package…
babbaggeii
  • 7,577
  • 20
  • 64
  • 118
1
vote
1 answer

Is there an alternative to Views (Drupal) for Bolt-CMS

We like BOLT CMS as an alternative to Drupal. How can we create lists or tables in a similar way.
1
vote
2 answers

Error: Class 'Stripe' not found

I'm trying to use the Stripe php api in a Bolt extension but it's having trouble finding the class. I added the Stripe library to composer.json: "require": { "stripe/stripe-php": "1.*" } And ran composer install.…
babbaggeii
  • 7,577
  • 20
  • 64
  • 118
1
vote
1 answer

Bolt DB Connection Failing AWS?

I've setup a local instance of bolt using config_local.yml and everything works great. I've configured my AWS dev environment with config.yml but my EC2 instance can't connect to the DB using bolt (it works just fine if I mysql to the RDS database…
jfgrissom
  • 592
  • 5
  • 13
1
vote
0 answers

Error: Uncaught exception 'Twig_Error_Loader' with message 'The "src/assets/" directory does not exist.'

Getting this strange error when accessing the backend in bolt. I haven't deleted this particular directory, and the frontent works fine. Stack trace: #0 src/Render.php(53): Twig_Loader_Filesystem->addPath('/var/www/html/h...') #1…
babbaggeii
  • 7,577
  • 20
  • 64
  • 118
1
vote
0 answers

Class 'Facebook\HttpClients\FacebookCurlHttpClient' not found

I've autoloaded the Facebook sdk classes with composer. Here's the composer autoload_psr4.php: $vendorDir = dirname(dirname(__FILE__)); $baseDir = dirname($vendorDir); return array( 'Facebook\\' => array($vendorDir .…
babbaggeii
  • 7,577
  • 20
  • 64
  • 118
1
vote
3 answers

Bolt-CMS not showing images (helios template)

I just installed Bolt-CMS and I dont have much time to learn the entire CMS. All my images uploaded to the "files" are not showing even on the dashboard. They get renamed to /1000x1000r/xxxx.xxx and they don't show. Can anyone tell me what's going…
Martin
  • 474
  • 2
  • 6
  • 17
1
vote
1 answer

Silex add route with higher priority than existing routes

My Silex routes are defined in a routing.yml config file. In my php code I would like to add some new routes dynamically and I want these routes to have a higher priority than the routes defined in routing.yml. Currently I'm adding my routes as in…
matthew
  • 2,156
  • 5
  • 22
  • 38
1
vote
1 answer

Install of Bolt CMS on Windows

I have installed the Bolt CMS on a Windows 2008 R2 server and it shows me a blank screen when I first try to launch it. I'm using IIS as the web server and MySQL as the database. I have verified that file permissions are set correctly for the…