およびニュースあなたの最もよい資料源約 xp, ハードウェア そして BIOS インターネット

ヴィスタの記事 上50 ヴィスタのビデオ 柔らかいヴィスタ ヴィスタの助け

いかにに

現在記事をからの拾い読みしている MS Windowsヴィスタの多用性があるソフトウェア 部門の一致 いかにに.

Windowsヴィスタのスクリーンセーバーを変える方法

年前に、人々はスクリーンセーバー彼らのモニターを保護し、マニアが「焼跡」。と呼ぶことをの防ぐのに使用した

テキストまたは活発ではない、およびゆがみの結果余りに長く表示されるスクリーンに静的なイメージがあると焼跡、スクリーンの焼跡または蛍光体の焼跡は起こる。 消されて時でさえ、このゆがみはモニターで見ることができる。

改善されたCRTの技術、スクリーンセーバーとのそれを克服する彼らの実用性を考える。 ずっとそれから。 それらは非常に- 1つである、あなたのコンピュータ画面を安全にさせ、2、楽しみおよび心に抱くことである。 (多く…)

MyVistaThemes.com著書かれている 2007年11月18日 を使って コメント無し.
より多くの記事を読みなさい 変更 そして スクリーンセーバー そして 記事 そして いかにに そして 眺望 そして Windows.

Windowsヴィスタのアイコンを変える方法

Windowsヴィスタを使用するための特典の1つはアイコンである-それらは大きい近道あるが、ただまたより適用範囲が広い。 マイクロソフトがヴィスタを導入したときに、人々はちょうど前任者- XPに慣れたのでそれを採用して幾分躊躇していた。

しかし待っている人はあなたの仕事を大いにもっと簡單にする「道標」のようスクリーン-彼らで視覚で楽しいWindowsそれらのかわいいヴィスタアイコンで行方不明であるである。

XPからヴィスタへの転移をした人はWindowsヴィスタアイコンがと働く喜びであることを分る。 しかし最初に、アイコンは何であるか。 (多く…)

MyVistaThemes.com著書かれている 2007年11月18日 を使って コメント無し.
より多くの記事を読みなさい 記事 そして 変更 そして アイコン そして いかにに そして 眺望 そして Windows.

Windowsヴィスタの壁紙を変える方法

述べていることを友人および同僚がWindows彼らのヴィスタの壁紙についてわめき、知らなかったら、心配してはいけない。 Windows Vista wallpapers are actually just another name for “background.” And if you did make the move from XP to Vista, you have them right on your computer too!

Just as you would jazz up your bedroom or dining room with special wallpaper, you’d want to do the same for your computer screen. And whatever Windows Vista wallpaper you choose, it will no doubt add oomph to your screen, making it more visually appealing.

The simplest definition then for a Windows Vista wallpaper is the background or the picture that covers your desktop. (more…)

Written by MyVistaThemes.com on November 18th, 2007 with no comments.
Read more articles on Articles and change and how to and Wallpaper and vista and Windows.

How To Change The Theme In Windows Vista

The one good thing about Windows Vista Themes is that customization is entirely possible. And when you can customize you can naturally personalize. That’s right. Vista allows you to select your own themes in a few easy steps. This allows you to tinker with your computer to make it more attractive and less monotonous – when you want it and how you want it.

A Windows Vista theme is simply a group of customized tweeks that span the entire gamut of menu appearance, icons, colors, fonts, screen savers, background, and yes – even paints!

Let’s start with your desktop because it’s the most logical place to start. To select a desktop theme, perform the following steps: (more…)

Written by MyVistaThemes.com on November 18th, 2007 with no comments.
Read more articles on Articles and change and theme and how to and vista and Windows.

Install Moodle 1.8 under Apache/Vista

Moodle is usually easy to install once you’ve got Apache/PHP 5/MySQL running.

But the installation script for Moodle 1.8 fails- hitting ‘Next’ after entering the database information gave me a blank screen.

The install works fine under XP. But the problem isn’t limited to Vista: John McGrath and others on moodle.org report a similar problem under XAMPP/Win2000. John manually built his configuration file to get Moodle running (http://moodle.org/mod/forum/discuss.php?d=64692).

I was able to install Moodle 1.8 successfully under Vista following his approach.

  1. Install the Apache webserver. I’m using Apache 2.2.4.
  2. Install MySQL 5 (The most recent installer (5.0.41) works without a hitch under Vista. Don’t forget to unblock port 3306 in your firewall, and set sql-mode=”" in your my.ini file; Moodle doesn’t like strict mode).
  3. Install PHP 5. I’m using version 5.2.3.
  4. Download the latest stable build of 1.8+ from http://download.moodle.org/download.php/stable18/moodle-latest-18.zip.
  5. Unzip the file into your Apache document root (c:\apache\htdocs, if you follow the instructions linked in step one). I renamed the directory c:\apache\htdocs\moodle18, so I could install multiple versions of moodle later for testing.
  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.

« Older articles

No newer articles