| Sunday 26 April 2009 6:50:23 am 
                                                                
                                                                 Hi! 
As i mentioned before, this are my first steps in Exponential 4.1.0. Have Installed it with eZ Flow. After installation, I only get Disable editor button when editing content, and the text 'advanced.block' where the editor should be.
 
The editor doesn´t show any icons, did following checks:- ActiveExtensions[]=ezoe
 - old Online Editor (ezdhtml) is not also enabled
 - checked installation path
 - run ezpgenerateautoloads.php
 - made sure to have cleared all the caches (both Exponential and browser).
 - Enabled debug output, but don´t know what to show for
 
This is my .htaccess:# Copy this file to a new file called .htaccess in your Exponential root
 # to make the site more secure in non-virtualhost mode (index.php used in urls).
 #
 
<FilesMatch ".">order allow,deny
 deny from all
 </FilesMatch>
 
<FilesMatch "(^index\.php|favicon\.ico|index_treemenu\.php|\.(gif|jpe?g?|png|css|js|swf|html?)|var(.+)storage.pdf(.+)\.pdf)$">order allow,deny
 allow from all
 </FilesMatch>
 
# If you see "Forbidden" when trying to access root page of your site# without 'index.php' appended, uncomment the following "Files" section.
 # NOTE: replace "Exponential-4.1.0" with base name of the directory
 # where your Exponential intallation resides.
 # e.g. base name of "/sites/Exponential/Exponential-4.1.0" is "Exponential-4.1.0".
 
#<Files "Exponential-4.1.0"># order allow,deny
 # allow from all
 #</Files>
 RewriteEngine On 
# Allow access to the index_treemenu.php file for a faster admin interfaceRewriteRule content/treemenu/? index_treemenu.php
 RewriteRule ^index_treemenu\.php - [L]
 
# Uncomment the line below if you placed your favicon at the root of your # Exponential instance. It will then be served directly.
 #RewriteRule ^favicon\.ico - [L]
 # Uncomment the line below if you want you favicon be served from the standard design.
 # You can customize the path to favicon.ico by replacing design/standard/images/favicon.ico
 # by the adequate path.
 #RewriteRule ^favicon.ico design/standard/images/favicon.ico [L]
 RewriteRule ^design/standard/images/favicon\.ico - [L]
 
# Uncomment the line below once you set up the right robots.txt file# In that case remember to also modify the FilesMatch rule abov
 # More info here http://en.wikipedia.org/wiki/Robots.txt
 #RewriteRule ^robots\.txt - [L]
 
# Uncomment the line below in case you are using# Platform for Privacy Preferences Project ( P3P ) related files.
 # In that case remember to also modify the FilesMatch rule above
 # More info here : http://en.wikipedia.org/wiki/P3p
 #RewriteRule ^p3p/(.+)\.xml - [L]
 
RewriteRule !(\.(gif|jpe?g?|png|css|js|swf|html?)|var(.+)storage.pdf(.+)\.pdf)$ index.phpRewriteRule ^/var/[^/]+/cache/public/.* - [L]
 DirectoryIndex index.php THX for help Cris |