Re: [us...@httpd] apxs: not found

2010-05-10 Thread Tapan Maheshwari
Hi Sakthi,
I have removed this line from apxs, i got following output
$ ./apxs -c -I/usr/include/libxml2 -I. -i mod_xml2enc.c./apxs: require: not 
found./apxs: use: not found./apxs: package: not found./apxs: syntax error at 
line 26: `(' unexpected$
Line 26 in apxs is following:my %config_vars = ();
Thanks.
--- On Fri, 5/7/10, Sakthi Esakiappan sakthi.esakiap...@mercuryminds.com 
wrote:

From: Sakthi Esakiappan sakthi.esakiap...@mercuryminds.com
Subject: Re: [us...@httpd] apxs: not found
To: users@httpd.apache.org
Date: Friday, May 7, 2010, 1:58 PM

Hi Tapan,
 I could notice there is space missing in the first line between # and !
#!/usr/local/bin/perl -w
it should be 
# !/usr/local/bin/perl -w

so only I want you delete the entire line, have a try with it and let me know 
the output.



On 7 May 2010 18:03, Tapan Maheshwari tapan...@yahoo.com wrote:

Hi Sakthi,Thanks very much for you time and information, i have followed 
following steps:1. executed this command in the shell

# PATH=$PATH:/usr/local/apache2/bin:/usr/local/bin/
# export $PATH

2.changed the permissions for apxs to 755
3. perl was already installed (checked with command  $ which perl) this gave me 
the location of perl installation, 
added perl install location to PATH variable,
The first line in the apxs shell script(#!/usr/local/bin/perl -w) is already 
commented out, it won't be executed anyways??

Still i get the same error ./apxs: not found 
stuck on the same step.any
 thoughts??
Thanks.Tapan
--- On Thu, 5/6/10, Sakthi Esakiappan sakthi.esakiap...@mercuryminds.com 
wrote:


From: Sakthi Esakiappan sakthi.esakiap...@mercuryminds.com

Subject: Re: [us...@httpd] apxs: not found
To: users@httpd.apache.org
Date: Thursday, May 6, 2010, 12:08 PM


Hello,



Check the following steps

1. I could see the path variable is not set. Add the following lines to 
the homedirectory/.bash_profile

PATH=$PATH:/usr/local/apache2/bin:/usr/local/bin/

now reboot the computer to take this effect, if the system can't 
rebooted then just execute this in the shell

# PATH=$PATH:/usr/local/apache2/bin:/usr/local/bin/

# export $PATH



2. Change the file permission, none of the shell script should be with 
777 permission(rwx,rwx,rwx)

chmod 755 apxs



3. Make sure perl is installed in /usr/local/bin/perl, since I could see
 the script uses perl for its execution.

# which perl
add this output to PATH variable. or try deleting the 
first line in the apxs shell script(#!/usr/local/bin/perl -w)

On 6 May 2010 15:59, Tapan Maheshwari tapan...@yahoo.com wrote:




--- On Wed, 5/5/10, Sakthi Esakiappan sakthi.esakiap...@mercuryminds.com 
wrote:



From: Sakthi Esakiappan sakthi.esakiap...@mercuryminds.com


Subject: Re: [us...@httpd] apxs: not found
To: users@httpd.apache.org
Date: Wednesday, May 5, 2010, 3:19 PM


Also post 


cat /usr/local/apache2/bin/apxs

On 5 May 2010 19:38, Hendrik Schmieder hendrik.schmie...@jedox.com wrote:



Tapan Maheshwari schrieb:


YES,

i am executing this command from this directory: /usr/local/apache2/bin

where apxs is present.



again, apxs is not a binary, this is a text file



Thanks,






What is the output of

ls -l /usr/local/apache2/bin/apxs ?



  Hendrik



-

The official User-To-User support forum of the Apache HTTP Server Project.

See URL:http://httpd.apache.org/userslist.html for more info.

To unsubscribe, e-mail: users-unsubscr...@httpd.apache.org

     from the digest: users-digest-unsubscr...@httpd.apache.org

For additional commands, e-mail: users-h...@httpd.apache.org






-- 
With Regards,
Sakthi Esakiappan.M
Server Administrator

MercuryMinds Technologies Pvt Ltd
www.mercuryminds.com An E-Commerce mentor



+91 44 45588587
sakthi.esakiap...@mercuryminds.com
www.mercuryminds.com



Disclaimer: This message is intended only for the use of the individual or 
entity to which it is addressed and may contain information that is privileged, 
confidential and exempt from disclosure under applicable law. If you have 
received this message in error, you are hereby notified that we do not consent 
to any reading, dissemination, distribution or copying of this message. If you 
have received this communication in error, please notify the sender immediately 
and destroy the transmitted information.







  


-

The official User-To-User support forum of the Apache HTTP Server Project.

See URL:http://httpd.apache.org/userslist.html for more info.

To unsubscribe, e-mail: users-unsubscr...@httpd.apache.org

      from the digest: users-digest-unsubscr...@httpd.apache.org

For additional commands, e-mail: users-h...@httpd.apache.org



-- 
With Regards,

Sakthi Esakiappan.M
Server Administrator


MercuryMinds Technologies Pvt Ltd
www.mercuryminds.com An E-Commerce mentor
+91 44 45588587
sakthi.esakiap...@mercuryminds.com


www.mercuryminds.com

Disclaimer: This message

Re: [us...@httpd] apxs: not found

2010-05-10 Thread Eric Covener
On Mon, May 10, 2010 at 5:13 AM, Tapan Maheshwari tapan...@yahoo.comwrote:

 Hi Sakthi,

 I have removed this line from apxs, i got following output

 $ ./apxs -c -I/usr/include/libxml2 -I. -i mod_xml2enc.c
 ./apxs: require: not found
 ./apxs: use: not found
 ./apxs: package: not found
 ./apxs: syntax error at line 26: `(' unexpected


Try prefixing that entire command with perl, since you removed the line
that tells your system how to interpret the file.

-- 
Eric Covener
cove...@gmail.com


Re: [us...@httpd] apxs: not found

2010-05-07 Thread Tapan Maheshwari
Hi Sakthi,Thanks very much for you time and information, i have followed 
following steps:1. executed this command in the shell
# PATH=$PATH:/usr/local/apache2/bin:/usr/local/bin/
# export $PATH

2.changed the permissions for apxs to 755
3. perl was already installed (checked with command  $ which perl) this gave me 
the location of perl installation, added perl install location to PATH variable,
The first line in the apxs shell script(#!/usr/local/bin/perl -w) is already 
commented out, it won't be executed anyways??
Still i get the same error ./apxs: not found 
stuck on the same step.any thoughts??
Thanks.Tapan
--- On Thu, 5/6/10, Sakthi Esakiappan sakthi.esakiap...@mercuryminds.com 
wrote:

From: Sakthi Esakiappan sakthi.esakiap...@mercuryminds.com
Subject: Re: [us...@httpd] apxs: not found
To: users@httpd.apache.org
Date: Thursday, May 6, 2010, 12:08 PM

Hello,



Check the following steps

1. I could see the path variable is not set. Add the following lines to 
the homedirectory/.bash_profile

PATH=$PATH:/usr/local/apache2/bin:/usr/local/bin/

now reboot the computer to take this effect, if the system can't 
rebooted then just execute this in the shell

# PATH=$PATH:/usr/local/apache2/bin:/usr/local/bin/

# export $PATH



2. Change the file permission, none of the shell script should be with 
777 permission(rwx,rwx,rwx)

chmod 755 apxs



3. Make sure perl is installed in /usr/local/bin/perl, since I could see
 the script uses perl for its execution.

# which perl
add this output to PATH variable. or try deleting the 
first line in the apxs shell script(#!/usr/local/bin/perl -w)

On 6 May 2010 15:59, Tapan Maheshwari tapan...@yahoo.com wrote:



--- On Wed, 5/5/10, Sakthi Esakiappan sakthi.esakiap...@mercuryminds.com 
wrote:


From: Sakthi Esakiappan sakthi.esakiap...@mercuryminds.com

Subject: Re: [us...@httpd] apxs: not found
To: users@httpd.apache.org
Date: Wednesday, May 5, 2010, 3:19 PM

Also post 


cat /usr/local/apache2/bin/apxs

On 5 May 2010 19:38, Hendrik Schmieder hendrik.schmie...@jedox.com wrote:


Tapan Maheshwari schrieb:


YES,

i am executing this command from this directory: /usr/local/apache2/bin

where apxs is present.



again, apxs is not a binary, this is a text file



Thanks,






What is the output of

ls -l /usr/local/apache2/bin/apxs ?



  Hendrik



-

The official User-To-User support forum of the Apache HTTP Server Project.

See URL:http://httpd.apache.org/userslist.html for more info.

To unsubscribe, e-mail: users-unsubscr...@httpd.apache.org

     from the digest: users-digest-unsubscr...@httpd.apache.org

For additional commands, e-mail: users-h...@httpd.apache.org






-- 
With Regards,
Sakthi Esakiappan.M
Server Administrator

MercuryMinds Technologies Pvt Ltd
www.mercuryminds.com An E-Commerce mentor


+91 44 45588587
sakthi.esakiap...@mercuryminds.com
www.mercuryminds.com


Disclaimer: This message is intended only for the use of the individual or 
entity to which it is addressed and may contain information that is privileged, 
confidential and exempt from disclosure under applicable law. If you have 
received this message in error, you are hereby notified that we do not consent 
to any reading, dissemination, distribution or copying of this message. If you 
have received this communication in error, please notify the sender immediately 
and destroy the transmitted information.






  


-

The official User-To-User support forum of the Apache HTTP Server Project.

See URL:http://httpd.apache.org/userslist.html for more info.

To unsubscribe, e-mail: users-unsubscr...@httpd.apache.org

      from the digest: users-digest-unsubscr...@httpd.apache.org

For additional commands, e-mail: users-h...@httpd.apache.org



-- 
With Regards,
Sakthi Esakiappan.M
Server Administrator


MercuryMinds Technologies Pvt Ltd
www.mercuryminds.com An E-Commerce mentor
+91 44 45588587
sakthi.esakiap...@mercuryminds.com

www.mercuryminds.com

Disclaimer: This message is intended only for the use of the individual or 
entity to which it is addressed and may contain information that is privileged, 
confidential and exempt from disclosure under applicable law. If you have 
received this message in error, you are hereby notified that we do not consent 
to any reading, dissemination, distribution or copying of this message. If you 
have received this communication in error, please notify the sender immediately 
and destroy the transmitted information.





  

Re: [us...@httpd] apxs: not found

2010-05-07 Thread Eric Covener
 # PATH=$PATH:/usr/local/apache2/bin:/usr/local/bin/
 # export $PATH


 Still i get the same error ./apxs: not found 


Why are you prefixing the command with ./ if you're also adding it
to your PATH?   Is it even in your working directory?

--
Eric Covener
cove...@gmail.com

-
The official User-To-User support forum of the Apache HTTP Server Project.
See URL:http://httpd.apache.org/userslist.html for more info.
To unsubscribe, e-mail: users-unsubscr...@httpd.apache.org
  from the digest: users-digest-unsubscr...@httpd.apache.org
For additional commands, e-mail: users-h...@httpd.apache.org



Re: [us...@httpd] apxs: not found

2010-05-07 Thread Sakthi Esakiappan
Hi Tapan,
 I could notice there is space missing in the first line between # and !
*#!/usr/local/bin/perl -w*
it should be
*# !/usr/local/bin/perl -w

*so only I want you delete the entire line, have a try with it and let me
know the output.


On 7 May 2010 18:03, Tapan Maheshwari tapan...@yahoo.com wrote:

 Hi Sakthi,
 Thanks very much for you time and information, i have followed following
 steps:
 1. executed this command in the shell

 # PATH=$PATH:/usr/local/apache2/bin:/usr/local/bin/
 # export $PATH

 2.changed the permissions for apxs to 755

 3. perl was already installed (checked with command  $ which perl) this
 gave me the location of perl installation,
 added perl install location to PATH variable,

 The first line in the *apxs* shell script(#!/usr/local/bin/perl -w) is
 already commented out, it won't be executed anyways??

 Still i get the same error *./apxs: not found *

 stuck on the same step.
 any thoughts??

 Thanks.
 Tapan

 --- On *Thu, 5/6/10, Sakthi Esakiappan sakthi.esakiap...@mercuryminds.com
 * wrote:


 From: Sakthi Esakiappan sakthi.esakiap...@mercuryminds.com
 Subject: Re: [us...@httpd] apxs: not found
 To: users@httpd.apache.org
 Date: Thursday, May 6, 2010, 12:08 PM


 Hello,

 Check the following steps
 1. I could see the path variable is not set. Add the following lines to the
 homedirectory/.bash_profile
 PATH=$PATH:/usr/local/apache2/bin:/usr/local/bin/
 now reboot the computer to take this effect, if the system can't rebooted
 then just execute this in the shell
 # PATH=$PATH:/usr/local/apache2/bin:/usr/local/bin/
 # export $PATH

 2. Change the file permission, none of the shell script should be with 777
 permission(rwx,rwx,rwx)
 chmod 755 apxs

 3. Make sure perl is installed in /usr/local/bin/perl, since I could see
 the script uses perl for its execution.
 # which perl
 add this output to PATH variable. or try deleting the first line in the *
 apxs* shell script(#!/usr/local/bin/perl -w)
 On 6 May 2010 15:59, Tapan Maheshwari 
 tapan...@yahoo.comhttp://mc/compose?to=tapan...@yahoo.com
  wrote:



 --- On *Wed, 5/5/10, Sakthi Esakiappan 
 sakthi.esakiap...@mercuryminds.comhttp://mc/compose?to=sakthi.esakiap...@mercuryminds.com
 * wrote:


 From: Sakthi Esakiappan 
 sakthi.esakiap...@mercuryminds.comhttp://mc/compose?to=sakthi.esakiap...@mercuryminds.com
 

 Subject: Re: [us...@httpd] apxs: not found
 To: users@httpd.apache.org http://mc/compose?to=us...@httpd.apache.org
 Date: Wednesday, May 5, 2010, 3:19 PM

 Also post

 cat /usr/local/apache2/bin/apxs

 On 5 May 2010 19:38, Hendrik Schmieder 
 hendrik.schmie...@jedox.comhttp://mc/compose?to=hendrik.schmie...@jedox.com
  wrote:

 Tapan Maheshwari schrieb:

  YES,
 i am executing this command from this directory: /usr/local/apache2/bin
 where apxs is present.

 again, apxs is not a binary, this is a text file

 Thanks,


 What is the output of
 ls -l /usr/local/apache2/bin/apxs ?

  Hendrik

 -
 The official User-To-User support forum of the Apache HTTP Server
 Project.
 See URL:http://httpd.apache.org/userslist.html for more info.
 To unsubscribe, e-mail: 
 users-unsubscr...@httpd.apache.orghttp://mc/compose?to=users-unsubscr...@httpd.apache.org
 from the digest: 
 users-digest-unsubscr...@httpd.apache.orghttp://mc/compose?to=users-digest-unsubscr...@httpd.apache.org
 For additional commands, e-mail: 
 users-h...@httpd.apache.orghttp://mc/compose?to=users-h...@httpd.apache.org




 --
 With Regards,
 Sakthi Esakiappan.M
 Server Administrator

 MercuryMinds Technologies Pvt Ltd
 www.mercuryminds.com An E-Commerce mentor
 +91 44 45588587
 sakthi.esakiap...@mercuryminds.comhttp://mc/compose?to=sakthi.esakiap...@mercuryminds.com
 www.mercuryminds.com

 Disclaimer: This message is intended only for the use of the individual or
 entity to which it is addressed and may contain information that is
 privileged, confidential and exempt from disclosure under applicable law. If
 you have received this message in error, you are hereby notified that we do
 not consent to any reading, dissemination, distribution or copying of this
 message. If you have received this communication in error, please notify the
 sender immediately and destroy the transmitted information.




 -
 The official User-To-User support forum of the Apache HTTP Server Project.
 See URL:http://httpd.apache.org/userslist.html for more info.
 To unsubscribe, e-mail: 
 users-unsubscr...@httpd.apache.orghttp://mc/compose?to=users-unsubscr...@httpd.apache.org
  from the digest: 
 users-digest-unsubscr...@httpd.apache.orghttp://mc/compose?to=users-digest-unsubscr...@httpd.apache.org
 For additional commands, e-mail: 
 users-h...@httpd.apache.orghttp://mc/compose?to=users-h...@httpd.apache.org




 --
 With Regards,
 Sakthi Esakiappan.M
 Server Administrator

 MercuryMinds Technologies Pvt Ltd
 www.mercuryminds.com An E

Re: [us...@httpd] apxs: not found

2010-05-06 Thread Tapan Maheshwari
it has the permission to read,write,execute.-rwxrwxrwx Thanks

--- On Wed, 5/5/10, Hendrik Schmieder hendrik.schmie...@jedox.com wrote:

From: Hendrik Schmieder hendrik.schmie...@jedox.com
Subject: Re: [us...@httpd] apxs: not found
To: users@httpd.apache.org
Date: Wednesday, May 5, 2010, 3:08 PM

Tapan Maheshwari schrieb:
 YES,
 i am executing this command from this directory: /usr/local/apache2/bin
 where apxs is present.

 again, apxs is not a binary, this is a text file

 Thanks,


What is the output of
ls -l /usr/local/apache2/bin/apxs ?

   Hendrik

-
The official User-To-User support forum of the Apache HTTP Server Project.
See URL:http://httpd.apache.org/userslist.html for more info.
To unsubscribe, e-mail: users-unsubscr...@httpd.apache.org
  from the digest: users-digest-unsubscr...@httpd.apache.org
For additional commands, e-mail: users-h...@httpd.apache.org




  

Re: [us...@httpd] apxs: not found

2010-05-06 Thread Tapan Maheshwari


--- On Wed, 5/5/10, Sakthi Esakiappan sakthi.esakiap...@mercuryminds.com 
wrote:

From: Sakthi Esakiappan sakthi.esakiap...@mercuryminds.com
Subject: Re: [us...@httpd] apxs: not found
To: users@httpd.apache.org
Date: Wednesday, May 5, 2010, 3:19 PM

Also post 

cat /usr/local/apache2/bin/apxs

On 5 May 2010 19:38, Hendrik Schmieder hendrik.schmie...@jedox.com wrote:

Tapan Maheshwari schrieb:


YES,

i am executing this command from this directory: /usr/local/apache2/bin

where apxs is present.



again, apxs is not a binary, this is a text file



Thanks,






What is the output of

ls -l /usr/local/apache2/bin/apxs ?



  Hendrik



-

The official User-To-User support forum of the Apache HTTP Server Project.

See URL:http://httpd.apache.org/userslist.html for more info.

To unsubscribe, e-mail: users-unsubscr...@httpd.apache.org

     from the digest: users-digest-unsubscr...@httpd.apache.org

For additional commands, e-mail: users-h...@httpd.apache.org






-- 
With Regards,
Sakthi Esakiappan.M
Server Administrator

MercuryMinds Technologies Pvt Ltd
www.mercuryminds.com An E-Commerce mentor

+91 44 45588587
sakthi.esakiap...@mercuryminds.com
www.mercuryminds.com

Disclaimer: This message is intended only for the use of the individual or 
entity to which it is addressed and may contain information that is privileged, 
confidential and exempt from disclosure under applicable law. If you have 
received this message in error, you are hereby notified that we do not consent 
to any reading, dissemination, distribution or copying of this message. If you 
have received this communication in error, please notify the sender immediately 
and destroy the transmitted information.





  

apxs
Description: Binary data

-
The official User-To-User support forum of the Apache HTTP Server Project.
See URL:http://httpd.apache.org/userslist.html for more info.
To unsubscribe, e-mail: users-unsubscr...@httpd.apache.org
  from the digest: users-digest-unsubscr...@httpd.apache.org
For additional commands, e-mail: users-h...@httpd.apache.org

[us...@httpd] apxs: not found

2010-05-05 Thread Tapan Maheshwari
Hi,
i tried to compile mod_proxy_html.c using apxs with following command
# ./apxs -c -I /usr/include/libxml2 -I. -i mod_proxy_html.cit gives following 
error ./apxs: not foundi have verified that apxs is available under folder 
/usr/local/apache2/bin
Thanks


  

Re: [us...@httpd] apxs: not found

2010-05-05 Thread Sakthi Esakiappan
Hello,

Have a try with
/usr/local/apache2/bin/apxs -c -I /usr/include/libxml2 -I. -i
mod_poxy_html.c

and make sure that /usr/local/apache2/bin/apxs has executable permission if
not give it by

chmod +x /usr/local/apache2/bin/apxs

On 5 May 2010 15:15, Tapan Maheshwari tapan...@yahoo.com wrote:

 Hi,

 i tried to compile mod_proxy_html.c using apxs with following command

 # ./apxs -c -I /usr/include/libxml2 -I. -i mod_proxy_html.c

 it gives following error* ./apxs: not found*

 i have verified that apxs is available under folder /usr/local/apache2/bin


 Thanks





-- 
With Regards,
Sakthi Esakiappan.M
Server Administrator

MercuryMinds Technologies Pvt Ltd
www.mercuryminds.com An E-Commerce mentor
+91 44 45588587
sakthi.esakiap...@mercuryminds.com
www.mercuryminds.com

Disclaimer: This message is intended only for the use of the individual or
entity to which it is addressed and may contain information that is
privileged, confidential and exempt from disclosure under applicable law. If
you have received this message in error, you are hereby notified that we do
not consent to any reading, dissemination, distribution or copying of this
message. If you have received this communication in error, please notify the
sender immediately and destroy the transmitted information.


Re: [us...@httpd] apxs: not found

2010-05-05 Thread Mauri
please write:

uname -a
echo $PATH
which apxs

Cheers,
Mauri



2010/5/5 Sakthi Esakiappan sakthi.esakiap...@mercuryminds.com

 Hello,

 Have a try with
 /usr/local/apache2/bin/apxs -c -I /usr/include/libxml2 -I. -i
 mod_poxy_html.c

 and make sure that /usr/local/apache2/bin/apxs has executable permission if
 not give it by

 chmod +x /usr/local/apache2/bin/apxs

 On 5 May 2010 15:15, Tapan Maheshwari tapan...@yahoo.com wrote:

 Hi,

 i tried to compile mod_proxy_html.c using apxs with following command

 # ./apxs -c -I /usr/include/libxml2 -I. -i mod_proxy_html.c

 it gives following error* ./apxs: not found*

 i have verified that apxs is available under folder
 /usr/local/apache2/bin


 Thanks





 --
 With Regards,
 Sakthi Esakiappan.M
 Server Administrator

 MercuryMinds Technologies Pvt Ltd
 www.mercuryminds.com An E-Commerce mentor
 +91 44 45588587
 sakthi.esakiap...@mercuryminds.com
 www.mercuryminds.com

 Disclaimer: This message is intended only for the use of the individual or
 entity to which it is addressed and may contain information that is
 privileged, confidential and exempt from disclosure under applicable law. If
 you have received this message in error, you are hereby notified that we do
 not consent to any reading, dissemination, distribution or copying of this
 message. If you have received this communication in error, please notify the
 sender immediately and destroy the transmitted information.



Re: [us...@httpd] apxs: not found

2010-05-05 Thread Tapan Maheshwari
Hi,Thanks for writingStill getting same error :/usr/local/apache2/bin/apxs: not 
found
Thanks
--- On Wed, 5/5/10, Sakthi Esakiappan sakthi.esakiap...@mercuryminds.com 
wrote:

From: Sakthi Esakiappan sakthi.esakiap...@mercuryminds.com
Subject: Re: [us...@httpd] apxs: not found
To: users@httpd.apache.org
Date: Wednesday, May 5, 2010, 11:08 AM

Hello,

Have a try with
/usr/local/apache2/bin/apxs -c -I /usr/include/libxml2 -I. -i mod_poxy_html.c


and make sure that /usr/local/apache2/bin/apxs has executable permission if not 
give it by

chmod +x /usr/local/apache2/bin/apxs

On 5 May 2010 15:15, Tapan Maheshwari tapan...@yahoo.com wrote:


Hi,
i tried to compile mod_proxy_html.c using apxs with following command

# ./apxs -c -I /usr/include/libxml2 -I. -i mod_proxy_html.cit gives following 
error ./apxs: not foundi have verified that apxs is available under folder 
/usr/local/apache2/bin

Thanks



  


-- 
With Regards,
Sakthi Esakiappan.M
Server Administrator

MercuryMinds Technologies Pvt Ltd
www.mercuryminds.com An E-Commerce mentor

+91 44 45588587
sakthi.esakiap...@mercuryminds.com
www.mercuryminds.com

Disclaimer: This message is intended only for the use of the individual or 
entity to which it is addressed and may contain information that is privileged, 
confidential and exempt from disclosure under applicable law. If you have 
received this message in error, you are hereby notified that we do not consent 
to any reading, dissemination, distribution or copying of this message. If you 
have received this communication in error, please notify the sender immediately 
and destroy the transmitted information.





  

Re: [us...@httpd] apxs: not found

2010-05-05 Thread Tapan Maheshwari
Hi,Thanks for writing
1) SunOS 5.9 Generic_118558-11 sun4u sparc SUNW,Sun-Fire-V4402) 
/usr/bin:/bin:/usr/sbin:/sbin3) no apxs in /usr/bin /bin /usr/sbin /sbin
Thanks.
--- On Wed, 5/5/10, Mauri lai...@gmail.com wrote:

From: Mauri lai...@gmail.com
Subject: Re: [us...@httpd] apxs: not found
To: users@httpd.apache.org
Date: Wednesday, May 5, 2010, 11:17 AM

please write:

uname -a
echo $PATH
which apxs

Cheers,
Mauri



2010/5/5 Sakthi Esakiappan sakthi.esakiap...@mercuryminds.com

Hello,

Have a try with
/usr/local/apache2/bin/apxs -c -I /usr/include/libxml2 -I. -i mod_poxy_html.c



and make sure that /usr/local/apache2/bin/apxs has executable permission if not 
give it by

chmod +x /usr/local/apache2/bin/apxs


On 5 May 2010 15:15, Tapan Maheshwari tapan...@yahoo.com wrote:



Hi,
i tried to compile mod_proxy_html.c using apxs with following command


# ./apxs -c -I /usr/include/libxml2 -I. -i mod_proxy_html.cit gives following 
error ./apxs: not foundi have verified that apxs is available under folder 
/usr/local/apache2/bin


Thanks




  


-- 
With Regards,
Sakthi Esakiappan.M
Server Administrator

MercuryMinds Technologies Pvt Ltd
www.mercuryminds.com An E-Commerce mentor


+91 44 45588587
sakthi.esakiap...@mercuryminds.com
www.mercuryminds.com

Disclaimer: This message is intended only for the use of the individual or 
entity to which it is addressed and may contain information that is privileged, 
confidential and exempt from disclosure under applicable law. If you have 
received this message in error, you are hereby notified that we do not consent 
to any reading, dissemination, distribution or copying of this message. If you 
have received this communication in error, please notify the sender immediately 
and destroy the transmitted information.








  

Re: [us...@httpd] apxs: not found

2010-05-05 Thread Nick Tkach
Okay, this is probably a stupid question, but what directory are you in when 
you run the apxs? I noticed you use ./apxs... That's only going to work if 
you're in the same directory as the apxs binary(/usr/local/apache2/bin 
apparently, from what you've said). 

This email message and any attachments are for the sole use of the intended 
recipient(s) and may contain information that is proprietary to Ahold and/or 
its subsidiaries (“Ahold”) or otherwise confidential or legally privileged. If 
you have received this message in error, please notify the sender by reply, and 
delete all copies of this message and any attachments. If you are the intended 
recipient you may use the information contained in this message and any files 
attached to this message only as authorized by Ahold. Files attached to this 
message may only be transmitted using secure systems and appropriate means of 
encryption, and must be secured using the same level of password and security 
protection with which the file was provided to you. Any unauthorized use, 
dissemination or disclosure of this message or its attachments is strictly 
prohibited. 


From: Tapan Maheshwari tapan...@yahoo.com 
To: users@httpd.apache.org 
Sent: Wednesday, May 5, 2010 8:42:51 AM 
Subject: Re: [us...@httpd] apxs: not found 

Hi, 
Thanks for writing 



1) SunOS 5.9 Generic_118558-11 sun4u sparc SUNW,Sun-Fire-V440 

2) /usr/bin:/bin:/usr/sbin:/sbin 

3) no apxs in /usr/bin /bin /usr/sbin /sbin 

Thanks. 
--- On Wed, 5/5/10, Mauri lai...@gmail.com wrote: 



From: Mauri lai...@gmail.com 
Subject: Re: [us...@httpd] apxs: not found 
To: users@httpd.apache.org 
Date: Wednesday, May 5, 2010, 11:17 AM 


please write: 

uname -a 
echo $PATH 
which apxs 

Cheers, 
Mauri 




2010/5/5 Sakthi Esakiappan  sakthi.esakiap...@mercuryminds.com  


Hello, 

Have a try with 
/usr/local/apache2/bin/apxs -c -I /usr/include/libxml2 -I. -i mod_poxy_html.c 

and make sure that /usr/local/apache2/bin/apxs has executable permission if not 
give it by 

chmod +x /usr/local/apache2/bin/apxs 





On 5 May 2010 15:15, Tapan Maheshwari  tapan...@yahoo.com  wrote: 


Hi, 


i tried to compile mod_proxy_html.c using apxs with following command 


# ./apxs -c -I /usr/include/libxml2 -I. -i mod_proxy_html.c 
it gives following error ./apxs: not found i have verified that apxs is 
available under folder /usr/local/apache2/bin 

Thanks 



-- 
With Regards, 
Sakthi Esakiappan.M 
Server Administrator 

MercuryMinds Technologies Pvt Ltd 
www.mercuryminds.com An E-Commerce mentor 
+91 44 45588587 
sakthi.esakiap...@mercuryminds.com 
www.mercuryminds.com 

Disclaimer: This message is intended only for the use of the individual or 
entity to which it is addressed and may contain information that is privileged, 
confidential and exempt from disclosure under applicable law. If you have 
received this message in error, you are hereby notified that we do not consent 
to any reading, dissemination, distribution or copying of this message. If you 
have received this communication in error, please notify the sender immediately 
and destroy the transmitted information. 




Re: [us...@httpd] apxs: not found

2010-05-05 Thread Tapan Maheshwari
YES,i am executing this command from this 
directory: /usr/local/apache2/bin where apxs is present.
again, apxs is not a binary, this is a text file
Thanks,

--- On Wed, 5/5/10, Nick Tkach ntk...@peapod.com wrote:

From: Nick Tkach ntk...@peapod.com
Subject: Re: [us...@httpd] apxs: not found
To: users@httpd.apache.org
Date: Wednesday, May 5, 2010, 2:45 PM

#yiv320749157 p {margin:0;}Okay, this is probably a stupid question, but what 
directory are you in when you run the apxs?  I noticed you use ./apxs...  
That's only going to work if you're in the same directory as the apxs 
binary(/usr/local/apache2/bin apparently, from what you've said).

This email message and any attachments are for the sole use of the intended 
recipient(s) and may contain information that is proprietary to Ahold and/or 
its subsidiaries (“Ahold”) or otherwise confidential or legally privileged.  If 
you have received this message in error, please notify the sender by reply, and 
delete all copies of this message and any attachments.  If you are the intended 
recipient you may use the information contained in this message and any files 
attached to this message only as authorized by Ahold.  Files attached to this 
message may only be transmitted using secure systems and appropriate means of 
encryption, and must be secured using the same level of password and security 
protection with which the file was provided to you.  Any unauthorized use, 
dissemination or disclosure of this message or its attachments is strictly 
prohibited.

From: Tapan Maheshwari tapan...@yahoo.com
To: users@httpd.apache.org
Sent: Wednesday, May 5, 2010 8:42:51 AM
Subject: Re: [us...@httpd] apxs: not found

Hi,Thanks for writing
1) SunOS 5.9 Generic_118558-11 sun4u sparc SUNW,Sun-Fire-V4402) 
/usr/bin:/bin:/usr/sbin:/sbin3) no apxs in /usr/bin /bin /usr/sbin /sbin
Thanks.
--- On Wed, 5/5/10, Mauri lai...@gmail.com wrote:

From: Mauri lai...@gmail.com
Subject: Re: [us...@httpd] apxs: not found
To: users@httpd.apache.org
Date: Wednesday, May 5, 2010, 11:17 AM

please write:

uname -a
echo $PATH
which apxs

Cheers,
Mauri



2010/5/5 Sakthi Esakiappan sakthi.esakiap...@mercuryminds.com

Hello,

Have a try with
/usr/local/apache2/bin/apxs -c -I /usr/include/libxml2 -I. -i mod_poxy_html.c



and make sure that /usr/local/apache2/bin/apxs has executable permission if not 
give it by

chmod +x /usr/local/apache2/bin/apxs


On 5 May 2010 15:15, Tapan Maheshwari tapan...@yahoo.com wrote:



Hi,
i tried to compile mod_proxy_html.c using apxs with following command


# ./apxs -c -I /usr/include/libxml2 -I. -i mod_proxy_html.cit gives following 
error ./apxs: not foundi have verified that apxs is available under folder 
/usr/local/apache2/bin


Thanks




  


-- 
With Regards,
Sakthi Esakiappan.M
Server Administrator

MercuryMinds Technologies Pvt Ltd
www.mercuryminds.com An E-Commerce mentor


+91 44 45588587
sakthi.esakiap...@mercuryminds.com
www.mercuryminds.com

Disclaimer: This message is intended only for the use of the individual or 
entity to which it is addressed and may contain information that is privileged, 
confidential and exempt from disclosure under applicable law. If you have 
received this message in error, you are hereby notified that we do not consent 
to any reading, dissemination, distribution or copying of this message. If you 
have received this communication in error, please notify the sender immediately 
and destroy the transmitted information.











  

Re: [us...@httpd] apxs: not found

2010-05-05 Thread Hendrik Schmieder

Tapan Maheshwari schrieb:

YES,
i am executing this command from this directory: /usr/local/apache2/bin
where apxs is present.

again, apxs is not a binary, this is a text file

Thanks,



What is the output of
ls -l /usr/local/apache2/bin/apxs ?

  Hendrik

-
The official User-To-User support forum of the Apache HTTP Server Project.
See URL:http://httpd.apache.org/userslist.html for more info.
To unsubscribe, e-mail: users-unsubscr...@httpd.apache.org
 from the digest: users-digest-unsubscr...@httpd.apache.org
For additional commands, e-mail: users-h...@httpd.apache.org



Re: [us...@httpd] apxs: not found

2010-05-05 Thread Sakthi Esakiappan
Also post

cat /usr/local/apache2/bin/apxs

On 5 May 2010 19:38, Hendrik Schmieder hendrik.schmie...@jedox.com wrote:

 Tapan Maheshwari schrieb:

  YES,
 i am executing this command from this directory: /usr/local/apache2/bin
 where apxs is present.

 again, apxs is not a binary, this is a text file

 Thanks,


 What is the output of
 ls -l /usr/local/apache2/bin/apxs ?

  Hendrik

 -
 The official User-To-User support forum of the Apache HTTP Server Project.
 See URL:http://httpd.apache.org/userslist.html for more info.
 To unsubscribe, e-mail: users-unsubscr...@httpd.apache.org
 from the digest: users-digest-unsubscr...@httpd.apache.org
 For additional commands, e-mail: users-h...@httpd.apache.org




-- 
With Regards,
Sakthi Esakiappan.M
Server Administrator

MercuryMinds Technologies Pvt Ltd
www.mercuryminds.com An E-Commerce mentor
+91 44 45588587
sakthi.esakiap...@mercuryminds.com
www.mercuryminds.com

Disclaimer: This message is intended only for the use of the individual or
entity to which it is addressed and may contain information that is
privileged, confidential and exempt from disclosure under applicable law. If
you have received this message in error, you are hereby notified that we do
not consent to any reading, dissemination, distribution or copying of this
message. If you have received this communication in error, please notify the
sender immediately and destroy the transmitted information.