We are glad to offer 3 new free concrete5 themes available on our website:
simple green:

http://www.smartwebprojects.net/concrete5-design/simple-green-theme/
morning coffee:

http://www.smartwebprojects.net/concrete5-design/morning-coffee/
illustrative:

http://www.smartwebprojects.net/concrete5-design/illustrative/
All these designs were developed for wordpress by other people. See details of each theme for original author. We just converted the themes for concrete5. These themes are licensed under GNU GPL conditions and are free to use.
If you need to have some design converted for concrete5, you might be interested in our concrete5 design integration service.
Find more concrete5 themes here:
http://www.smartwebprojects.net/concrete5-design/free-concrete5-themes/
admin New concrete5 themes
If you accidentally clicked on the "Remove" button for "Generate Sitemap File" job and cannot restore the job. Don’t worry. It can be easily done in the following way:
1. Move (not copy) generate_sitemap.php file from /concrete/jobs/ to /jobs/
2. Go to Dashboard, then open Maintenance section.
3. You should see the Generate Sitemap File job and Install button next to it. Click the Install button.
It was easy, wasn’t it?
admin concrete5 for dummies
Please welcome new concrete5 skin: Cordobo Green Park 2.

Read more…
admin New concrete5 themes
Some developers may need to show the list of pages that were the most recently updated in concrete5. This code snippet should help you doing this or similar tasks.
So, open the file of your concrete5 theme and add the code snippet specified below. Or you can create a block with such code. Or just simply wait till we release such block the next week or so.;-)
Read more…
admin concrete5 for developers
Have you been waiting for new concrete5 template? Here you get it! We are glad to introduce the next wordpress theme converted for concrete5 cms:

Read more…
admin New concrete5 themes
We are glad to introduce just another theme for concrete5 cms:

Read more…
admin New concrete5 themes
Hi everyone!
We have updated our website with new design. Any comments on this are welcome.
We’ve also revised concrete5 themes and made some corrections to them. Now all the themes can be installed in the same way. No need to add specific blocks, just upload, install and activate.
Read more…
admin New concrete5 themes
Recently I noticed that sometimes concrete5 can cause core dump files generated in root concrete5 directory. The files look like core.12345 where 12345 is a process id. It seems that the problem is caused by the application getting out of memory.
You can try to resolve it by increasing memory limit for php. For example, hostgator hosting allows you to upload php.ini file with configuration directives.
You can use the following line to set memory limit to 32 megabytes (or more if you like):
memory_limit = 32M
core dump files contain the application state data only and can be safely deleted without breaking your application. If you are experienced developer or advanced unix user, you can investigate why the application had crashed with gdb utility (GNU project debugger). Use man gdb for reference on the utility usage.
For example:
gdb -c core.4010
It shows the following result:
Core was generated by `/usr/bin/php /home/user/public_html/index.php'.
Program terminated with signal 11, Segmentation fault.
[New process 4010]
#0 0x0830f8bf in ?? ()
Segmentation fault occurs when applications try to access more memory than it is allowed. So try increasing memory limit. That should help you.
admin concrete5 for advanced users
There could be a situation when you might need to copy some content from one concrete5-based website to another. You can try doing "Edit page" -> "Edit block", then select all and paste on the new website. It will work if you don’t have text formatting in the block, otherwise it might been copied with some format losses.
Read more…
admin concrete5 for dummies
I recommend to apply the following fix in concrete5 to make the result xhtml code be more w3c compliant. As you should know, all ampersands (&) should be replaced with its html representation in hrefs, js sources, image sources, etc.:
&
Read more…
admin concrete5 for developers