[users@httpd] Compiling libmain.a as libmain.so in HTTPDSRC2.2.7 on 64 bit Linux machine.

2013-07-21 Thread Mangesh Sawant
Compiling HTTPDSRC2.2.7 sources on 64 bit machine. There is no issue with compilation. When I try to link libmain.a with my xyz.so I get error saying xyz.so can not link to libmain.a, recompile libmain.a as libmain.so. Facing this problem only on 64 bit machines. On 32 bit machine there is no

[users@httpd] HTTPD shutting down (gracefully), without any seemingly reason

2013-07-21 Thread Ajay Garg
Hi all. I have been trying to run HTTPD with "mod_wsgi" since last some days on a Fedora-18 ARM, and have been having issues. Following is the latest one. When I start HTTPD, it dies immediately. Following are the setup-files/logs. == /etc/httpd/conf/httpd.conf ==

[users@httpd] fw: hey

2013-07-21 Thread RuiXian Bao
http://findheight.com/hczs/toshghzljndjkmwnw ruixian.bao 7/22/2013 3:39:19 AM - To unsubscribe, e-mail: users-unsubscr...@httpd.apache.org For additional commands, e-mail: users-h...@httpd.apach

[users@httpd] rewrite rule on apache2 .htaccess file (SOLVED)

2013-07-21 Thread Tamer Higazi
Solved! My rewrite rules now look like this: RewriteEngine on RewriteCond %{REQUEST_URI} !/static/ RewriteRule ^(.+)\.(css|img|fonts|js)$ /static/$1 [L] RewriteCond $1 !^(index\.php|images|robots\.txt|static) RewriteRule ^(.*)$ /index.php/$1 [L] On 07/21/13 20:34, Tamer Higazi wrote: > Hi Vin

Re: [users@httpd] rewrite rule on apache2 .htaccess file

2013-07-21 Thread Tamer Higazi
Hi Vincenzo! My rewrite rule now lookes like this: RewriteEngine on RewriteRule ^/(css|js|fonts)(/.*)?$ /static$2 [L] RewriteRule ^/(.*)$ /index.php/$1 [L] and now nothing works :( If you have any further ideas, I would thank you. Tamer On 07/21/13 10:46, Vincenzo D'Amore wrote: > Hi, > >

Re: [users@httpd] rewrite rule on apache2 .htaccess file

2013-07-21 Thread Vincenzo D'Amore
Hi, IMHO the first rewrite doesn't match because regex is wrong. The URL your rewrite should match is something like this: /css/path/filename.css so your regex should first match the first / character. Then, don’t confuse alternation with a character class. If you want express an alternation