Part of the EllisLab Network
   
 
Blaze 0.91 Released
Posted: 25 March 2008 02:29 AM   [ Ignore ]  
Lab Assistant
Avatar
RankRank
Total Posts:  196
Joined  03-26-2006

Hey Guys,

Just letting you know that I’ve release another little update for Blaze which adds basic blog admin, as well as the framework for the full-featured blog admin.

Next week we’ll have a better project website with a roadmap, feature request, bug tracker, and task list for you to browse to your heart’s content!

Read more about it, and get the release here:

Blaze CodeIgniter CMS 0.91 Released

 Signature 

On the first day, God created CodeIgniter… Then he could really get some work done!

Elliot Haughin CodeIgniter Blog |
Twitter

Profile
 
 
Posted: 27 May 2008 04:04 AM   [ Ignore ]   [ # 1 ]  
Summer Student
Total Posts:  4
Joined  07-07-2007

Hi to everyone! I have to say, that Blaze seems like really lightweight CMS (thanks Elliot wink.

But when I “installed” Blaze, I still have a problem similar to Sverre. Page misses CSSs and other static things. My site for Blaze is recently here: http://blaze.soulwasted.net/ and every link in <head> section is like: http://blaze.soulwasted.net/static/frontend/default/style/stylesheet.css.
I’m using this htaccess: http://rapidshare.com/files/102823265/blaze_htaccess.html

Anybody knows how to solve that? Thanks in advance wink.

Profile
 
 
Posted: 27 May 2008 08:43 AM   [ Ignore ]   [ # 2 ]  
Lab Assistant
Avatar
RankRank
Total Posts:  297
Joined  05-29-2006

MY also ..... same problem….

 Signature 

CI Js_calendar plugin click

WYSIWYG with CI

Profile
 
 
Posted: 27 May 2008 03:08 PM   [ Ignore ]   [ # 3 ]  
Summer Student
Avatar
Total Posts:  3
Joined  05-27-2008

Try to comment (or remove) the “# Add Trailing Slash (Force it!) - It looks cool…” section in your htaccess. Then refresh.

Profile
 
 
Posted: 27 May 2008 04:34 PM   [ Ignore ]   [ # 4 ]  
Summer Student
Total Posts:  4
Joined  07-07-2007

still the same :(...

Profile
 
 
Posted: 27 May 2008 04:41 PM   [ Ignore ]   [ # 5 ]  
Summer Student
Avatar
Total Posts:  3
Joined  05-27-2008

Try to use my htaccess.
Also try to clear the browser cache.

RewriteEngine On
RewriteBase 
/

# Must do this before a trailing slash gets put on it
RewriteRule ^static/frontend/([a-zA-Z_-]*)/(.*)$ application/views/themes/$1/static/$2 [L]
RewriteRule 
^static/admin/([a-zA-Z_-]*)/(.*)$ application/views/themes_admin/$1/static/$2 [L]

# Add Trailing Slash (Force it!) - It looks cool  RewriteCond %{REQUEST_FILENAME} !-f
#RewriteCond %{REQUEST_URI} !(.*)/$
#RewriteRule ^(.*)$ http://%{HTTP_HOST}/$1/ [R=301,L]

# Admin ‘dashboard’
RewriteRule ^adminindex.php/admin [L]
RewriteRule 
^admin/$ index.php/admin[L]

# Admin functions within Admin module and controller
RewriteRule ^admin/(navigation|users|settings|login|logout)$ index.php/admin/$1 [L]
RewriteRule 
^admin/(navigation|users|settings|login|logout)/(.*)$ index.php/admin/$1/$2 [L]
RewriteRule 
^admin/nav_(.*)$ index.php/admin/nav_$1 [L]

# All others, push to the module in question
RewriteRule ^admin/([a-zA-Z]*)$ $1/admin [L]
RewriteRule 
^admin/([a-zA-Z]*)/(.*)$ $1/admin/$2 [L]

# Any request were the file or directory doesn’t exist…
# Push to CI

RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond 
%{REQUEST_FILENAME} !-d
RewriteRule 
^(.*)$ index.php/$1 [L] 
Profile
 
 
Posted: 27 May 2008 05:14 PM   [ Ignore ]   [ # 6 ]  
Summer Student
Total Posts:  4
Joined  07-07-2007

xZenon> This is the same file I’m using (and everybody else, I think). Don’t know where elsewhere look for mistake than in htaccess. Thanks anyway wink.

Profile
 
 
Posted: 27 May 2008 05:21 PM   [ Ignore ]   [ # 7 ]  
Summer Student
Avatar
Total Posts:  3
Joined  05-27-2008

Strange. It works for me.
Maybe you shoud play with RewriteBase…

Profile
 
 
Posted: 29 May 2008 04:04 AM   [ Ignore ]   [ # 8 ]  
Summer Student
Total Posts:  4
Joined  07-07-2007

Don’t have more time spending on this. I’ll wait for next release and then will decide…

Profile