Pages: PreviousFirst...270271272273274...LastNext
Current Page: 272 of 291
Results 8131 - 8160 of 8721
11 years ago
RiggsFolly
Have you also installed the ocacle client??? Read this it may help
Forum: WampServer English
11 years ago
RiggsFolly
If wamp manager icon is yellow/orange then on of the services ( apache or mysql ) has not started. Its probably apache that has not started. This is usually because another process has grabbed port 80 before you get to start wamp. Run this test please: left click wamp manager icon _ Apache -> Services -> Test port 80 This should run a command window and tell you what is usig por
Forum: WampServer English
11 years ago
RiggsFolly
Is this line correct? if ($this->link = @$connect_function($this->server, $this->username, $this->password)) { The @$connect_function should be @connect_function ( without the $ which would make connect_function a variable that php probably cannot find?? Look in the php_error.log for errors
Forum: WampServer English
11 years ago
RiggsFolly
What colour is your wamp manager icon in the system tray??
Forum: WampServer English
11 years ago
RiggsFolly
What version of WAMP did you install
Forum: WampServer English
11 years ago
RiggsFolly
Steve how do you reset the root password then?
Forum: WampServer English
11 years ago
RiggsFolly
So you have at some time added a password to the root userid, now mysql expects you to use the password. If you cannot remember the password you set, you will have to save your website code somewhere, uninstall wamp, make sure all the wamp folder and subfiolders are deleted, and then re-install wamp and then put your website coed back into the new wamp fodler.
Forum: WampServer English
11 years ago
RiggsFolly
Check out this it should get you going
Forum: WampServer English
11 years ago
RiggsFolly
Can I suggest a couple of things. Edit httpd.conf ( using the wampmanager menu links ) look for the "Listen" parameter change it from Listen 80 to Listen 0.0.0.0:80 This will tell apache to only listen on the IPV4 network Then edit my.ini ( using the menu link on wampmanager ) and add this bind_address parameter to the section bind_address = 127.0.0.1 Thi
Forum: WampServer English
11 years ago
RiggsFolly
Silly question but you are running this through a browser arnt you? You are not clicking on a file name in explorer are you? When you get php displayed in the browser in means that Apache has not passed the file through the PHP interpreter. As you have the proper <?php tag it should be fine ( WAMP does not have short-tags turned on by default). Questions: Have you messed with the ap
Forum: WampServer English
11 years ago
RiggsFolly
Not quite sure what you are trying to do here !!!! Maybe test a piece of code that will be called via AJAX ??? If you are getting the "file:///C:/Users/lakshmanan.palani/Downloads/servertime%20(22).php" then you are probably clicking on a file using explorer. THIS IS NOT THE WAY. Open your browser, keyin This is how you run a web page via the Apache server and PHP i
Forum: WampServer English
11 years ago
RiggsFolly
Error 500 normally means you have an error in your Apache configuration or your PHP configuration. Look at your apache error log and php error log for clues. If that shows nothing look at your Windows Event Viewer and see if either apache or php is reporting errors. If it was working and you changed httpd.conf or php.ini then undo your changes. If it works again after undoing the changes, ma
Forum: WampServer English
11 years ago
RiggsFolly
left click wampserver -> PHP -> PHP.ini Find the param upload_max_filesize = 2M the default is 2Meg Change 2 to something else
Forum: WampServer English
11 years ago
RiggsFolly
I guess this may be a bit of a clue 120926 16:03:42 Can't start server: Bind on TCP/IP port: No such file or directory 120926 16:03:42 Do you already have another mysqld server running on port: 3306 ? 120926 16:03:42 Aborting So do you have another MySQL server running? Did you try XAMPP or installing it from the MySQL site before trying WAMP?
Forum: WampServer English
11 years ago
RiggsFolly
Sorry I did not read your original request properly. Are you using wamp??
Forum: WampServer English
11 years ago
RiggsFolly
Look in the mysql error log wamp -> MySQL -> MySQL Log What does it say
Forum: WampServer English
11 years ago
RiggsFolly
I guess if netbean launches a command window you are going to need to set up the environment so it knows about the PHP CLI In the termnal window just keyin >php If it says something like cannot find it then try this. I use a bat file with this in it echo off path=%path%;d:\wamp\bin\php\php5.3.13;d:\wamp\bin\mysql\mysql5.5.24\bin php -v mysql -V Make sure you change the php
Forum: WampServer English
11 years ago
RiggsFolly
No your HOSTS file should look like this 127.0.0.1 localhost 127.0.0.1 moodle You need both lines.
Forum: WampServer English
11 years ago
RiggsFolly
Have a look at this there is a section on changing the password and removing the root user.
Forum: WampServer English
11 years ago
RiggsFolly
Change this hosts looks like 127.0.0.1 localhost 192.168.1.3 moodle to 127.0.0.1 localhost 127.0.0.1 moodle
Forum: WampServer English
11 years ago
RiggsFolly
Try this: HowTo: Create Virtual Hosts in WAMP BEFORE DOING ANY OF THIS PLEASE ENSURE APACHE AND MYSQL ARE WORKING PROPERLY FIRST!!! 1. Create a new folder outside the wamp directory structure. for example C:\websites but this can be on any disk drive visible to the PC running wamp 2. Create a subfolder in c:\websites for each site you want to create. for example
Forum: WampServer English
11 years ago
RiggsFolly
Ok I think what is happpening here is that the MySQL error ( --skip-locking) is crashing your mysql server and therefore there is no database to respond to your connection request in the PHP code. The last time I saw this --skip-locking problem was when there was an old my.ini file somewhere on the system. Do a search for my.ini and also my.cnf, if you find either in any location OTHER TH
Forum: WampServer English
11 years ago
RiggsFolly
Can yo be more specific please.
Forum: WampServer English
11 years ago
RiggsFolly
There should be no reason to change the port number. If you change the port number as suggested by Elamathy and Apache now starts it just proves that something else is using port 80. Find out what that is and then make a decision as what to do about it. If you change the port number you will have to append that on all your address's Like ITS A MAJOR PAIN! AND TOTALLY UNNECESSA
Forum: WampServer English
11 years ago
RiggsFolly
Try changing RewriteRule ^(.*).htm$ viewprofile.php?id=$2 to RewriteRule ^(.*).htm$ viewprofile.php?id=$1 You have only one set of () so you have only created one variable
Forum: WampServer English
11 years ago
RiggsFolly
It should be no problem at all.
Forum: WampServer English
11 years ago
RiggsFolly
Check the colour of your WAMP icon in the system tray. It should be Green. If not tell us what colour it is.
Forum: WampServer English
11 years ago
RiggsFolly
Bapi. I am guessing that steve1234 has NOT BEEN WAITING 1 year and 9 months for your reply, but how knows some people are very patient. Also your answer was very dangerous as this would allow anybody in the universe access to try and crack this guys password. It would be much better if he created a userid in mysql that was allowed access from 1 specific external ip address or possibly 2
Forum: WampServer English
11 years ago
RiggsFolly
If the Icon is orange than one of the services is not running and its probably Apache. The usual reason is that some other process has captured port 80 before you get the chance to start WAMP. Left click wampmanager -> Apache -> Service If the option "Start resume Service is available (text in black) then wampapache has not started. Do this Left click Wampmanager -> Apac
Forum: WampServer English
11 years ago
RiggsFolly
There are 2 versions one for x86(32bit) and one for x64(64bit). If you are using windows 64 bit download both it easier than working out if you are using the 32bit or 64 bit wamp.
Forum: WampServer English
Pages: PreviousFirst...270271272273274...LastNext
Current Page: 272 of 291