installation

Java - Difficulty installing program from 3 separate .jar files (involves CLASSPATH)

Hi all, I'm having a little trouble running some Java code, which requires three .jar files to be used. I'm at a lost as to what to do with them--I've tried setting the CLASSPATH (and following the instructions for how to do so in the readme files), but to no avail. I was wondering if someone could walk me through it? I'd imagine three...

How Do You Manage Your Eclipse Installation

How do you manage your Eclipse installation, i.e. the basic installation, plug-ins and workspace settings with regard to consistent updates (including major ones, 3.5 => 3.6) and usage on two or more computers (desktop + notebook). My current setup is to basically manage the installation on several installations in parallel, i.e. manual...

Install LuceneSail on sesame2

I am looking for a web resource where I can find a step-by-step instruction how to install LuceneSail in OpenRdf sesame 2 server and how to enable the sesame workbench to create new LuceneSail repositories. Has anybody successfully installed this sail? ...

how to handle temporary files/folders of VS setup project?

Still learning create MSI installer with VS 2008 for our C# application. We have some batch files to create database and tables, after installation we want to delete it because there are sensitive information on them (username, password, ...). My questions are like those: where should I put those temporary folders/files? (doesn't matte...

How to deal with updates to white-labeled sites that have been modified by customers

I'm planning to make a white-label product that will be delivered to clients. The product is developed using an MVC framework (CakePHP in particular), and the idea is to let the customer modify not only basic stuff like the CSS, but also the templates. Now, templates, although they are "views", they still have some logic to them. Lot...

what's the tricky to delete temp folder in the installer?

I am creating MSI installer via VS 2008. I try to delete the temp folder at the end of the installation. That temp folder is created by my installer to hold some batch files for database creation. It always show other process is access it and doesn't allow my code to delete it. I have called the Close() of that access process. I have put...

Installation problem with Apache Thrift

I am trying to install thrift in solaris, so I can play with it. But unfortunately, I can't get configure working. Here is the command I use to configure. ./configure --prefix=<> CFLAGS='-m64 -O3' CXXFLAGS='-m64 -O3' --with-boost= I get this error as follows. checking for boostlib >= 1.33.1... configure: error: We could not detect the...

Why do I get an error on the last line of installing Pylons 1.0 with easy_install and Python 2.7 in Windows Vista 64?

I tried to install Pylons 1.0 with Python 2.7 using the easy_install command in Windows Vista 64 but got the error: raise ValueError(str(list(result.keys()))) ValueError: [u'path'] Here is the link to the whole installation process from command prompt http://pastie.org/1190341 Why do I get this error? How do I solve it? Will P...

How come Pylons is not recognized when I run 'import pylons' in Windows Vista command prompt?

When I try to import pylons in the virtual python environment I get the error C:\env\Scripts>python Python 2.7 (r27:82525, Jul 4 2010, 07:43:08) [MSC v.1500 64 bit (A MD64)] on win32 Type "help", "copyright", "credits" or "license" for more informati on. >>> import pylons Traceback (most recent call last): File "<stdin>", line 1, in ...

how to combine FrameWork2.0 in my installation ?

hi i want to distribute my C# program and i want to combine FrameWork2.0 in my installation. how i can do it - without download FW2.0 from the Web ? i need that the FW2.0 will be part of my installation and when the customer will install the program - the FW2.0 will be install (without internet) thank's in advance ...

how to combine ActiveSync 4.5 in my Installation ?

hi how i can combine ActiveSync 4.5 in my installation ? i need that ActiveSync 4.5 will be installed automatic before my program will installed thank's in advance ...

Code To Create a User and Establish Permissions

I have a C# windows service application that generates a log file that writes to C:\Program Files\Company\Product\log.txt. I am using the installer provided by Visual Studio 2010 and need to have the installer: 1. Create a user named ProductUser 2. Set permission for C:\Program Files\Company\Product\ to allow ProductUser to write to the ...

I have installed PostgreSQL via MacPorts, but cannot access it

As I said in title, I've installed PostgreSQL usind MacPorts, but cannot access it. The installation process was $ sudo port install postgresql83-server $ sudo mkdir -p /opt/local/var/db/postgresql83/webcraft $ sudo chown postgres:postgres /opt/local/var/db/postgresql83/webcraft $ sudo su postgres -c '/opt/local/lib/postgresql83/bin/in...

how to combine MDAC to my installation ?

hi how to combine MDAC to my installation ? my C# program use access and i need to combine MDAC 2.0 to my installation how to do this ? thank's in advance ...

how to include python modules in linux?

I found this xgoogle python modules http://github.com/pkrumins/xgoogle, very interesting. How exactly should i include or install these files in linux?? if i want to do something like this using xgoogle python module? >>from xgoogle.search import GoogleSearch I know that we can use from, import to use modules, but to include an exte...

Installing C++ Boost library on Windows without Visual Studio

I would like to install Boost library without the need of Visual Studio compiler, preferably by downloading the pre-compiled binaries. We are working on a cross-platform C++ project in Eclipse, so VS is out of option. About a year ago, I found an installer, but it does not longer exists. The best match I have found so far is from: http:...

Problem with MPICH2 & mpi4py Installation

Hello, I'm on Windows XP2 32-bit machine. I'm trying to install MPICH2 & mpi4py. I've downloaded & installed MPICH2-1.2.1p1 I've downloaded & mpi4py When I run python setup.py install in mpi4pi\ directory. I get running install running build running build_py running build_ext MPI configuration: directory 'C:\Program Files\MPICH2' M...

Getting error after installing sql server 08 Express edition

I have installed SQL server 08 express edition and then tried to connect using SQL server management studio, but getting below error: TITLE: Connect to Server Cannot connect to My-PC\SQLSERVER. ------------------------------ ADDITIONAL INFORMATION: A network-related or instance-specific error occurred while establish...

I don't see any MVC templete in VS2008 (MVC RTM was installed before VS2008)

Hello, I had VWD2008 Express (and MVC RTM) in one of my machine. I've replaced it with VS2008 Professionnal. I can see on the control panel that both MVC 1.0 and MVC 2.0 are still there. But, when I try to create a project on VS2008 newly installed, I don't see any MVC template. How can I register MVC so that I can create MVC applicati...

Custom installation file for Windows program

Hi, I need to create an installation file for Windows in such a way that the setup: Registers the .exe at startup so it launches everytime machine is booted Runs the .exe and opens a webpage upon completing installation . Could anyone please give me some tips on how I could do this? ...