concrete5 is an open source content management system (CMS) for creating web and e-commerce applications.
Questions tagged [concrete]
75 questions
2
votes
1 answer
Htaccess redirect loop for Concrete downloads, difficulty level: wordpress also in the mix
I have a WordPress install in my root web folder. It is using the standard WordPress .htaccess file:
# BEGIN WordPress
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME}…

Jamie
- 133
- 1
- 3
- 12
2
votes
4 answers
Get all concrete implementations of a delegate collection in C# via reflection
Yeah, I tried to make the title smaller, but I couldn't.
I'm very new to reflection, so I'm struggling with a problem that I don't know if it's even possible to solve.
I'll use some simple delegate example to describe it.
public void Main() {
…

Ramon Amorim
- 111
- 1
- 1
- 7
2
votes
1 answer
Custom Library in Concrete5.7 Not Working
How do libraries work in 5.7? I am trying to utilize a custom library for use on a single page.
I have created the single page view and controller. I am able to access the controller from the view.
I also created a library in application/libraries/…

WhoaItsAFactorial
- 3,538
- 4
- 28
- 45
2
votes
3 answers
Concrete 5 CMS Scalability and Speed
I'd like to get some insight from people who are currently using Concrete for a large content site.
The dev team i'm working with has decided to use that as our CMF for our next project.
I have some concerns regarding this system.
Scalability
Can…

user3312066
- 31
- 3
2
votes
1 answer
Vector of virtual class : are pointers the clean way to go?
Note:
This is almost a duplicate of this entry:
Abstract classes and Pointers
I need to create a vector of virtual classes. Here the idea:
#include
using namespace std;
class VirtualFoo {
protected:
VirtualFoo();
virtual…

Vince
- 3,979
- 10
- 41
- 69
1
vote
2 answers
Cant acces concrete 5 via localhost
I've downloaded latest concrete 5 version from their website. After that I unzipped it into xampp/htdocs folder and when I'm trying to acces it via localhost it says this "Fatal error: Uncaught Error: Undefined constant…

Andrei Oprică
- 19
- 1
1
vote
0 answers
Prevention of a client from directly instantiating my concrete classes
How would you prevent a client from directly instantiating your concrete classes?
For example, you have a Cache interface and two implementation classes MemoryCache and DiskCache, How do you ensure there is no object of these two classes is created…

Habibullah
- 3
- 7
1
vote
1 answer
Symfony concrete table inheritance
I am developing Symfony-Doctrine based application. I used Concrete Table Inheritance strategy.But now I faced with some problems. I have following tables:
Product : has some properites
Computer : Extends product.
Notebook : extends Computer.
Ipad :…

qasanov
- 427
- 1
- 7
- 20
1
vote
2 answers
Concrete Instance Methods Are Just as Bad as Static Methods for Testing, Right?
If method A() calls static method B(), this is bad because the two are tightly coupled, correct?
But if, instead of calling B(), A() called a non-static method C() of some concrete class, this would be equally bad for testing, correct? Because now…

S. Valmont
- 13
- 3
1
vote
3 answers
C# Resolve Concrete type from Generic Interface
I have the following scenario:
I have several derived exceptions classes that implements a base exception
//Base exception type
public class SaberpsicologiaException : Exception
{
}
//One of the derived exception class
…

Manjar
- 3,159
- 32
- 44
1
vote
0 answers
Concrete class passed instead of a class with implemented interface php
I can not figure our why I get this error:
Argument 1 passed to App\src\Manager::manage() must be an instance of App\src\ManageableInterface, instance of App\src\Worker given.
I Coded to the interface ManageableInterface not to the conrete class…

mtrobert
- 71
- 1
- 8
1
vote
1 answer
How to model 4 points bending reinforced concrete beam with ABAQUS?
I have some questions about how to define boundary conditions for 4 points bending reinforced concrete with Abaqus. So I model this beam but I don't know how to define boundary conditions and step. Can You please help me? The model is 1/4 beam…

Mona
- 11
- 1
1
vote
1 answer
Populating DataGridView using DataGridView.DataSource property and BindingSource
The following two code snippets populate a BindingSource which is later assigned to
a DataGridView.DataSource.
When the concrete class QuotesTool.LineItem is used (first snippet) the grid DOES NOT display the appropriate data:
BindingSource…

user575719
- 11
- 1
1
vote
1 answer
Concrete5 (5.7) - Don't cache page or current block on block error
I've got a block that relies on a fairly flaky third party service to get data to render so, when it does encounter a problem, I'd like to display an error message, rather than throw an exception and not render the page.
Easy enough to do until you…

Andrew Dinmore
- 804
- 7
- 14
1
vote
2 answers
Concrete5 import JS or CSS in single page
I've been checking this page out on their docs: http://documentation.concrete5.org/developers/assets/requiring-an-asset
But none of the options are working out for me. No errors or anything. It just ignores the requireAsset…

adamj
- 4,672
- 5
- 49
- 60