[users@httpd] Re:Re: [users@httpd] rewrite rule leads to infinite rewrite loop at apache

2015-07-15 Thread javalishixml
Eric, My below configuration is just going to jump the url from http://rm.jco.com.cn/myjco/orders/ to https://rm.jco.com.cn/myjco/orders/ But it leads to infinite rewrite loop inside apache RewriteCond %{SERVER_PORT} !^443$ RewriteCond %{HTTP_HOST} ^rm.jco.com.cn$ RewriteCond

Re: [users@httpd] XMLHTTPRequest update

2015-07-15 Thread Marat Khalili
Put your HTML file to the server, don't run it from file. And you are obviously not having a problem with Apache configuration here, more like it is related to your assignment. -- With Best Regards, Marat Khalili On July 15, 2015 9:38:42 PM GMT+03:00, Ted Hickox megeli...@gmail.com wrote:

Re: [users@httpd] XMLHTTPRequest update

2015-07-15 Thread Ted Hickox
Thank you for your advice. As I waited for your response, I looked up the Access-Control-Allow-Origin error. A website recommended making a CORS request. Since I've never created a CORS request, I had no idea what to do. Any suggestions? On Wed, Jul 15, 2015 at 11:59 PM, Marat Khalili

[users@httpd] XMLHTTPRequest update

2015-07-15 Thread Ted Hickox
Thank you for the information. I found one error. I'm looking into the other. My main error was that I didn't send it to the correct location. I should have sent it to: http://localhost:8080/exist/rest/db/apps/HTML_Student/SVG_Data.xq I have a new error. XMLHttpRequest cannot load

[users@httpd] [ANNOUNCEMENT] Apache HTTP Server 2.4.16 Released

2015-07-15 Thread Jim Jagielski
Apache HTTP Server 2.4.16 Released The Apache Software Foundation and the Apache HTTP Server Project are pleased to announce the release of version 2.4.16 of the Apache HTTP Server (Apache). This version of Apache is our latest GA release of the new generation 2.4.x branch of Apache

Re: [users@httpd] XMLHTTPRequest

2015-07-15 Thread Marat Khalili
Hi Ted, Your send() call is asynchronous, meaning you don't receive results immediately. Register onload event listener and wait; you can easily find proper usage patterns in the net. Also, it is not productive to ask questions without looking at server logs, JavaScript console and

[users@httpd] Upgrade from 2.0.63 to 2.2.3 Apache - Initial screen prompt is no longer working

2015-07-15 Thread John Donnelly
Hello, I recently updated an appliance that is based on a CentOS-5 platform and I can not get the Webservice login step to work. When I attempt to login to the appliance by pointing the browser to the ip address , the browser essentially downloads the login executable as a binary file to

[users@httpd] Odd behaviour with LDAP authentication

2015-07-15 Thread Mike Sandells
We have a server running Apache 2.4.9 64bit, on Win server 2008 R2. Mostly, this works fine, but there is a recurring problem with LDAP authentication to our active directory domain. LDAP authentication is done using an access control file with this sort of content: Authname LDAP Test

[users@httpd] XMLHTTPRequest

2015-07-15 Thread Ted Hickox
I'm trying to master AJAX. This is my javascript code: var Data_Display var My_Data function Setup() { My_Data = new XMLHttpRequest(); My_Data.open(GET, http://localhost:8080/exist/rest/db/apps/HTML_Student/SVG_Data.xq;); My_Data.send(); document.getElementById(Information).value =

[users@httpd] rewrite rule leads to infinite rewrite loop at apache

2015-07-15 Thread javalishixml
Hi Gurus, Just a silly question this is. But I really suffer it too much ... :( I'm using rewrite module to do rewrite url. I made below rule: RewriteCond %{SERVER_PORT} !^443$ RewriteCond %{HTTP_HOST} ^www.jco.com.cn$ RewriteCond %{REQUEST_URI} ^/myjco/mySecurity RewriteRule (.*)

Re: [users@httpd] rewrite rule leads to infinite rewrite loop at apache

2015-07-15 Thread Eric Covener
On Wed, Jul 15, 2015 at 12:32 PM, javalishixml javalishi...@163.com wrote: RewriteCond %{REQUEST_URI} ^/myjco/mySecurity You probably meant to negate this one, specifically to avoid the loop? -- Eric Covener cove...@gmail.com