web-development

Deleting all directories in an FTP archive that have a certain name using PHP

How would one go about deleting all of the directories in a directory tree that have a certain name if the only access to the server available is via FTP? To clarify, I would like to iterate over a directory tree and delete every directory whose name matches a certain string via FTP. A way to implement this in PHP would be nice - where...

Are there good Grails sample applications from which to learn?

Besides the sample applications featured in the books Beginning Groovy and Grails and The Definitive Guide to Grails, are there any applications out there written in Grails that are good examples from which to learn best practices? Such as real applications that are open-source? Thanks. ...

Poor Safari Rendering

I'm having major rendering issues in Safari with the web application I'm working on. Most of the design is done with divs using absolute positioning. This renders fine on Internet Explorer, Firefox, Chrome, Opera, Netscape, and konqueror. In Safari, it's just a jumbled mess. Does Safari lack support for absolute positioning of div ...

Is it possible to trigger an HTTP DELETE request from an HTML form?

I have an ASP.NET MVC project and I have a single action that accepts GET, POST, and DELETE requests. Each type of request is filtered via attributes on my controllers Action methods. [ActionName(Constants.AdministrationGraphDashboardAction), AcceptVerbs(HttpVerbs.Post)] public ActionResult GraphAdd([ModelBinder(typeof (GraphDescriptor...

Allowing the <font> tag to override CSS?

I have some user generated content I'm trying to render on my site. The rich text box editor I'm using renders font changes using <font /> tags, which are overridden by CSS on the page. Does anyone know if there is a way to allow rules defined using the <font /> tag to show through? UPDATE Since changing the control I'm using for my ri...

How do I cancel a server control event in the client side?

hello, I have an asp.net image button and I want to cancel the click event incase he fails the client side validation... how do I do that? ...

Why do I need to use a popular framework?

I've been a PHP developer for many years now, with many tools under my belt; tools that I've either developed myself, or free-to-use solutions that I have learned to trust. I looked into CodeIgniter recently, and discovered that they have many classes and helper routines to aid with development, yet saw nothing in the examples that I co...

What is the best practice to store a "saved search" in a database

I am working an a search page that allows users to search for houses for sale. Typical search criteria include price/zip code/# bedrooms/etc. I would like to allow the user to save this criteria in a database and email new homes daily. I could either: 1) Serialize a "SavedSearch" object into a string and save that to the database, the...

UTF-8 all the way through...

I'm setting up a new server, and want to support UTF-8 fully in my web application. I have tried in the past on existing servers and always seem to end up having to fall back to ISO-8859-1. Where exactly do I need to set the encoding/charsets? I'm aware that I need to configure Apache, MySQL and PHP to do this - is there some standard c...

How can I make a DIV behave like an IMG for use as a CSS sprite?

I have written code that automatically creates CSS sprites based on the IMG tags in a page and replaces them with DIV's with (what I thought was) appropriate CSS to position the sprite image as a background letting the appropriate part show through -- the problem is that I cannot get DIVs to behave as drop in replacements for IMGs. If...

When is a website considered "static" or "dynamic"

Hi friends, I have created a site, which parses XML files and display its content on the appropriate page. Is my site a dynamic web page or static web page? How do dynamic and static web pages differ? I feel it's dynamic, because I parse the content from xml files; initially i don't have any content in my main page.. What do you thin...

Practical FlapJax

Has anybody used or seen a website that uses FlapJax to function, rather than just as a demo? I'm curious to see how they operate / how difficult they were to write. List one example per answer. ...

What do I need to write Java-based web applications and test them on my personal computer?

I currently have Apache HTTP Server, but I'm guessing I'll need Tomcat (and then have to configure it in a way that makes it not open to the public), a Java JDK (which I already have, but should probably update), and an IDE (I have Eclipse). But what else should I have or know before starting? ...

What is the event precedence in JavaScript?

What order of precedence are events handled in JavaScript? Here are the events in alphabetical order... onabort - Loading of an image is interrupted onblur - An element loses focus onchange - The user changes the content of a field onclick - Mouse clicks an object ondblclick - Mouse double-clicks an object onerror - An error occurs wh...

Do I need SSL Cert for simple community site?

I'm working on deploying a small community site. User registration requires nothing more than a username, email address, and password. I'm not even asking for a name, and certainly not storing any sensitive data. Should I still invest in an SSL certificate? Would it be considered terrible practice to transmit a user's password without o...

Browse Server Folders in Client

I have a requirement for an admin user to set up an export directory on the web server, or relative to the web server using a UNC. Is there anything already out there that I can use for this, or must I recurs a limited directories and populate a home-rolled directory browser on the client? ...

What is the most Word-like ASP.NET custom control that you can buy?

We are looking to implement a rich-text box in an ASP.NET application and our requirements are specific to using the "Track Changes" features of Microsoft Word. The closest thing we found in the RadEditor by Telerik. This is a nice control that has a "Track Changes" button and will give you the ability to track the changes from the tex...

Moving from Desktop Development to Web Development

Up till now all my programming experience has been desktop development (mostly C/C++ with OpenGL/DirectX) but I'm interested in trying my hand at some web dev. The two directions I'm considering are Ruby on Rails and ASP.net. Which is most widely used? Which would be a more marketable skill to have? Thanks! ...

Setting focus to a button from from text box?

Hi, i have a few text boxes and buttons on my form. Lets say txtBox1 is next to btnSubmit1, txtBox2 is next to btnSubmit2, txtBox3 is next to btnSubmit3. How can i set the focus on btnSubmit3 when the user starts to type something in txtBox3. Meaning..... if a user type in a text box the program will know what button to fire when the u...

Do you know eclipse plugin to change localised text into html entities?

I have resource bundle with my country characters - how to change them into html entities. I prefer plugin integrated with Eclipse to have all tools in one place. ...