No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
13 Posted Topics
How to fix the following polkit error: ***Error creating textual authentication agent: Error opening current controlling terminal for the process (`/dev/tty'): No such device or address (polkit-error-quark, 0)
How to fix the following error? NewBie **Error creating textual authentication agent: Error opening current controlling terminal for the process (`/dev/tty'): No such device or address (polkit-error-quark, 0) httpd,reload=yes,status=0**
I just installed WAMP server on my system. When I am accessing my webpage from my system by giving http://localhost and http://10.10.62.6 is accessible. But when someone has tried to attempt my page from their system by giving http://10.10.62.6 is not accessible. What changes will offer them to access my …
I am reading the STATUS field from table CONTENT while modal dialog is being active, then after 10 seconds i have to read the same table CONTENT. If status is changed, i have to stop the polling mechanism and inform the user that content was encrypted. If i done these …
how to perform 64 bit addition in c with code and explanation?
how to perform a 64-bit addition in c? but the following code fails? why? I have taken this code from stack overflow. But this doesnot works. Pls help me. I need to perform 64-bit addition in c. I am using 32-bit compiler. :chomp: :chomp: /* break up the 64bit number …
I need to upload of maximum 5 GB file size in php. I have given max_execution_time = 3600, LimitRequestBody = 0, max_input_time = -1, memory_limit = -1, post_max_size = 10000M, file_uploads = On, upload_max_filesize = 10000M. Many people said that have to use FTP. According to my project, it should …
How to print the enabled MACROS in my project? I am using C. RTOS eCos. Also i am using the makefile. In the makefile i wanted to print the all the defined MACROS.
char str[] = "now # is the time for all # good men to come to the # aid of their country"; char delims[] = "#"; char *result = NULL; result = strtok( str, delims ); while( result != NULL ) { printf( "result is \"%s\"\n", result ); result = …
#include<stdio.h> # define SQ(r) r * r main() { int x = 2; int i = SQ(++x); printf("%d\n" ,i); } In the above code, how the result will be 16. If i give r * r * r, the result will be 80. how can it be possible. can anyone …
<form name="content" id="content" action="../cgi-bin/upload.cgi?upload_id=" method="POST" enctype="multipart/form-data" onsubmit="setValueforHidden(this)" target="xupload"> when the user presses the submit button(after form valdiation was over ) i have called the below api. function StartUpload(f1) { var UID = Math.round ( 10000 * Math.random () ) + '0' + Math.round ( 10000 * Math.random() ); f1.action = …
Earlier i was displayed the image by referring current directory. My current directory is '/opt/lampp/htdocs/cms/'. My images was placed in the folder called 'Images' inside the cms folder. So, i have displayed the images by referring "./images/filename.png". Now i have moved the images outside of cms folder. Now i kept …
Whats the diff b/n binary semaphore and mutex?
The End.