I'm trying to learn ZF, but got strange error after 20 minutes :)
Fatal error: Uncaught exception 'Zend_Db_Adapter_Exception' with message 'Configuration array must have a key for 'dbname' that names the database instance'
What does this error mean? I got DB information in my config file:
resources.db.adapter=pdo_mysql…
Hi there guys! I'm starting out learning some ASP.Net programming and I'm going to be making a little community website for my friends and myself.
I'm trying to pick up some good habits along the way.
I was thinking of having a usercontrol and have that 'loginBox' shows the appropriate textboxes and login button, but…
I'm implementing a ruby server for handling sockets being created from GPRS modules. The thing is that when the module powers down, there's no indication that the socket closed.
I'm doing threads to handle multiple sockets with the same server. What I'm asking is this: Is there a way to use a timer inside a thread,…
Hi there, first time posting in StackOverflow. :D
I need my software to add a couple of things in the registry.
My program will use
Process.Start(@"blblabla.smc");
to launch a file, but the problem is that most likely the user will not have a program set as default application for the particular file…
I have a great name for a website and it's available, but I don't really know how to register a domain name using a barebones website; that's why I want to use A Small Orange-like service.
My question is, is it standard procedure to register the name on YOUR(the costumers) behalf, or do companies set it up…
The Jquery load function don't stop if there is multiple click on the links in the menu.
The jquery code looks like:
$(document).ready(function(){
$(".menu_rfr").unbind("click").click(function() {
$("#main").html('<img src="img/spin.gif" class="spin">');
location.replace($(this).attr('rel'));
});
…
I managed to do it with the next code but there must be an easier way.
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
<%@ taglib prefix="fn" uri="http://java.sun.com/jsp/jstl/functions" %>
<c:if test="${fn:length(attachments) > 0}">
<c:forEach…
I'm going to be making a user control for person information, I will then populate a panel of some sort with the ammount of people found (one user control for each person).
Can WPF handle this?
My dream is to make a very good, open source Help desk application for companies to use for free.
My client application will run on every client computer have minimize itself to the task bar. When the user click the icon, it'll open the actual Winform window.
I'm using .NET 3.5; is there a…
I'm having a bit of an overload of information these past two days.
I'm planning to start my own website that will allow local businesses to list their items on sale, and then users can come in and search for "Abercrombie t-shirt" and the stores that sell them will be listed.
It's a neat…
Does Python3 have a built in method to do this? Any guidance at all would be great! :)
The website in question exposes all of its information and even gives you an API key to use.
and i really need a code to remove the ending slash when a user put their link.
for example i need them to put their url to grab their avatar, but in some cases they put their url ending with a slash (.com/) how can i remove that slash automatically? because when they put their url like…
I know that I was already posted similar question but I just can't find the answer and figure it out how to solve this problem.
I'm trying to customize Jquery Star Rating plugin (link text) but I do not know what to do to show the message based on response of PHP script.
Jquery…
I'm setting up my database to receive hashed passwords and not accept plain text.
Would I go something like this?
create table User(
username varchar(20) not null,
password varchar(64) not null,
);
In the following code:
public class MovieRepository : IMovieRepository
{
private readonly IHtmlDownloader _downloader;
public MovieRepository(IHtmlDownloader downloader)
{
_downloader = downloader;
}
public Movie FindMovieById(string id)
{
…
By best I mean more time tested, easier to implement and easier for the users to work with. I do not want my licensing crap to interfere with their work.
I was thinking of launching a WCF service that check with my license DB if it's a valid license and if it is, send a True.
…
I have the following class definition:
public interface IItem{}
public class FirstObject<T, U> : IItem
{
public U SomeProperty { get; private set; }
}
IList<IItem> myList = new List<IItem>();
I did it like this because U can be of different types. Now…
I'd like to know if the express editions allows you to make WCF applications and what is cut from the Express edition in comparison from the full on Visual Studio.
I'm using a Linq-to-SQL class called Scans.dbml.
In that class I've dragged a table called Users (username, password, role) onto the graphic area and now I can access User object via a UserRepository class:
using System;
using System.Collections.Generic;
using System.Linq;…
I want to ask the user for input in console. He'll be writing down two numbers separated by a single space.
In Java is there something like the C# Split() method I can use?
Thank you!