Questions tagged [concrete5]

Concrete5 is an open source content management system (CMS) written in PHP and based on the Zend Framework. It allows for in-place editing of content for logged in admin-level users.

concrete5 is an open source content management system (CMS) written in PHP. It includes Zend libraries and includes jQuery for JavaScript needs. It allows for in-context editing of content for logged in admin-level users.

As a database, it's using MySQL through the ADOdb Database Abstraction Layer.

The project is maintained at http://www.concrete5.org/.

Many answers can be found on their forums or through their irc channel on freenode (/server irc.freenode.net in your favorite IRC client, and /join #concrete5 once you're connected)

586 questions
2
votes
3 answers

How do I pass a dynamically created list to the controller to save into the database?

I am working in Concrete5 and am new to the MVC concept. I have a some jquery that creates an unordered list from a textbox in my view. If your familiar with Concrete5 this is the view for the block I am adding the list to. It is basically a list of…
user2066695
  • 75
  • 1
  • 1
  • 6
2
votes
1 answer

Why is session state needed for concrete5? And can it be disabled?

Public visitors to a site being hosted on Concrete5 CMS platform are given a session cookie. Even when there is nothing to interact with on the site itself. Since session states are a performance drain, how can it be turned off in concrete5? And if…
simbolo
  • 7,279
  • 6
  • 56
  • 96
2
votes
2 answers

mod_rewrite .htaccess on AJAX calls throwing errors

I'm developing a new site for a church. The old domain is: chippingcampdenbaptistchurch.org.uk The new domain is: campdenbaptist.org.uk The campdenbaptist.org.uk domain is an addon domain to a Linux shared server. Inside it's folder it has the…
2
votes
1 answer

Concrete5 shared authentication

I have an existing application (Java based on Tomcat 7 using MySQL) and would like to bring up a separate CMS website using Concrete5. I already have thousands of member accounts and an authentication system (session cookie based) in the existing…
JeffS
  • 166
  • 5
2
votes
1 answer

Strange error on increasing memory limit

I am using a shared hosting environment and the default memory limit for PHP is 32M. I am facing some problems with Concrete5 setup. When I try to sign into the admin panel of Concrete5, it gives memory limit error Allowed memory size of 33554432…
Uday Sawant
  • 5,748
  • 3
  • 32
  • 45
1
vote
2 answers

Concrete5 Block Attributes

I have a few images on a homepage, and I want the client to be able to change the images from time to time. Right now they are hard coded as: If I set this…
ansarob
  • 825
  • 2
  • 13
  • 32
1
vote
3 answers

Can I use Code Igniter with Concrete5?

I am building a site that will (obvisouly) have a front end public portion that I want to drive with Concrete5, but then it will also have a members section that I would like to build with Code Igniter. Does anyone have any idea how I could do…
John B
  • 20,062
  • 35
  • 120
  • 170
1
vote
2 answers

How to run concrete5 in a subdirectory?

I've put my concrete5 installation in the subfolder /www/concrete5. I've tried different entries in my .htaccess file but all modes seem to have some errors. There is mainly one forum post about it Domain root - CMS link problem but it does not…
Georg Schölly
  • 124,188
  • 49
  • 220
  • 267
1
vote
1 answer

Trouble with Concrete5 custom dashboard single_page / admin panel

I am having some trouble with getting my custom dashboard single_page to interact with the database correctly. Screenshot: http://i54.tinypic.com/2lvh45d.jpg Testimonial Code (single_pages/dashboard/testimonials.php):…
RipzCurlz
  • 427
  • 2
  • 5
  • 14
1
vote
1 answer

Redirect Block Controller view()

From view() of a single page controller I can redirect like following: use \Concrete\Core\Http\ResponseFactory; return ResponseFactory::redirect($this->getRequest()->getPathInfo()); From the view() method of a block controller the redirection with…
1stthomas
  • 731
  • 2
  • 15
  • 22
1
vote
1 answer

doctrine deleting has to be done twice

I have the following DB structure and relations: Posts -> OneToMany,cascade={"persist"} -> Replies -> OneToMany,cascade={"persist"} -> Files entities + files on disk -> event to delete files entities Posts -> OneToMany,cascade={"persist"} -> Files…
linuxoid
  • 1,415
  • 3
  • 14
  • 32
1
vote
1 answer

concrete5 way for $_FILES, $_POST, $_SERVER

What's the concrete5 equivalent to if (empty($_FILES) && empty($_POST) && isset($_SERVER['REQUEST_METHOD']) && strtolower($_SERVER['REQUEST_METHOD']) == 'post') { in way of requests? [UPDATE] Looks like this is working: if…
linuxoid
  • 1,415
  • 3
  • 14
  • 32
1
vote
1 answer

How can I disable the ability to approve edits in Concrete5?

I'm looking for a way to disable the ability to approve edits for certain users. That means they should still be able to write and edit articles, but they shouldn't be able to approve them making them visible to the public. Is there a way that each…
user669186
  • 93
  • 1
  • 6
1
vote
1 answer

Create and download a clean CSV using PHP in a CMS

I'm using Concrete5 CMS and I'm trying to allow users to download a subset of other users (ones they invited). To do this, I am making a new page and using the following: $new_csv = fopen('members.csv', 'w'); $array = array("foo", "bar",…
1
vote
1 answer

Concrete5 Stuck in Edit Mode

I am using Concrete5 for developing a website and I cannot get out of the Edit Mode. Whenever I click on "Exit Edit Mode" the entire screen darkens and I cannot click on the publishing options. Also, the hover area for the content areas is pushed…
SketchyTK
  • 21
  • 4