LetoDMS Community Forum
unable to check htaccess file... - Printable Version

+- LetoDMS Community Forum (https://community.letodms.com)
+-- Forum: LetoDMS Support (https://community.letodms.com/forumdisplay.php?fid=4)
+--- Forum: Technical Support (https://community.letodms.com/forumdisplay.php?fid=10)
+--- Thread: unable to check htaccess file... (/showthread.php?tid=255)

Pages: 1 2


RE: unable to check htaccess file... - administrator - 02-25-2011

(02-25-2011, 02:31 PM)EricBJ Wrote: First of all, sorry didn't realize it was the same problem...

To make sure there was permission to get to everything in the /letoDMS-2.0.2/, I changed permissions to 777 on every file and folder.

Now I get a similar error message to before...

[Fri Feb 25 00:41:21 2011] [alert] [client 192.168.2.215] /var/www/letoDMS-2.0.2/op/.htaccess: RewriteEngine not allowed here, referer: http://192.168.2.10/letoDMS-2.0.2/out/out.Login.php?referuri=%2FletoDMS-2.0.2%2Fout%2Fout.ViewFolder.php

I know that mod_rewrite module is enabled.

Is Apache not allowing RewriteEngine or is it the .htaccess file no allowing RewriteEngine? ..and does the problem seem to be with the folder or the referer?

Please forgive if these are really dumb questions, I'm just trying to get it straight in my head what is going on here...

Thanks,
Eric

hi Eric

run this
http://forums.letodms.com/showthread.php?tid=244

and post the result

thanks

LetoDMS team.


RE: unable to check htaccess file... - EricBJ - 02-25-2011

Results as requested...

LetoDMS 3.0.0 check configuration

Please create conf/conf.Settings.php file. You can use conf/conf.Settings.php.template to help you

What does this mean?

Thanks,
Eric


RE: unable to check htaccess file... - administrator - 02-25-2011

(02-25-2011, 04:49 PM)EricBJ Wrote: Results as requested...

LetoDMS 3.0.0 check configuration

Please create conf/conf.Settings.php file. You can use conf/conf.Settings.php.template to help you

What does this mean?

Thanks,
Eric

oh my mistake your using 2.02

use this http://forums.letodms.com/showthread.php?tid=229

sorry

thanks

LetoDMS



RE: unable to check htaccess file... - EricBJ - 02-25-2011

...trying again.

LetoDMS 2.0.2 check configuration

Check Apache configuration

Apache version: Apache/2.2.9 (Debian) PHP/5.2.6-1+lenny9 with Suhosin-Patch
mod_rewrite : Ok

Check PHP configuration

PHP version: 5.2.6-1+lenny9
gd2 : Ok
mbstring : Ok
database - mysql - : Ok
ldap (optional) : Error

Check LetoDMS configuration
settings->_rootDir : Ok
settings->_httpRoot : Ok
settings->_contentDir : Ok
settings->_ADOdbPath : Ok
database : Ok

Check other configuration
Cookies : OK

It looks like everything is happy?

Thanks,
Eric


RE: unable to check htaccess file... - Doudoux - 02-26-2011

Hy

The problem may be the apache configuration.

Try these options
<Directory /xxx/xx/xx>
Options All
AllowOverride All

Order allow,deny
Allow from all
</Directory>

Otherwise, can you attach the file httpd.conf.

Thanks

Doudoux


RE: unable to check htaccess file... - EricBJ - 02-26-2011

I am assuming that these changes would be with the Virtual Server configuration since it was the only place I could find anything similar.

This is what it used to say...

Options Indexes FollowSymLinks MultiViews
AllowOverride AuthConfig
Order allow,deny
allow from all

...and I changed it to what you suggested.

Options All
AllowOverride All
Order allow,deny
allow from all

It seems to have solved it since I'm not getting that error message anymore.

Can you tell me what part of the original configuration was causing the problem?

I'm new to all of this and every new piece of information has been very enlightening.

Thanks,
Eric


RE: unable to check htaccess file... - Doudoux - 02-26-2011

I'm not a specialist of apache

see doc: http://httpd.apache.org/docs/current/en/mod/core.html#allowoverride

doudoux