Welcome Guest, Not a member yet? Register   Sign In
Blaze 0.91 Released
#1

[eluser]Elliot Haughin[/eluser]
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
#2

[eluser]soulWasted[/eluser]
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/front...esheet.css.
I'm using this htaccess: http://rapidshare.com/files/102823265/bl...ccess.html

Anybody knows how to solve that? Thanks in advance Wink.
#3

[eluser]abmcr[/eluser]
MY also ..... same problem....
#4

[eluser]xZenon[/eluser]
Try to comment (or remove) the "# Add Trailing Slash (Force it!) - It looks cool..." section in your htaccess. Then refresh.
#5

[eluser]soulWasted[/eluser]
still the same Sad...
#6

[eluser]xZenon[/eluser]
Try to use my htaccess.
Also try to clear the browser cache.

Code:
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 ^admin$ index.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]
#7

[eluser]soulWasted[/eluser]
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.
#8

[eluser]xZenon[/eluser]
Strange. It works for me.
Maybe you shoud play with RewriteBase...
#9

[eluser]soulWasted[/eluser]
Don't have more time spending on this. I'll wait for next release and then will decide...




Theme © iAndrew 2016 - Forum software by © MyBB