Pages: PreviousFirst...273274275276277...LastNext
Current Page: 275 of 291
Results 8221 - 8250 of 8721
11 years ago
RiggsFolly
Have you tried putting the wamp server online. By default ( in offline mode ) wamp will only listen to localhost ( 127.0.0.1 ) If you put online it will listen to all address's wampserver -> Put Online
Forum: WampServer English
11 years ago
RiggsFolly
More specific details required. What error are you getting Look in the php error log and the apache error log
Forum: WampServer English
11 years ago
RiggsFolly
It could be a number of things but it is probably that apache is Listening on the W8 IPV6 default localhost address which is ::1 1. edit httpd.conf, using the link on the wampserver icon wampserver -> apache -> https.conf find the line > Listen 80 and change to > listen 0.0.0.0:80 This will force apache to listen on IPV4 and make the pre-configured phpMyAdmin security confi
Forum: WampServer English
11 years ago
RiggsFolly
Makes the browser ask for a valid Userid/password set when you run the phpMyAdmin link and does not need the new userid/password set to be stored in the config file. edit :\wamp\apps\phpmyadminX.Y.Z\config.inc.php Change $cfg['Servers'][$i]['user'] = 'root'; TO $cfg['Servers'][$i]['user'] = ''; leave the ['password'] entry as ''; Change $cfg['Servers'][$i]['AllowNoPassword'] = true; T
Forum: WampServer English
11 years ago
RiggsFolly
What is configiration storage: You probably do not need it, so dont bother. Its just some extra features you probably dont need until you are more familiar with mysql and phpmyadmin. How to upgrade: Not sure why you would bother but you know best. Do it at your own risk though. PS. Wamp Server is not a server, its just a tool that installs Apache (a web server), MySQL ( a da
Forum: WampServer English
11 years ago
RiggsFolly
What colour is your wamp server icon?
Forum: WampServer English
11 years ago
RiggsFolly
I am sorry but you obviously dont have the knowledge to complete the task you have set yourself. Your problems appear to be related to Joomla and not wamp so I suggest you start reading through the joomla documentation, there is lots of it.
Forum: WampServer English
11 years ago
RiggsFolly
Get your developer to get you started.
Forum: WampServer English
11 years ago
RiggsFolly
Yea sorry you are right. my mistake.
Forum: WampServer English
11 years ago
RiggsFolly
If you include a file without a .php extension it will not run the php code in that file. <?php include( "xxx.inc" ); // does not work if the content is php include ( "xyz.inc.php" ); // does work
Forum: WampServer English
11 years ago
RiggsFolly
This appear to say its not possible: However this is saying it can be done provided the correct bits have been compiled into the apache code: If you check in the c:\wamp\bin\apache\Apache2.2.22 folder in the OPENSSL-README.txt it says that openssl 1.0.1c has been used. I think it is safe to say its worth following the second doc and having a go. Please write up your finding when y
Forum: WampServer English
11 years ago
RiggsFolly
Uninstall IIS. Do a google search for "Uninstall IIS"
Forum: WampServer English
11 years ago
RiggsFolly
There is no "Of course" about it. It had to be asked. So I assume that the WAMPManager icon in the system tray is GREEN? If it is green... What happens when you key "localhost/pandora" into a browser and Wampserver is running
Forum: WampServer English
11 years ago
RiggsFolly
Racs, Start a new thread, Tell us all the problems you had and everything you have change up to now to solve them. Tell us what version of windows you are runnning Tell us what version of WAMP Server you installed. Describe your specific problem rather than jumping on another thread.
Forum: WampServer English
11 years ago
RiggsFolly
Have you started WAMPServer. It has to be running to start the Apache and MySQL servers.
Forum: WampServer English
11 years ago
RiggsFolly
Do you mean referential integrity type relationships or just simple store a unique key from one table in another to indicate parent child relationships? Try the MySQL documentation or even the phpMyAdmin documentation.
Forum: WampServer English
11 years ago
RiggsFolly
Ahh I think I see what you mean now. You are querying the speed when you are using the system inside your own network, ie not from the internet. Surely the speed there will be controlled by the speed of the switch in the router and the capabilities of your network cards, which I am guessing will be the fairly standard 10/100 ethernet cards. So max speed throught your network will be 100 mbp
Forum: WampServer English
11 years ago
RiggsFolly
dbtipo, It is best to create a different admin account completely, every hacher in the world knows about root, so its easier to try and guess the password of an account you know exists. Create a new account, for example "admin" but thats a bit easy to guess as well! Set it up with all the root privilages, and change the phpMyAdmin references, test it!!! And then remove all 3
Forum: WampServer English
11 years ago
RiggsFolly
Steve is of course right, but you can get round it by editing the HOSTS file on each of your networked PC's You need to know the IP of the PC running the WAMP server and that will need to be a static address. Then do this in the HOST files of each PC you want to see your domainnames 192.168.0.10 test.localhost 192.168.0.10 myname.test.com The hosts file is what was used by OS's before
Forum: WampServer English
11 years ago
RiggsFolly
Its not a factor of the old dell. Dont forget.... when you test the speed of your internet connection from the computer in question the UPLOAD speed is the download speed for external users ( not the download speed ). Upload sppeds are always a lot slower with ADSL unless you have a Syncronous Data Subscriber Line, and they cost a lot more and are not easy t get access to. When you access
Forum: WampServer English
11 years ago
RiggsFolly
thats a relief, I thought I might have offended there and that was not my intension.
Forum: WampServer English
11 years ago
RiggsFolly
Jp, So why did you write Quote But!!! and I say but! Webgrind and sqlbuddy still gives me 403 so have to digg a little bit deeper and see if I can find where the problem is. If i find it i'll share the solution
Forum: WampServer English
11 years ago
RiggsFolly
Hey JP, One question, are you sure you want Webgrind and SQLBuddy to be available to all your site visitors?? Anyway, thats your decision. Look in C:\wamp\alias\sqlbuddy.conf and C:\wamp\alias\webgrind.conf You will see these 2 files control access to these 2 apps They have their own Deny from all Allow from 127.0.0.1 Which you are at liberty to change if you think its a g
Forum: WampServer English
11 years ago
RiggsFolly
Hit the books and tutorials. Download some freely available apps and examine the code. There is no nice way to say it but your code shows this is your first attempt at coding. Something you need to know: On first page load the btnLogin will not even exist in the POST array. In fact there will be no POST array at all because nothing hsa yet been posted back to the server from the f
Forum: WampServer English
11 years ago
RiggsFolly
Good, I think you need to hit the books man. You are getting that message because your PHP code is after your HTML and in this specific case your php is calling the header() funtion. By the time you get to run the PHP the server has already sent headers and most of the page to the browser. Order your pages like this <?php ... code ... ?> <!DOCTYPE html PUBLIC "
Forum: WampServer English
11 years ago
RiggsFolly
Try use databasename; at the top of your restore script
Forum: WampServer English
11 years ago
RiggsFolly
Nancy, The answer is YES you have to edit the httpd.conf file every time to be as specific as you say you want to be. You can do this by the way. # onlineoffline tag - don't remove Order Deny,Allow Deny from all Allow from 127.0.0.1 Allow from 101.101.101.101 # to allow a specific ip Allow from 192.168.0 # to allow a whole subnet i.e. 192.168.0.0 to 192.168.0.255
Forum: WampServer English
11 years ago
RiggsFolly
Did you reboot after changing the hosts file. Or do this from a command prompt launched with "Run as Administrator" >net stop "DNS Client" >net start "DNS Client" The quotes are required. If you dont know how to launch a command prompt as Administrator just reboot.
Forum: WampServer English
11 years ago
RiggsFolly
I see you are online, do you have the time for a TV session? If so send me a Private Message with your TV ID and Password
Forum: WampServer English
11 years ago
RiggsFolly
OK, Is your game server running on wamp on the same PC as your new site?
Forum: WampServer English
Pages: PreviousFirst...273274275276277...LastNext
Current Page: 275 of 291