Displaying 20 results from an estimated 4000 matches similar to: "asterisk appache issue"
1997 Sep 03
1
Security Hole. Appache.
Sorry! Unknown (for me) behaviour of Apache was discovered. Suddenly.
Configuration detail:
Linux: 2.0.30
Apache: 1.x.x
srm.conf:
...
Action text/html /cgi-bin/exefile
...
/www-root/sec-dir/.htaccess:
AuthType Basic
AuthName authname
AuthUserFile /itc/passwd
<LIMIT GET POST>
require valid-user
2013 Jun 10
1
Appache index error on CentOS-6,4
I am getting this error when trying to access a virtual website index
by ip address and port on a host that has SELinux disabled (another
issue over which I have less control than I wish):
curl http://192.168.6.9:41780 | more
Gives this error in /var/log/httpd/error_log
[Mon Jun 10 09:04:44 2013] [error] [client 192.168.6.9] Directory
index forbidden by Options directive: /tftpboot/
and
2010 Jun 19
2
Using SetVar with System() is it possible?
Hi Guys,
Is it possible to harvest the output of system into a SetVar(variable)?
exten => s,n,SetVar(var=system(*asterisk -rx "sip show channels" | grep -c
"(ulaw)")*
*
*
*??? any problem with the syntax? *
*
*
*
*
*Thanks,*
*
*
-------------- next part --------------
An HTML attachment was scrubbed...
URL:
2017 Mar 26
2
Draft Proposal
Hi,
I have submitted a draft proposal on the GSoC website but I also
wanted to share my draft proposal through Dropbox to get your feedback
quickly through it. Please review it and let me know your feedbacks as soon
as possible. I haven't written much about automated testing as I haven't
written any test yet ( I will learn writing automated tests before April
end ). Link to my
2004 Nov 08
5
Same Extensions in Multiple contexts
Hi
For a customer, I am trying to setup 3 different companies on one asterisk
box, and I need to assign extension 200 in three different companies. I was
using different contexts, but was unable to get it to work. So, my basic
question is -
In Asterisk, Can we have same extension number in different contexts?
For example:
[Context_company_1]
exten => 200,1,,,
2013 Sep 25
2
[LLVMdev] initialization list with conversion operator dont work properly and report error
Actually it should have not thrown error at all. it works fine with gcc.
And the part of code which you mentioned is not getting hit at all. Maybe
some difference in parsing is there.
On Wed, Sep 25, 2013 at 5:29 AM, Eli Friedman <eli.friedman at gmail.com>wrote:
> On Mon, Sep 23, 2013 at 11:43 PM, Mayur Pandey <mayurthebond at gmail.com>wrote:
>
>> for the following
2006 Jul 06
3
[Fwd: How to listen port under 1024 with non-root user]
I make a simple mail program which need listen port 25 and 110.but i
found it's imposible , after searching with google i found non-root user
can't listen port under 1024.at first i try a script(witch lauch my
program) and use setuid but that still did't work.any way can handle
this.
Thanks for any help.
-------------- next part --------------
An embedded message was scrubbed...
From:
2015 Jun 15
2
Any alternative to Single User Mode
On Sun, Jun 14, 2015 at 10:51 PM, jd1008 <jd1008 at gmail.com> wrote:
>
>
> On 06/14/2015 08:02 PM, Animesh Pandey wrote:
>
>> On Sun, Jun 14, 2015 at 9:47 PM, jd1008 <jd1008 at gmail.com> wrote:
>>
>>
>>> On 06/14/2015 07:36 PM, Animesh Pandey wrote:
>>>
>>> On Sun, Jun 14, 2015 at 9:06 PM, jd1008 <jd1008 at gmail.com>
2014 Nov 24
3
[LLVMdev] bx instruction getting generated in arm assembly for O1
Hi Mayur,
> On 24 Nov 2014, at 07:00, MAYUR PANDEY <mayur.p at samsung.com> wrote:
> In the assembly generated with O0, we are getting the "blx" instruction whereas with O1 we get "bx" (in 3.4.2 we used to get "blx" for both O0 and O1).
>
> Is this because of this patch: [llvm] r214959 - ARM: do not generate BLX instructions on Cortex-M CPUs
2015 Jun 15
2
Any alternative to Single User Mode
On Sun, Jun 14, 2015 at 9:47 PM, jd1008 <jd1008 at gmail.com> wrote:
>
>
> On 06/14/2015 07:36 PM, Animesh Pandey wrote:
>
>> On Sun, Jun 14, 2015 at 9:06 PM, jd1008 <jd1008 at gmail.com> wrote:
>>
>>
>>> On 06/14/2015 06:47 PM, Animesh Pandey wrote:
>>>
>>> I actually opened the Virtual Disk Image (.vdi) on
>>>>
2015 Jun 15
3
Any alternative to Single User Mode
I actually opened the Virtual Disk Image (.vdi) on http://www.vmxray.com/.
I could see that despite my disk being of 100GB only ~65GB was being shown.
All the stuff related ot the local user was not visible at all.
After I restarted my VM, the OS gets stuck here (
http://i.stack.imgur.com/KVYxV.png). Even after trying the single user
login it was stuck there. But the emergency mode worked alright.
2015 Jun 15
3
Any alternative to Single User Mode
On Sun, Jun 14, 2015 at 9:06 PM, jd1008 <jd1008 at gmail.com> wrote:
>
>
> On 06/14/2015 06:47 PM, Animesh Pandey wrote:
>
>> I actually opened the Virtual Disk Image (.vdi) on http://www.vmxray.com/
>> .
>> I could see that despite my disk being of 100GB only ~65GB was being
>> shown.
>> All the stuff related ot the local user was not visible at
2012 Nov 29
2
[LLVMdev] operator overloading fails while debugging with gdb for i386
For the given test:
class A1 {
int x;
int y;
public:
A1(int a, int b)
{
x=a;
y=b;
}
A1 operator+(const A1&);
};
A1 A1::operator+(const A1& second)
{
A1 sum(0,0);
sum.x = x + second.x;
sum.y = y + second.y;
return (sum);
}
int main (void)
{
A1 one(2,3);
A1 two(4,5);
return 0;
}
when the exectable of this code is debugged in gdb for i386, we dont get the
2015 Jun 15
1
Any alternative to Single User Mode
On Mon, Jun 15, 2015 at 12:33 AM, jd1008 <jd1008 at gmail.com> wrote:
>
>
> On 06/14/2015 10:27 PM, Animesh Pandey wrote:
>
>> On Sun, Jun 14, 2015 at 10:51 PM, jd1008 <jd1008 at gmail.com> wrote:
>>
>>
>>> On 06/14/2015 08:02 PM, Animesh Pandey wrote:
>>>
>>> On Sun, Jun 14, 2015 at 9:47 PM, jd1008 <jd1008 at gmail.com>
2015 Jun 15
2
Any alternative to Single User Mode
Hi,
I am working on Centos6.6 on a VirtualBox on Windows Host. Today I started
to have booting issues in the OS. It won't get past the loading screen. I
checked and found that the files related to the user "cloudera" on the
system were not accessible. Only the files related to root were accessible.
This is why I was am not able to do a single user login but an emergency
login was
2013 Sep 25
0
[LLVMdev] initialization list with conversion operator dont work properly and report error
I'm not really an overload resolution expert, so I could be wrong. Anyway,
please file a bug report (http://llvm.org/bugs/), and our overload
resolution experts will take a look. :)
-Eli
On Wed, Sep 25, 2013 at 6:34 AM, Mayur Pandey <mayurthebond at gmail.com>wrote:
> Actually it should have not thrown error at all. it works fine with gcc.
> And the part of code which you
2012 Dec 01
2
[LLVMdev] operator overloading fails while debugging with gdb for i386
Hi,
Structures are passed by pointer, so the return value is not actually in eax. That code gets transformed into something like:
void sum(A1 *out, const A1 one, const A1 two) {
out->x = one.x + two.x
out->y = one.y + two.y
}
So actually the function ends up returning void and operating on a hidden parameter, so %eax is dead at the end of the function and should not be being relied
2020 May 21
2
on division of __int128 bit integer
Hi Team,
I observer that division of __int128 bit is very heavy operation.
It internally call a routine '__udivti3', which internally call '
__udivmodti4'.
Due to it the overall performance is much much slower (almost 15 time
slower than if I do it via a combination of 64-bit or microsoft '_udiv128').
Also what to know if I can directly call below routine directly from
2006 Oct 04
2
Possible bug?
This morning I downloaded R-2.4.0 and install in under Windows. I customized
the installation and choose "Message translations",but I could not launch
Rgui.exe successfully( Rterm.exe worked fine). If I did't choose "Message
translations", Rgui.exe worked fine.
"Message translations" is Simplified Chinese.
> version
_
platform
2012 Dec 01
0
[LLVMdev] operator overloading fails while debugging with gdb for i386
Problem seems not only with operator overloading, It occurs with struct
value returning also.
gdb while debugging expects the return value in eax, gcc does returns in
eax, But Clang returns in edx(it can be checked in gdb by printing the
contents of edx).
Code(sample code)
struct A1 {
int x;
int y;
};
A1 sum(const A1 one, const A1 two)
{
A1 plus = {0,0};
plus.x = one.x + two.x;
plus.y