web

Web user registration & profile editing app using LDAP backend

A organization I work with has multiple web facing applications (Django app, Rails apps, phpBB forums, mailman) and each has their own user logins and profiles. The organization wants to standardize on using LDAP has a place to store authentication and authorization data, as well as basic profile data. Is there an existing open source w...

Invalid Variant Operation error

I have an error in my button click, and I can't figure out how to resolve it. This is my code: if (ovElements.item(i).name = 'add') and (ovElements.item(i).type = 'button') and (ovElements.item(i).Value = ' + ') then ovElements.item(i).Click; This is the markup: <td width="20" align="left"><input class="button" style="wi...

How can I create a website summary with Perl?

When you share something on Facebook or Digg, it generates some summary of the page. How would I do this in Perl? What algorithms are there? For example: If I go to Facebook and tried to share this question as a link: http://stackoverflow.com/questions/1279851/facebook-digg-get-website-summary It retrieves "Facebook/Digg get website...

How can I configure Apache to run Perl CGI scripts?

I want to configure Apache web server to run CGI scripts on Mac OS x 10.5. I have already started Apache Web Server on Mac. What are the steps to make the Apache run the Perl scripts? ...

Is a visitor to my website coming from a search engine? What were their search terms?

I'd like to display my page differently for the visitor based on if they came from a search engine or not. I guess I'm detecting search engine referrals? I'd also like to know the search terms used to arrive at my site. My solution so far is this: 1) Filter on the HTTP request referers which contain common search engine URLs, i.e. http...

How to deploy a web application on iphone?

Hi All, I have developed a website in asp.net for iPhone. Now I am stuck in how to deploy that site on the iphone? Never done it before. How to make it iphone ready so the device can access the site ? Any ideas... Thank you All. ...

Programatically create a web site in IIS using C# and set port number

We have been able to create a web site. We did this using the information in this link: http://msdn.microsoft.com/en-us/library/ms525598.aspx However, we would like to use a port number other that port 80. How do we do this? We are using IIS 6 Thanks Shiraz ...

Managing Users and Roles from the website

I'm working on a website in ASP.NET/C# and I'd like to make it possible to manage Users and Roles from the admin section in the website. Are there any reusable, probably open-source, web application that I can include in the website to do this? I know that the membership API exists and can do this but I'm looking for more than an API, s...

text with the same font size looks not the same size on different pages

on both pages,the font-size is 10pt, but on one page the font size looks obviously bigger than on the other page, what can be the reason for this? ...

Web Service to connect to an API and get the response back from the API

This is a general Programming question I'm new to Java Web services programming using Apache Axis and JAX-RPC. We need to build 2 components,a App engine (Shopping cart, Payment Gateway integration etc..) and a UI Control Panel over an existing API. The API understands only XML.How we must communicate with the API? link text We have ...

What is the most effective website to post an ad for web developer?

Hello SO world. I want to post a web developer job ad and I want to get the most for the money. We were hoping to get the best job site out there to find a good web developer for our company. I know that most of you will say SO, but my manager already told me that SO is not an option, if it was for me I will definitely use SO for my p...

Web Application Frameworks: C++ vs Python

Hello, I am familiar with both Python and C++ as a programmer. I was thinking of writing my own simple web application and I wanted to know which language would be more appropriate for server-side web development. Some things I'm looking for: It has to be intuitive. I recognize that Wt exists and it follows the model of Qt. The one t...

IIS scalability

I have been tasked recently to estimate number of concurent users that IIS can handle. Unfortunately, I have 0 experience with IIS, so I hope someone will guide me where to look. I hope I will not have to do my own benchmarking in this phase. I would like to know what is the number of concurrent connections that it can handle. The clie...

Web Page Counter

What is a free and easy way to capture hits to a page on my site. I do not want a counter to show up on the page. I do have a db as part of the website. Thanks ...

Is there any danger to creating UUID in Javascript client-side?

Hi, I need to generate UUID to eventually store in a database. Can I generate theses UUID from Javascript on the client browser (There are some examples here)? Is there any security risk of doing it this way? I understand that anyone can modify the UUID before it's passed to the server for storing. So i'll need to check if they are tru...

Why is $_POST empty in PHP5 under Apache?

In the file http://example.com/path/foo.php, I have the form (formatting deleted): <form action="/path/foo.php" method="post"> Email: <input type="text" name="email"> Password: <input type="password" name="password"> <input type="checkbox" name="remember" checked="checked"> Remember me <input type="submit" value="Log In"> </form> Some...

How do I stop a page from unloading (navigating away) in JS?

Does anyone know how to stop a page from reloading or navigating away? jQuery(function($) { /* global on unload notification */ warning = true; if(warning) { $(window).bind("unload", function() { if (confirm("Do you want to leave this page") == true) { //they pressed OK alert('ok'); } else ...

Usability patterns catalog

While reading a revision history here at stackoverflow I noticed a great usability pattern: a list of revision entries. I like this approach since it is both easy to use and easy to implement. Now I'm wondering about a catalog of usability patterns for web applications. ...

What are the available MVC web frameworks in the Linux world?

I've never done any web development on Linux, and I'm about to start a project that requires it. I love ASP.Net MVC, so what are my availble options on Linux that kind of follow the same principles? The project is a very simple "ecommerce" site (two or three products). There may be other sites to come though that are more complicated. ...

Desktop-like UI implementations for Java web applications?

At work we're discussing upgrading our view layer for our web application. We're currently running an old and "modified" version of FreeMarker Classic, which is a pain to work with. One of our developers suggested using a Component UI style architecture similar to desktop style environments. Essentially, this would mean that you would b...