configuration

PHP and IIS Configuration

Hi, Recently i configured Wordpress blog in IIS... I works fine. and Now i try configure the another package(PHP)... it loads the Index page when click on any link it says ** unable to find includes/dbsettings.php ** But the file is there in the location and someone said there is problem in path mapping php.ini file....i not PHP ...

Add HTTP and HTTPS Binding to a WCF Webservice

I have a WCF Werbservice and i want to reach him via HTTP and HTTPS. This is my actual try. But i can't reach the Service anymore not with http and not with https. :( Pls help <system.serviceModel> <bindings> <basicHttpBinding> <binding name="DefaultBinding" closeTimeout="10:01:00" openTimeout="10:01:00" receiveTimeout="10:10...

Windows server 2008R2 routing with single NIC

Hello, I'm trying to duplicate a Linux server configuration to a windows server 2008R2 box. Basicaly this linux server acts as a router, but it is doing its job with only 1 interface (1 NIC). Here is the network configuration in place (I cannot change it) : INTERNET <==> Router (local ip = 194.168.0.3) <==> linux Server (ip : 194.168....

Symfony 1.4.6 loading factories.yml configuration from task

I have the following configuration set in my factories.yml file... all: mailer: param: transport: class: Swift_SendmailTransport param: command: /usr/sbin/sendmail -oi -t ...to overcome the 'double dot' issue as described here. When I run the following code... $mailer = $this->getMailer(); $mess...

GWT - no urls in development mode tab

What could be the reason for not showing any urls to html files while debugging the GWT project? The tab is empty, it is not possible to debug any of the pages that are stored in 'war' directory. I guess it is all about the configuration. Thank you for any hints on how to fix that. ...

Selecting the certain resource files into WAR from the default src/main/resources location with Maven

I am trying to control which files make into the WAR package that is created by mvn package goal. Specifically, I want to exclude some files from the default src/main/resources folder for each package (I am trying to do builds/package for different environments). I tried using maven-war-plugin but failed. If I add this configuration (fo...

what baseAddress of WCF service when publish at hosting?

Hey, I have services on my application and when I test it on localhost everuthing was ok. But when I publish it I have problem with base Address property. What should I put there ? My web.config part: <services> <service name="WcfService1.Service1" behaviorConfiguration="metadataBehavior"> <endpoint address="" binding="basicHttpB...

Can you configure Apache to work on multiple developer workstations?

I am on a Mac running Snow Leopard which includes Apache. I want to run a local copy of Apache for web development. To do this so far I have had to set my full path for the document root and the rest of the paths for things like ErrorLog and PidFile. What I would like to do is create an httpd.conf which work across multiple developer wo...

What is the difference between an "Application Configuration File" & "Settings File" in C#?

What is the purpose of having two files that appear to do the same/similar thing? Is one deprecated and should I be using the other? Please, break it down for me. Thanks! ...

Ehcache element <cache/> does not allow attribute "transactionalMode"?

According to the Ehcache documentation, starting with version 2.0, an Ehcache cache may participate in a JTA transaction based on the value of attribute transactionalMode on element <cache/>. If this is true, then why does Ehcache, when it encounters this attribute in my Ehcache configuration file, throw the following exception and comp...

How to configure .NET framework on Windows 7

Hi ! I don't find the graphic tool to configure my .NET framework on my windows 7. Thanks Robie ...

Firefox config: How to set settings that are not visible?

I would like to set a setting (nglayout.debug.disable_xul_cache) to true. But when i enter "about:config" in my FireFox and search for this setting i cannot find it. How can i set this setting? ...

Connection nHibernate to Oracle Issues

I am trying to connect to an Oracle Database using nHibernate. I can connect using the .Net driver: <property name="connection.driver_class">NHibernate.Driver.OracleClientDriver</property> However I would prefer to use the OracleDataClientDriver that ships with Oracle (or nHibernate? I forget). Anyway I was using the instructions ...

How can I configure WCF to accept SSL and non-SSL

I need some help configuring WCF to support multiple environments. One environment allows anonymous authentication over standard HTTP and the other uses Windows Authentication over SSL. I can configure WCF to support either of the environments, but not both within the same web.config file. Here's what allows anonymous over http: <be...

Best way to share features in Rails without reinvent the wheel

I begin with some examples that's better, when I plan a rails app I'd like to have: a SettingsController (to store system preferences, eg disqus id,..) with a model and some views a my custom template a login system (Devise) which is teh best practise to keep this components updated separatly? and indipendent from the new customized ...

What is the best NANT template for Continuous Integration (CI) that you've seen?

Hopefully it covers most common targets while factoring in MSBuild, web deployment, source control checkout, configuration management (config files for multiple env) and Hudson. ...

How to use git (git config --global)?

The Pragmatic Guide to GIT has the following "Git uses both to calculate the commit ID—a SHA-111 hash—that identifies each commit." in page 21. And in page 22, I can use the following command to 'Configure Git to know who you are'. git config --global smcho "Your Name" When I ran it, I got the following error message. error: key ...

ImportError: No module named django.core.handlers.wsgi in install django mod_wsgi config on apache

Hi, I tried to install django on my apache on mod_wsgi , I have this error : ImportError: No module named django.core.handlers.wsgi, I v read, may be it's some user problem... On console ssh, with root access no problem to access django.core.handlers.wsgi , but when apache ask to access it doesn't work... i need help Thx My django....

Why does StringValidator always fail for custom configuration section?

I have created a custom configuration section in a c# class library by inheriting from ConfigurationSection. I reference the class library in my web application (also c#, ASP.NET), fill in the appropriate attributes and everything works great. The problem starts when I start adding validators. For example, this property: [Confi...

C++ Apache API: How to programmatically update apache settings?

This is a nice article about setting up Apache virtual hosts on Debian. Now, I would like to be able to do so programmatically, from within my C++ application. What do I need to know to do so? Sub questions: What tool can I use to parse, read and write the apache config grammar? Is there an API or header I could use to that ...