Uw beste bron van informatie en nieuws ongeveer geheimen, winvista en microsoft op Internet

De ARTIKELEN van het uitzicht BOVENKANT 50 De VIDEO'S van het uitzicht SOFT van het uitzicht De HULP van het uitzicht

apache

U momenteel doorbladert de artikelen van De Compatibele Software van het Uitzicht van MS-Windows de aanpassing van de categorie apache.

eAccelerator PHP Uitbreiding Isn€ ™t draad-Safe€

Voor alle Verbindende PHP gebruikers daar overweegt zich, gewaarschuwd: zelfs als u de (vermoedelijk) draad-brandkast PHP Win32 binaire herdistributie in werking stelt, bent u nog vatbaar voor PHP de Fouten van de Schending van de Toegang, rasproblemen, hoopcorruptie, en veel slechter als u populair gebruikt eAccelerator opcode-in het voorgeheugen onderbrengt uitbreiding.

Wij deden onze het testen met binaire getallen die door SiteBuddy worden gecompileerd het gebruiken van de recentste versies van zowel PHP als eAccelerator. Onmiddellijk bijna na het in werking stellen van een spanningstest aangaande onze testservers ervoeren wij de gevreesde „PHP fout van de Schending van de Toegang“ - die het volledige Proces van de Arbeider IIS aan zijn hielen neerhaalt.

Klik blijven lezend „eAcceleratorPHP Uitbreiding Isn€ ™t draad-Safe€ "

geschreven door Guru van de Computer 10 september, 2007 met geen commentaren.
Lees meer artikelen verder IIS en FastCGI en Servers en XCache en APC en eAccelerator en Insecten en Vensters en Programmering en apache en php en software.

Installeer Moodle 1.8 onder Apache/Uitzicht

Moodle is gewoonlijk gemakkelijk te installeren zodra you€ ™ve het lopen Apache/PHP 5/MySQL kreeg.

Maar het installatiemanuscript voor Moodle 1.8 ontbreekt het raken van € ˜Next€ ™ na het ingaan van de gegevensbestandinformatie gaf me het leeg scherm.

Installeer de werkenboete onder XP. Maar het probleem isn€ ™t dat tot Uitzicht wordt beperkt: John McGrath en anderen op moodle.org rapport een gelijkaardig probleem onder XAMPP/Win2000. John bouwde manueel zijn configuratiedossier om het lopen te krijgen Moodle (http://moodle.org/mod/forum/discuss.php?d=64692).

Ik kon Moodle 1.8 onder Uitzicht na zijn benadering met succes installeren.

  1. Installeer Apache webserver. Ik gebruik Apache 2.2.4.
  2. Installeer MySQL 5 (de meest recente installateurs (5.0.41) werken zonder hitch onder Uitzicht. Vergeet niet om haven 3306 in uw firewall te deblokkeren, en sql-mode=“ „in uw my.ini- dossier te plaatsen; Moodle houdt van geen strikte wijze).
  3. Installeer PHP 5. Ik gebruik versie 5.2.3.
  4. Download recentste stabiel bouwen van 1.8+ van http://download.moodle.org/download.php/stable18/moodle-latest-18.zip.
  5. Rits het dossier in uw Apache documentwortel (open c:\apache\htdocs, als u de instructies volgt die in stap worden verbonden). Ik noemde de folder c:\apache\htdocs\moodle18 anders, zodat kon ik veelvoudige versies van moodle installeren later voor het testen.
  6. Create a directory for storing data that is outside the document root (I used c:\apache\htdata).
  7. Create an empty database for Moodle 1.8. I used mysql:
    1. Get a command line (All Programs > Accessories > Command Line) and start up mysql:
      mysql -u root -p
    2. After giving mysql your root password, you should see a welcome message. At the mysql prompt, type:
       create database moodle18;
       grant select,insert,update,delete,create,drop,
          index,alter on moodle18.* to moodle@localhost
       
...
Click to continue reading "Install Moodle 1.8 under Apache/Vista"

Written by senese on June 7th, 2007 with no comments.
Read more articles on how to and apache and installation and moodle and vista.

Install PHP under Apache and Vista

I initially tried the msi installer for PHP 5. Unfortunately, it installs only PHP under CGI, which although it has some performance and security issues, might be ok for a quick and dirty development environment.

But the installer is badly broken. You’ll get an error something like

PHP Fatal error:  require_once()[function.require]: Failed opening
required 'SAM/php_sam.php' (include_path='.;C:php5pear') in
sam_factory on line 1

After fighting this for a couple of hours, I ended up installing manually anyway. I used this procedure to get PHP 5 running under Vista:

  1. Install the Apache webserver.
  2. Get the current version of PHP 5 from http://www.php.net/downloads.php#v5. (It’s 5.2.3 at this time). Get both the zip file and the PECL zip file (which includes extensions).
  3. Uninstall any previous installations of PHP 5 (Start > Control Panel > Programs and Features). You may have to reboot your machine.
  4. Disconnect from the Internet. Turn off your firewall. Turn off your virus checker.
  5. Turn off User Account Control (UAC).
  6. Get an administrator prompt by going to All Programs > Accessories. Right-Click €œCommand Prompt€ and choose €œRun as Administrator€
  7. Use the command prompt to manually remove directories containing previous PHP installations (like C:\Program Files\PHP€)
  8. Go to the directory where you’ve downloaded the PHP5 and PECL zipfiles. Extract the PHP zipfile. Rename the extracted php directory (which has a name something like php-5.2.3-Win32) to c:\php. Extract the PECL zipfile into c:\php\ext.
  9. In the command prompt, type:
    cd c:\php
    mkdir upload
    mkdir session
    copy php.ini-recommended php.ini
  10. Open php.ini in Notepad:
    1. There are many variables… the following are important.
...
Click to continue reading "Install PHP under Apache and Vista"

Written by senese on June 6th, 2007 with no comments.
Read more articles on php and how to and apache and installation and vista.

Install Apache on Windows Vista

Installing Apache under Windows XP was trivial. Not so, under Vista. Creation of the Apache service fails. The conf directory can’t be set up by the installer, probably due to permission problems.

I finally got it working with the following procedure. I used the latest version of Apache (2.2.4) and Windows Vista Home Premium.

  1. Uninstall any previous installations of Apache Web server (Start > Control Panel > Programs and Features).
  2. Turn off your firewall (Control Panel).
  3. Stop User Account Control (UAC).
  4. Get the most recent version of apache from http://httpd.apache.org/download.cgi and put it on your desktop. Rename it to apache.msi
  5. Start > All Programs > Accessories
  6. Right-Click “Command Prompt” and choose “Run as Administrator”
  7. Manually remove directories containing previous apache installations (like C:\Program Files\Apache Software Foundation…)
  8. Change to your desktop folder (At prompt type cd desktop)
  9. Type “msiexec /i apache.msi” on the command prompt.
  10. Run through the Apache installer. I’m running a development server, so I left the domain and computer name blank. Choose the default server on port 80 for all users option. Change the installation directory to c:\apache.
  11. Reboot.
  12. The little Apache feather won’t appear on the task bar under Vista with the present version of Apache (2.2.4). To remove the “error” box that says ‘the operation completed successfully” on startup, go to  All Programs > Startup,  and remove the Apache item there.
  13. Browse to http://localhost. It should say “It works!” If it doesn’t, check your httpd.conf file by going to All Programs > Apache HTTP Server 2.2.x > Configure
...
Click to continue reading "Install Apache on Windows Vista"

Written by senese on June 6th, 2007 with no comments.
Read more articles on how to and apache and installation and vista.