Have WAMP start automatically upon Windows start-up (without logging on or any UAC interference)

Follow these instructions to start the appropriate WAMP services on start-up. UAC will not interfere here and there is no need to log in to start your web-server: Log in as an administrator. Start -> Run “services.msc” Right click the service wampapache (may also be called wampapache64). Go to properties and set start-up type to … Read more

WAMP 403 Forbidden message on Windows 7

The access to your Apache server is forbidden from addresses other than 127.0.0.1 in httpd.conf (Apache’s config file) : <Directory “c:/wamp/www/”> Options Indexes FollowSymLinks AllowOverride all Order Deny,Allow Deny from all Allow from 127.0.0.1 </Directory> The same goes for your PHPMyAdmin access, the config file is phpmyadmin.conf : <Directory “c:/wamp/apps/phpmyadmin3.4.5/”> Options Indexes FollowSymLinks MultiViews AllowOverride … Read more

WAMP shows error ‘MSVCR100.dll’ is missing when install

The MSVCR100.dll file is part of the Microsoft Visual C++, redistributables. You can install them and see if this solves your problem. After you install the above check if your wamp installation is correctly setup. Search for “my wamp icon stays orange” posts. UPDATE 2019 Wampserver 3 requires Visual C++ Redistributable for Visual Studio 2012 … Read more

How can I send an email using PHP?

It’s possible using PHP’s mail() function. Remember the mail function will not work on a local server. <?php $to = ‘nobody@example.com’; $subject=”the subject”; $message=”hello”; $headers=”From: webmaster@example.com” . “\r\n” . ‘Reply-To: webmaster@example.com’ . “\r\n” . ‘X-Mailer: PHP/’ . phpversion(); mail($to, $subject, $message, $headers); ?> Reference: mail

Hata!: SQLSTATE[HY000] [1045] Access denied for user 'divattrend_liink'@'localhost' (using password: YES)