Tagged Questions

The term "server-side" refers to that portion of a web application which runs at the web server. The counterpart of "server-side" is "client-side", i.e., the part of a web application running in the user's browser.

learn more… | top users | synonyms

24
votes
7answers
520 views

Do copyright dates need to be updated?

Every now and then I see a web site that has an old copyright date. In my mind, I always think "Look at the sucker who forgot to update his copyright year!" Then, while I was hard-coding a copyright ...
18
votes
3answers
1k views

Why is Erlang said to be more suited for server side programming in webgames than Java and C++?

I don't really understand, how can Erlang be more efficient than C++?
16
votes
13answers
895 views

Why is client-side validation not enough?

I saw here that: As you probably already know, relying on client-side validation alone is a very bad idea. Always perform appropriate server-side validation as well. Could you explain ...
14
votes
5answers
7k views

How would MVC-like code work in Node.js?

I'm starting to get my head around node.js, and I'm trying to figure out how I would do normal MVC stuff. For example, here's a Django view that pulls two sets of records from the database, and sends ...
13
votes
10answers
3k views

What's a good minimal server-side JavaScript framework?

So I was writing a web application with web.py that uses plenty of client-side JavaScript code, and my database is on CouchDB so the queries are in JavaScript too, and eventually I just got to ...
12
votes
16answers
863 views

Will server-side JavaScript take off? Which implementation is most stable?

Does anyone see server-side JavaScript taking off? There are a couple of implementations out there, but it all seems to be a bit of a stretch (as in, "doing it BECAUSE WE CAN" type of attitude). I'm ...
10
votes
6answers
972 views

How to handle multiple submissions server-side

We all know the good old "disable the submit button" trick but what are the best ways to handle multiple submissions server side? I have an application where it is absolutely critical that a form only ...
9
votes
2answers
863 views

Templating language for both client-side and server-side rendering

I'm investigating JavaScript templates as a way to render our views. The goal is to be able to render client-side for users that have JavaScript enabled to to render the same templates/data server ...
9
votes
5answers
758 views

Server side templates, client side templates - Automatic conversion?

With the event of the jQuery templates plugin, I am wondering how to maintain both server-side and client-side templates. Because in my case, I have some templates, that would be duplicates - ...
9
votes
7answers
3k views

Create a website screenshot/thumbnail server-side?

I'm building a rails app that needs to grab and display a thumbnail screenshot from a URL. I'm having a difficult time even finding where to start. Any help would be greatly appreciated. Thanks.
9
votes
7answers
645 views

Do you validate your URL variables?

When you're passing variables through your site using GET requests, do you validate (regular expressions, filters, etc.) them before you use them? Say you have the URL ...
8
votes
1answer
3k views

Send message to specific client with socket.io and node.js

I'm working with socket.io and node.js and until now it seems pretty good, but I don't know how to send a message from the server to an specific client, something like this: client.send(message, ...
8
votes
3answers
629 views

If I use GNU GPL code with my own server-side code, do I need to open my server-side code as GPL?

I am making a Python app that works inside a GNU GPL app. (eg. script/app inside XBMC(Xbox Media Center)) The GNU GPL app provides me with the API to build my app. So this, probably means that my ...
8
votes
8answers
2k views

Pagination: Server Side or Client Side?

What is it best to handle pagination? Server side or doing it dynamically using javascript? I'm working on a project which is heavy on the ajax and pulling in data dynamically, so I've been working ...
7
votes
7answers
546 views

How fast is client side javascript versus server side Java?

I am wondering how fast client side javascript is compared to server side Java in terms of raw computational power. For instance, sorting. Should it all be done server side if possible? And how about ...
7
votes
3answers
631 views

Server side javascript on Google app engine

Is there any way to run a Javascript engine, like Spidermonkey, on Google App Engine? Spidermonkey is a C module, so obviously that wont work (GAE doesn't allow those types of modules)... is there ...
7
votes
3answers
2k views

How do I use a DataPager with Server Side Paging?

I'm trying to use a DataPager to do Server Side paging. Here is my code <asp:DataPager ID="pgrFooBars" PagedControlID="lvFooBars" QueryStringField="page" runat="server" > <Fields> ...
7
votes
4answers
2k views

HTML5 — server side

How much does it matter what server side language is used for building a web app to take advantage of HTML 5? It seems to me that the ruby community will probably have the fastest uptake, and as a ...
7
votes
10answers
934 views

jQuery vs Standard Backend Programming

I'm curious to know people's preferences... I've recently gone head-first into jQuery and I am loving it. However, I'm finding that I'm replacing a lot of (somewhat trivial) backend (tech: ASP.NET) ...
7
votes
5answers
588 views

Server Side Javascript: Why?

Is the use of server side javascript prevalent? Why would one use it as opposed the any other server side scripting? Is there a specific use case(s) that makes it better than other server side ...
7
votes
14answers
5k views

Optimized graph drawing for the web

Having seen some suggestions for graphs, I wonder what's the optimum for my problem. I want to render a directed graph to a servlet/picture that is displayed in the browser. There should be some ...
6
votes
2answers
174 views

Template engine for Ruby and Javascript

We are building a web page with hashtag navigation. There is lots of data, which comes in as JSON and we use client-side templates (jQuery) to render it. So what are the options for reusable templates ...
6
votes
2answers
296 views

Save a Processing sketch to a PNG file, server-side with no GUI/display

I'd like to use Processing to render a visualization on the server side (headlessly, with no GUI). The Processing sketch is static (i.e. does not animate), so I only need to grab the first frame, and ...
6
votes
2answers
2k views

Automatically add svn keyword properties for new files (server-side)

I want to add svn properties (like svn:keyword=Id Date Rev Author) to files upon commits of new files. For this to work there may be two main options: Client-side: altering the autoprops in the ...
6
votes
9answers
473 views

How do you avoid duplication of validation on the server and client-side?

How do you avoid duplication of validation on the server and client-side? Is there a web programming platform that generates one from the other, so I don't have to keep the two in sync?
6
votes
3answers
2k views

Can you reliably set or delete a cookie during the server side processing of an Ajax (XHR) call?

I have done a bit of testing on this myself (During the server side processing of a DWR Framework Ajax request handler to be exact) and it seems you CAN successfully manipulate cookies, but this goes ...
5
votes
2answers
289 views

Server-side clustering for google maps api v3

I am currently developing a kind of google maps overview widget that displays locations as markers on the map. The amount of markers varies from several hundreds up to thousands of markers (10000 up). ...
5
votes
5answers
389 views

Does it make sense to build pure JavaScript based web applications (both client and server side)?

I've always considered JavaScript as a great addition (or rather, for the last couple of years, as a must have) to the client side of any web application. Even when I started to use Mootools, which ...
5
votes
1answer
778 views

How to update jQuery DropdownChecklist from server-side?

I'm working on an ASP.Net webpage which will use the jQuery Dropdown Checklist (http://code.google.com/p/dropdown-check-list/). I'm fairly inexperienced with JavaScript and completely new to jQuery. ...
5
votes
4answers
536 views

How can you encrypt users' data server-side without ruining the experience?

Many users – myself included – would like the security of having everything they do on a web service encrypted. That is, they don't won't any one at the web service to be able to look at their: posts, ...
5
votes
7answers
287 views

Is there a javascript server-side interpreter, like php?

For example, writting server-side things using javascript, instend of php.
5
votes
5answers
280 views

caching in memory on server

I want to write web app with client Javascript and back-end server (Python). Client needs data from server frequently in AJAX way. Data in DB, and expensive to load for each request. However, in ...
5
votes
1answer
417 views

Create an “sub” account on Google Analytics through an API dynamically

Does anyone know how (if possible) to create an account dynamically? I have a few accounts I need to setup on Google Analytics, and I would love to not have to manually enter each one on GA's site. ...
5
votes
4answers
644 views

TCL as a Server Side Programming Language

I am getting ready to build a web application (app) and was interested in using DHTML and TCL. I have been building apps in TCL for awhile and feel pretty comfortable with using this language. I ...
5
votes
2answers
1k views

Reverse AJAX? Can data changes be 'PUSHED' to script?

I have noticed that some of my ajax-heavy sites (ones I visit, not ones I have built), have certain auto-refresh features. For example, in GMail, if I get a new message, I see the new message without ...
5
votes
7answers
1k views

Server side virus scanning

I need to scan uploaded files for viruses on a Linux server, but I'm not sure how to go about it. What are my options, if any? I'm also interested in how the scanners perform when multiple users send ...
4
votes
1answer
58 views

RoR, How should I model this?

I asked this question earlier but I was very vague and a lot of people suggested that since I am just starting with Ruby and RoR, maybe it's better if I focus on "Hello, World!" first. I appreciate ...
4
votes
5answers
284 views

Timing user tasks with seconds precision

I'm building a website where I need to time users' tasks, show them the time as it elapses and keep track of how long it took them to complete the task. The timer should be precise by the second, and ...
4
votes
3answers
214 views

Strictly server-side processing (no web browser interaction): is Java or PHP better for this scenario?

Here's the situation: I currently have a web application that uses PHP to serve HTML/CSS/JS and that talks to a MySQL DB. Completely vanilla and common. The PHP is a mixture of presentation logic ...
4
votes
2answers
394 views

.htaccess mod_rewrite variables through redirect

Short Version: I wrote the question, and realized most people wouldn't want to read that much text. Consider the below reference, here's the TL;DR: I need to 301 redirect this url ...
4
votes
4answers
196 views

Building web pages on the server-side or client-side?

I've always wondered how to decide on choosing between using server-side code versus client-side code to build HTML pages. I'll use a very simple php vs javascript/jquery example to further explain ...
4
votes
3answers
145 views

Output or Input filtering?

Output or Input filtering? I constantly see people writing "filter you inputs", "sanitize your inputs", don't trust user data, but I only agree with the last one, where I consider trusting any ...
4
votes
2answers
2k views

Taking website screenshot, server-side, on a Linux rented server, free

Ok so, right now I can't really afford to pay for any service. I want to be able to take screenshots using my rented server, which is Linux based, and output them on the screen. I know there are a ...
4
votes
5answers
269 views

Rendering javascript at the server side level. A good or bad idea?

Now a community wiki! I want to make it clear first: This isn't a question in relation to server-side Javascript or running Javascript server side. This is a question regarding rendering of ...
4
votes
4answers
1k views

How to grab dynamic content on website and save it?

For example I need to grab from http://gmail.com/ the number of free storage: Over <span id=quota>2757.272164</span> megabytes (and counting) of free storage. And then store those ...
4
votes
1answer
1k views

Parameter format when tracking Google Analytics events with server side request automation

I'm currently in the process of programming an utility which generates GA tracking pixel (utm.gif) URL:s based on given parameters. For those of you who are wondering why I'm doing this on the server ...
4
votes
6answers
2k views

Check if Javascript is Enabled (Serverside) with Rails

How would you check if javascript is enabled in Rails? So that I could do something like this in the views: <div> <% if javascript_enabled? %> <p>Javascript ...
4
votes
1answer
243 views

Is anyone doing visual debugging with Jint?

I've been using Jint to run server-side JavaScript code and I'm liking it a lot so far. The one issue I'm having is debugging. JInt exposes events that can fire when a statement is executed or a ...
4
votes
3answers
948 views

Securing AJAX Requests via GUID

I'm writing a web app that will be making requests via AJAX and would like to lock down those calls. After a little research, I am considering using some form of random token (string) to be passed ...
4
votes
4answers
945 views

Server Sided 3D rendering

My questions have to do with this very interesting article: http://www.techcrunch.com/2008/07/09/otoy-developing-server-side-3d-rendering-technology/ What they say: In this article it is claimed that ...

1 2 3 4 5 10