| Author |
|
casa51 Groupie

Joined: 22 March 2004 Location: France
Online Status: Offline Posts: 49
|
| Posted: 20 August 2010 at 12:20pm | IP Logged
|
|
|
Hi
I just buy ape module because a migrate all my site to IIS 7 on windows 2008 64 bits
after I have linkfreeze they work fine
I put this rule on .htaccess
for simulate linkfreeze .
# Helicon Ape version 3.0.0.44
LinkFreezePageSizeLimit 4096
SetOutputFilter linkfreeze
SetEnv mod_linkfreeze
LinkFreezeRule ___ asp=htm [ AbsLinks,MoveExt ]
they work fine but in this site I have an admin section they crash with this rule
I trie to put
LinkFreezePageSizeLimit 4096
SetOutputFilter linkfreeze
SetEnv mod_linkfreeze
LinkFreezeRule ___ asp=htm [ AbsLinks,MoveExt ]
<Location /adminb> LinkFreezeEngine off </Location>
but nothing the adminb directory are linkfreezed
Have you an issue for me
excuse for my english am french
|
| Back to Top |
|
| |
Vyacheslav Admin Group

Joined: 02 July 2008 Location: Ukraine
Online Status: Offline Posts: 1535
|
| Posted: 20 August 2010 at 4:48pm | IP Logged
|
|
|
Hello,
Please try these rules:
Code:
LinkFreezePageSizeLimit 4096
SetOutputFilter linkfreeze
SetEnvIfNoCase REQUEST_URI !/adminb.* mod_linkfreeze
LinkFreezeRule ___ asp=htm [AbsLinks, MoveExt] |
|
|
Note, there is newer version available. You might upgrade for free.
Thanks.
__________________ Slavik Shynkarenko,
Helicon Tech.
|
| Back to Top |
|
| |
casa51 Groupie

Joined: 22 March 2004 Location: France
Online Status: Offline Posts: 49
|
| Posted: 21 August 2010 at 3:12am | IP Logged
|
|
|
I put This
# Helicon Ape version 3.0.0.46
LinkFreezePageSizeLimit 4096
SetOutputFilter linkfreeze
SetEnvIfNoCase REQUEST_URI !/adminbm.* mod_linkfreeze
LinkFreezeRule ___ asp=htm [AbsLinks, MoveExt]
but my /adminbm repertorie are rewrited all page with variable a rewrite in .htm and crash the aplication
this is my general httpd.conf
------------------------------------------------------
Include licenses.conf
Options -StopOnError
LoadModule linkfreeze_module modules/mod_linkfreeze.so
LoadModule rewrite_module modules/mod_rewrite.so
-------------------------------------------------------
and I just updated to 3.0.0.46
thanks for your help
|
| Back to Top |
|
| |
Vyacheslav Admin Group

Joined: 02 July 2008 Location: Ukraine
Online Status: Offline Posts: 1535
|
| Posted: 21 August 2010 at 4:55am | IP Logged
|
|
|
Hello,
Please make sure mod_setenvif is enabled in httpd.conf. You must have this line:
LoadModule setenvif_module modules/mod_setenvif.so
Please also try and remove “SetOutputFilter linkfreeze” statement.
Thanks.
__________________ Slavik Shynkarenko,
Helicon Tech.
|
| Back to Top |
|
| |
casa51 Groupie

Joined: 22 March 2004 Location: France
Online Status: Offline Posts: 49
|
| Posted: 21 August 2010 at 7:09am | IP Logged
|
|
|
with this the rewrite not work but now my /adminbm
administrator folder work
----------------------------------------------------
# Helicon Ape version 3.0.0.46
LinkFreezePageSizeLimit 4096
#SetOutputFilter linkfreeze
SetEnvIfNoCase REQUEST_URI !/adminbm.* mod_linkfreeze
LinkFreezeRule ___ asp=htm [AbsLinks, MoveExt]
this is my general httpd.conf
------------------------------------------------------
Include licenses.conf
Options -StopOnError
LoadModule linkfreeze_module modules/mod_linkfreeze.so
LoadModule rewrite_module modules/mod_rewrite.so
LoadModule setenvif_module modules/mod_setenvif.so
-------------------------------------------------------
|
| Back to Top |
|
| |
Vyacheslav Admin Group

Joined: 02 July 2008 Location: Ukraine
Online Status: Offline Posts: 1535
|
| Posted: 21 August 2010 at 7:48am | IP Logged
|
|
|
Hello,
Please try this:
Code:
LinkFreezePageSizeLimit 4096
SetEnvIfNoCase REQUEST_URI (?!/adminbm).* mod_linkfreeze
LinkFreezeRule ___ asp=htm [AbsLinks, MoveExt] |
|
|
__________________ Slavik Shynkarenko,
Helicon Tech.
|
| Back to Top |
|
| |
casa51 Groupie

Joined: 22 March 2004 Location: France
Online Status: Offline Posts: 49
|
| Posted: 21 August 2010 at 7:58am | IP Logged
|
|
|
Thnaks for your quick reply
the rewrite rule work well but already the /adminbm folder are rewrite !
|
| Back to Top |
|
| |
Vyacheslav Admin Group

Joined: 02 July 2008 Location: Ukraine
Online Status: Offline Posts: 1535
|
| Posted: 21 August 2010 at 8:09am | IP Logged
|
|
|
Hello,
This code should definitely work:
Code:
LinkFreezePageSizeLimit 4096
SetEnvIfNoCase REQUEST_URI ^(?!/adminbm).*$ mod_linkfreeze
LinkFreezeRule ___ asp=htm [AbsLinks, MoveExt] |
|
|
__________________ Slavik Shynkarenko,
Helicon Tech.
|
| Back to Top |
|
| |
casa51 Groupie

Joined: 22 March 2004 Location: France
Online Status: Offline Posts: 49
|
| Posted: 21 August 2010 at 10:48am | IP Logged
|
|
|
YAAAAA bingo they work fine !!!
thanks for your job ape are a very good stuff For IIS 7
|
| Back to Top |
|
| |