server

Is it acceptable for a server-based application installer to create a new group?

We're building an application designed to run on Windows-based servers. One of the considerations we're looking into at the moment is how to control access to the application's GUI, which allows configuration and controls the "back end" services. In order to secure the application properly, there are several objects which will need ACLs...

PHP broken code on local machine but working on staging server

Hiya all, I'm having a strange issue here, i have this bit of code: <?php if ($node->nid == "1") { include 'front.tpl.php'; return; } else { ?> <div id="left-col" class="grid_9"> <h1><?php print $title ?></h1> <hr /> <?php global $user;if ( $is_admin ) { ?>[<a href="/node/<?php print $node->nid ?>/edit">Edi...

How to run a .NET Class Library on a Go Daddy server?

Thanks to the awesome people that answered my previous post, I was able to make a .NET Class Library and run the library from a button on my webpage. The program is designed to run on the server constantly. It checks the database to see if there are any pending actions, then sleeps for 10 minutes. When I click the button on my webpage t...

Server side include (ssi) if condition not working

the if contition is to test for the day of the week: <!--#if expr="$DATE_LOCAL = /Thursday/" --> Thursday <!--#endif --> this works if the .shtml is in a static location but, not inside a war. Yes the web.xml file has been configured correctly. as this <!--#echo var="DATE_LOCAL" --> works fine, for the .shtml page inside the war. i...

error in media wiki php code

$wgAuth = new HttpAuthPlugin(); - After this line, control is not reachin the next line, not printin the next log. error_log("JITEN TEST :WGAUTH object created, Value of wgAuth is :" . $wgAuth . "\n", 3, $logfile); $wgHooks['UserLoadFromSession'][] = array($wgAuth,'autoAuthenticate'); error_log("JITEN TEST :Value of wgAuth is :" . $w...

.bat file can not execute on windows server 2003

Hello, I want to execute the batch file on server but the problem is that it can not execute. Even it is not giving any error. What should I do? this is my code try { ProcessStartInfo info = new ProcessStartInfo(AppPath + @"bin\execute.bat"); info.UseShellExecute = false; info.RedirectStandardInput = true; i...

Host blog on different server?

Currently I have my companies blog on the same server as our main web app - as in website.com/blog What would be the easiest way to move the blog to a different server yet still let users either access the blog at website.com/blog or blog.website.com? ...

HOWTO add aggregate .NET COM Interop to an ATL EXE Server??

Hello, I would like to know how one can add a .NET C# COM object (created using the COM Interop facility of .NET) to a Visual Studio 2008 ATL EXE Server. Basically, I am trying to create an out of process Automation server to hold my C# COM object to allow it to act as a Singleton server for many clients. I think all I need to do is add...

Liteweight CGI Server to use on local machine to serve KML to Google Earth via Python or similar?

Greetings, I want to write a script that handles simple http requests from Google Earth and sends back KML to display map tiles that are stored locally. I would LIKE to use Python but any language is fine. I have not ever done anything with CGI, but I think this is the simplest way to accomplish my task. This is what the Google KML d...

websphere application server license?

Hi I am using IBM Websphere application Server 7.0 trial version and the priod was expired. So please let me know how to get the licensed version for the same? Thanks in advance!!! ...

dojox.rpc.JsonRest query Method and Zend JSON Server

I use dojo 1.3.2 with the Zend Framework 1.10 JSON Server. I can successfully execute my method getTreeByScope defined as SMD via JSON-RPC 2.0 myService.getTreeByScope({scopeId:1,nodeId:0}); this sends this POST request: {"id":1,"method":"getTreeByScope","params":{"scopeId":1,"nodeId":0},"jsonrpc":"2.0"} All is fine. Now i wanted...

CSS Sprite now showing once uploadedhtr

http://www.keironlowe.host56.com/Website%20Testing/index.html At the bottom below the paragraph of text I have two images with hover effects one says Contact us and another says Jobs Available! These are there when I test the site on my local machine, but when I upload them to a server there not there when I load the page, the anchors ...

Executing server-side Unix scripts asynchronously

We have a collection of Unix scripts (and/or Python modules) that each perform a long running task. I would like to provide a web interface for them that does the following: Asks for relevant data to pass into scripts. Allows for starting/stopping/killing them. Allows for monitoring the progress and/or other information provided by the...

Video streaming

Hi guys - anyone that can help would be greatly appreciated. I want to setup a video streaming service from my server. I want to store videos on this. Now I was thinking of streaming the video through some form of player (e.g. JWPlayer) and (a) allowing users to step through the video frame by frame (b) tagging the video by associating...

Video streaming server and storage

Hello - quick question. Any help greatly appreciated. I am thinking of streaming video from a streaming server. Is it possible to store the videos on a separate server? What are the pros and cons of this? Max. ...

How to set up a simple web server(Windowws XP Pro)

As a heads up, I have some experience programming on Windows and other devices, but I have almost zero experience doing web anything, so I'm sure this is simple/easy to find online and I just don't know what I'm doing. I have a computer on my home network that is connected to the internet(I can VNC into it from online if that helps) and...

can you use proxies to do load/stress testing on a server, with proxy serving as a sort of mirror?

suppose I want to test a server's and its web application's ability to handle many simultaneous connections well and show decent latency. So ideally I would want a thousand machines to bombard it with usage requests, but that's not practicable. So instead, can I just make a testing script with a thousand threads to run on the same server...

UI Development vs Server Side Development

I have recently been given the opportunity to move from large scale server development to UI development (applications on handheld devices etc) and am trying to find the pros and cons of each world before making a final decision. The general impression I get is that server development allows for a wider range of languages and technologi...

Back up of Streaming server

I want to take a new streaming server for my website which generally holds videos and audio files. But how do we maintain backup of the streaming server if storage size is increasing day by day. Generally Database server, like Sql Server, backup can be easily taken and restored very easily as it does not occupy much space for medium ran...

Minimal production Django server on Windows

Hi, I need to deploy a small Django app to be used in a small intranet. Concurrency and speed are non issues because there will be, at most, 10 users (and I bet that there will be almost no concurrency). There is already a MySQL server. The problem is with the Django app. What is the most lightwieght server I can install under a WinXP ...