de en

Archive » September, 2008 «

SemanticScuttle Style

Sunday, September 14th, 2008 | Author: Andreas

In the SemanticScuttle forum I promised that I will release this weekend a sneak preview of the SemanticScuttle Theme I’m working on. Unfortunately I had no time to finish it, therefore here only a screenshot of the theme, it is named “Miss Monk”:
Screenshot of the SemanticScuttle Theme Miss Monk
As far as I finish it you can download it here but I have to ask for your patience because the next weeks I will be very busy.

Maybe you are also working on the style of your SemanticScuttle installation than this cheat sheet is maybe helpful for you:
Standard CSS-Elements of SemanticScuttle
It shows the basic elements of the standard cascading style sheet. If you want to print it you can download the PDF-Version.

Category: Semantic Scuttle | 10 Comments

Supplement to Installation of Semantic Scuttle

Tuesday, September 09th, 2008 | Author: Andreas

Possibly you get an error-messages after installation. There are two known issues at the moment.

Opening-Tag <?

In the file templates/top.inc.php at line 52 is “<? ” used as an opening-tag. This is valid according w3 but some web-server do have a problem with this tag. Just change it to “<?php”

Warning: setlocale() [function.setlocale]

Maybe you get an error-message like:

Warning: setlocale() [function.setlocale]: Passing locale category name as string is deprecated. Use the LC_* -constants instead in C:\web\SemanticScuttle\includes\php-gettext\gettext.inc on line 131
Warning: setlocale() [function.setlocale]: Invalid locale category name LC_MESSAGES, must be one of LC_ALL, LC_COLLATE, LC_CTYPE, LC_MONETARY, LC_NUMERIC, or LC_TIME in C:\web\SemanticScuttle\includes\php-gettext\gettext.inc on line 131

I had this once with an local XAMPP-installation. As far as I find out this is a problem of the web-server. For details visit PHP.NET.

Because this is only a warning you can avoid the output of this message by modifying
/includes/php-gettext/gettext.inc, at line 131 you find:

$ret = setlocale(LC_MESSAGES, $locale);
Just at an @ before setlocale:
$ret = @setlocale(LC_MESSAGES, $locale);

Category: Semantic Scuttle | Leave a Comment