milosev.com
  • Home
    • List all categories
    • Sitemap
  • Downloads
    • WebSphere
    • Hitachi902
    • Hospital
    • Kryptonite
    • OCR
    • APK
  • About me
    • Gallery
      • Italy2022
      • Côte d'Azur 2024
    • Curriculum vitae
      • Resume
      • Lebenslauf
    • Social networks
      • Facebook
      • Twitter
      • LinkedIn
      • Xing
      • GitHub
      • Google Maps
      • Sports tracker
    • Adventures planning
  1. You are here:  
  2. Home

Data source name not found and no default driver specified

Details
Written by: Stanko Milosev
Category: PHP
Published: 12 March 2009
Last Updated: 30 November -0001
Hits: 5894

If received error like this one, then, beside all, you should check have you installed the SQL Server 2005 version of the SQL Native Client, since I didn't know that, and I tried to do it with the the SQL Server 2008 version of the SQL Native Client.

Taken from here.

The specified module could not be found.

Details
Written by: Stanko Milosev
Category: PHP
Published: 10 February 2009
Last Updated: 30 November -0001
Hits: 6299

If you received error like in title while trying to install php 5.2.8, then read this, maybe it wil be helpfull for you too :)

Mostly I followed instructions from here, my problem was that I had installed IIS 5.1 and IIS 6... Have no idea how that happened.

If you start msi instalation of php to change anything, than you will probably have to go to IIS manager and remove " from .php mappings.

 

Instalation on IIS 5.1 (WinXp)

Details
Written by: Stanko Milosev
Category: PHP
Published: 12 November 2008
Last Updated: 14 December 2008
Hits: 6344

If the path to your PHP directory has spaces (e.g. "C:\Program Files\PHP") and IIS gives a 500+ error or responds with "The specified module could not be found." when you try to run a PHP script, try changing the ISAPI DLL's path in IIS (in the "Home Directory" tab, under "Configuration...") to the 8.3-equivalent path.
 
That is, use C:\PROGRA~1\PHP\php5isapi.dll instead of "C:\Program Files\PHP\php5isapi.dll".

 Copy/Pasted from here.

Save XML in human readable format

Details
Written by: Stanko Milosev
Category: PHP
Published: 22 September 2008
Last Updated: 30 November -0001
Hits: 5998

With using DomDocument class.

 

Like this:

<?
$sXML = '<root><element><key>a</key><value>b</value></element></root>';
$doc = new DOMDocument();
$doc->preserveWhiteSpace = false;
$doc->formatOutput = true;
$doc->loadXML($sXML);
echo $doc->saveXML();
?>

From here.
  1. NuSOAP
  2. Passing $_POST variable to redirected page.
  3. List all files in a directory tree.
  4. NuSoap

Subcategories

C#

Azure

ASP.NET

JavaScript

Software Development Philosophy

MS SQL

IBM WebSphere MQ

MySQL

Joomla

Delphi

PHP

Windows

Life

Lazarus

Downloads

Android

CSS

Chrome

HTML

Linux

Eclipse

Page 102 of 164

  • 97
  • 98
  • 99
  • 100
  • 101
  • 102
  • 103
  • 104
  • 105
  • 106