Pages: PreviousFirst...279280281282283...LastNext
Current Page: 281 of 291
Results 8401 - 8430 of 8721
11 years ago
RiggsFolly
You cannot run 2 web servers on the same machine as they both want to use port 80 to communicate with the client browser by default. If you are not using IIS I suggest you uninstall it. See the instructions on how to so it here
Forum: WampServer English
11 years ago
RiggsFolly
What is not working, be more precise please.
Forum: WampServer English
11 years ago
RiggsFolly
RE: Team Viewer To configure TeamViewer to not use ports 80 and 443 do the following:- Start TeamViewer Click Extras -> Options -> Advanced -> Press Show Advanced Options Button -> Scroll down to "Advanced Network Options" Tick the box that says "Dont use incoming port 80 and 443"
Forum: WampServer English
11 years ago
RiggsFolly
This is not really a WAMP issue. Try looking for a Wordpress help site.
Forum: WampServer English
11 years ago
RiggsFolly
This is not really a WAMP issue. Try looking for a Wordpress help site.
Forum: WampServer English
11 years ago
RiggsFolly
Read the first post in the message list Its Sticky Its called Error MSVCR100.DLL Solution
Forum: WampServer English
11 years ago
RiggsFolly
Do the "Test Port 80" from above !! Tell us what it says !!
Forum: WampServer English
11 years ago
RiggsFolly
phpMyAdmin is setup to only be allowed to run from localhost. ( security ) have a look as c:\wamp\alias\phpmyadmin.conf <Directory "D:/wamp/apps/phpmyadmin3.3.9/"> Options Indexes FollowSymLinks MultiViews AllowOverride all Order Deny,Allow Deny from all Allow from 127.0.0.1 </Directory> It specifies Allow from 127.0.0.1 ONLY You could try
Forum: WampServer English
11 years ago
RiggsFolly
You will need to put wamp ONLINE. When wamp is OFFLINE it only allows access from ip address 127.0.0.1, for security reasons obviously as wamp is designed to be a development environmant and not live When you PUT ONLINE it changes this to allow access from anywhere
Forum: WampServer English
11 years ago
RiggsFolly
Dont do that. backup the databases using the other mysql. uninstall the other mysql restore the backups to the wamp version of mysql
Forum: WampServer English
11 years ago
RiggsFolly
That depend on what you did to try and solve your problems Simplest solution is just restore them again, or re-create them.
Forum: WampServer English
11 years ago
RiggsFolly
Are you using the short form for the PHP tag. i.e. <? ... code .. ?> If you are try using <?php ... code ... ?>
Forum: WampServer English
11 years ago
RiggsFolly
Durk, Create a new directory under c:\wamp\www something like this c:\wamp\www\testing create a file called index.php in that new directory Here is a simple example <!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>My First Site</title> </head> <body> <div style="background-color:red;color:white"
Forum: WampServer English
11 years ago
RiggsFolly
There is help for this on the phpbb site Dont know why you couldnt have found this for yourself!
Forum: WampServer English
11 years ago
RiggsFolly
From the PHP Manual Note: In PHP 5 a new error level E_STRICT is available. As E_STRICT is not included within E_ALL you have to explicitly enable this kind of error level. So try changing to error_reporting = E_ALL & ~E_NOTICE You do not need to negate E_STRICT it would need adding if you wanted to use it.
Forum: WampServer English
11 years ago
RiggsFolly
Look for this section in your httpd.conf file # onlineoffline tag - don't remove Order Deny,Allow Deny from all Allow from 127.0.0.1 Add one new line Allow from 192.168.0 Assuming your subnet is 192.168.0 this will allow access to anybody internally connected to your router. NOTE: The "Put Online" and "Put Offline" menu options on Wamp
Forum: WampServer English
11 years ago
RiggsFolly
Are you sure that you uninstalled the previous wamp correctly? If Wamp stays red after doing a "Start All Services" then both apache and mysql have failed to start. Did you install some other web server in the (few months) you were not using wamp. Like XAMP or IIS?
Forum: WampServer English
11 years ago
RiggsFolly
What colour is your WAMP icon in the system tray? If its not GREEN then Apache is not running. Do a Wamp -> Apache -> Service -> Test Port 80 to see if something else on your machine is using port 80.
Forum: WampServer English
11 years ago
RiggsFolly
Matt, Use the links found on the Wamp Manager icon to edit php.ini, to make sure you are editing the correct one. Unfortunately there are more than one in the wamp env for other reasons we do no need to go into now. Also use the wamp manager 'Start all services' , 'Stop all Services', 'Restart all Services' options just to make sure you are restarting the correct services. Its just easier a
Forum: WampServer English
11 years ago
RiggsFolly
The console will be using a userid of 'root' are you using a userid of root in your application? If you are, thats 'very bad practice'.
Forum: WampServer English
11 years ago
RiggsFolly
In your php.ini does the error_reporting parameter contain E_STRICT If it does remove it.
Forum: WampServer English
11 years ago
RiggsFolly
Here it is
Forum: WampServer English
11 years ago
RiggsFolly
These are not wamp questions. Try a siriserver forum.
Forum: WampServer English
11 years ago
RiggsFolly
Changing Windows 7\Control Panel\Administrative Tools\Services\wampapache Properties to Startup type: Automatic, Just causes the Apache service to start automatically If you want Wamp Manager to start on boot just drag and drop the WampServer Icon on your desktop into the 'Startup" folder in the 'Start -> All Programs' list. Change wampapache back to 'Manual' from 'Automatic
Forum: WampServer English
11 years ago
RiggsFolly
Check C:\windows\system32\drivers\etc\ and look for a file called HOSTS (no extension) Make sure that it contains this line 127.0.0.1 localhost If it contains this next line comment it out ::1 localhost ( comment is a # in column 1 ) The hosts file is protected by the OS so you must open your editor using "Run as Administrator" or you will not be able to save your
Forum: WampServer English
11 years ago
RiggsFolly
Start a new thread please. Have you tried left click on wampserver -> start all services ??
Forum: WampServer English
11 years ago
RiggsFolly
I dont think these are errors, they are just informational messages
Forum: WampServer English
11 years ago
RiggsFolly
Ok what Operating system? What version of WAMP? Have you checked the windows event log?
Forum: WampServer English
11 years ago
RiggsFolly
Check your hosts file C:\windows\system32\drivers\etc\hosts it should have an entry 127.0.0.1 localhost comment out this line if it exists ::1 localhost #::1 localhost
Forum: WampServer English
11 years ago
RiggsFolly
Have you checked that you have uncommented the line in httpd.conf that includes the virtual host file? # Virtual hosts #Include conf/extra/httpd-vhosts.conf remove the # Better check that that included file still contains all your vhosts as well.
Forum: WampServer English
Pages: PreviousFirst...279280281282283...LastNext
Current Page: 281 of 291