PHP directory list from remote server
How can i use opendir function to read the directory list of a remote server knowing its IP address? ...
How can i use opendir function to read the directory list of a remote server knowing its IP address? ...
I've got a simple design I'm trying to implement. A single C++ based server app creates a write-only named pipe. Multiple clients (C++ or C#) connect as read-only and listen for status messages. I have this working for local processes, but I am unable to connect a client on a different host to the server. The server is running on XP S...
In PHP, how can I determine if any remote file (accessed via HTTP) exists? ...
My entire team works from a different geographical location and I am the only programmer working remotely. I often find it quite difficult to have my code reviewed, as people take very long time to give their comments (usually they are genuinely busy with high priority work and I work mostly only on low priority projects/task ) .The com...
Hi i am using linux - ubuntu. is there any way as remote desktop connection "to mac system" please explain as if to a child. Thanks! ...
Hello, We have a Learning Management System (LMS) that runs on its own server (IIS/Server 2003). Students must login with Forms authentication to gain access to the content. We want to offer access to third party flash and audio that is embedded in HTML pages hosted on the third party server (IIS/Server 2003). Currently we use a fram...
The following script is invoking the excel batch file in the remote machine. The batch file will open the excel workbook. D:>psexec.exe \Host_name D:\Excel.bat For the above case excel is opened in the background (process) but the workbook is not opened Is there any way to open the excel book in the remote machine? ...
Subtrees in Git work nicely although some git commands remain to be supported for subtrees. Here's the question: How to make the subtree pull from a different remote branch like "stable" or "integrate"? FYI, we have a subtree "push" working as a script. In fact, it can even push the subtree to the specific branch of our choice o...
Does anyone know of any open source code (or ideally a downloadable module) that allows you to set REMOTE_USER? I believe this can only be done via an ISAPI filter and there are no options in HTTPHandler or HTTPModules etc. ...
Hi! I'm trying rewrite xCmd which can start a process on a remote machine. Basically it installs itself as a service on the target computer and then starts the requested process. Everything is working fine, but i noticed an error. xCmd is communicating through pipes, and it uses WriteFile(). My problem is, that if i run my API (or the o...
Hello everyone, I would really appreciate your help in this. I have been trying to get a Dll injected into a remote process and do a few changes inside it, the problem I'm encountering right now is i don't know how to get this going. So first, here is my piece of code that I have developed so far: dllmain.cpp #include <windows.h> #inc...
I have two servlets A & B. On B i intend to have a a method isAvailable() which A will call to check the status. If this method returns true then im going to pass it an object to B. On doing a bit of reading i'm seeing a couple of options non of which im that familar with. JNDI with remote EJB , RMI or simple HTTP (not sure how youd do...
I want to be able to turn my PC on and off using an IR-remote sensor that is connected via USB to the PC. The sensor is a custom PCB implemented with an AVR microprocessor and V-USB software USB-implementation. Now, turning off the PC is no problem with software, but is there any way to turn ON the PC using USB? (Please note, I'm not t...
Does a command line tool ship with Informix 11.5 similar to SQLCMD for SQL Server? If yes, how do I connect to a remote server and perform regular SELECT/INSERT/UPDATE queries using it? ...
Is there a better way to setup Eclipse CDT for local editing and remote building? I am working on a C++ project that uses GNU make in Linux. The code is under CVS on a Linux server. When I'm in the lab, I use Eclipse CDT on a Linux-x64 PC. The project is built on a Linux-x86 PC. All the computers in the lab (including the CVS server) h...
I was playing around with the iPhone SDK and I wanted to get mp3 info from a remote file: NSString *filepath = @"http://www.server.com/legal.mp3"; CFURLRef audioFileURL = CFURLCreateWithString(NULL, (CFStringRef) filepath, NULL); AudioFileID audioFile; if (noErr != AudioFileOpenURL(audioFileURL, fsRdPerm, 0, nil)) { NSLog(@"Error - : c...
As a newbie to Android development, I'm trying to do the basics and build a media player. It works fine in one activity, but I'm now moving the MediaPlayer stuff to a remote service so it can carry on after the activity is destroy. I've moved the necessary code to the service, left comments in the activity where I'll need to call service...
Hello, I'm trying to build a jconsole-like application which is able to remote-monitor a jvm.. so far i've get it working for "every" sun-jvm.. now my boss wants me to monitor a ibm j9 jvm.. which doesn't work.. i have this simple test code: import java.io.IOException; import java.lang.management.ManagementFactory; import javax.manage...
Hi, I am trying to create a SSIS package to load data from an excel file to a database table. The excel to import the data will not be defined at the time of creation of the package. It is available, in a desired format, only when the user specifies and locates the file on the local file system at runtime. Could anyone please let me kno...
I have a small script that copies files to a list of remote machines. In this script I use: Copy-Item "$AppLocation\$AppName" -destination "\\$MachineName\c$\" -force This can throw various types of errors. If this throws an error, I want to log the error to a file and then continue. My question is that I'd like to know what would be...