wampserver

Backup mySQL databases from localhost running on Wamp server

ぐ巨炮叔叔 提交于 2019-12-06 16:28:59
For a while now I've been trying to automate the backup of some databases I've got running in my localhost. I have a couple of personal apps running on my PC and I would like to back their db's continuously so as not to lose any of that info (because it's not online, so there's always the issue with my PC breaking down or a virus wiping everything out, etc.) So I've been looking for a way to do this for some time now. I've continuously hit walls due to the fact that this is a local virtual server. But finally I seem to have found a way to do it. It works perfectly at the output end. I mean, I

Can't access apache web apps locally using IP or PC Name

自古美人都是妖i 提交于 2019-12-06 11:53:27
I installed Wamp Server on Windows 8. I then installed a php web application. I can access it by going http:// localhost/webapp or http:// localhost/phpmyadmin I want to be able to access this web app from different computers on the same network. The problem is when I try to visit my web app via this http:// 192.168.133.221/webapp (which is my local ip address) or http:// mypc/webapp (which is my PC's name) - I get the following error 403 Forbidden You don't have permission to access /fengoffice on this server. I have disabled both windows firewall and Kaspersky's firewall but still getting

wampserver homepage only visible from localhost

↘锁芯ラ 提交于 2019-12-06 11:36:26
问题 Recently I used WAMP server to set up a server environment in a Windows machine. Everything works great, but I have a little problem: everyone can access the wampserver homepage, therefore they can see other webpages hosted in the same server, the server file system, etc . The URLs of the webpage have the following format: hostname/project1 , hostname/project2... The main problem is that, anyone can see all the projects that are hosted by going to the direction of the hostname because this

Virtual Host with WAMP

青春壹個敷衍的年華 提交于 2019-12-06 08:54:39
问题 I'm using Wamp 2.2, edited conf/extra/httpd-vhosts.conf edited this file to add VirtualHosts , but when I un-commented line in httpd.conf to include httpd-vhosts.conf file, after restarting Wamp doesn't starts. If I revert changes is works fine. Any ideas why is this happening? This is code I'm using in httpd-vhost.conf : <VirtualHost *> ServerAdmin admin@localhost.com DocumentRoot "C:/wamp/www" # change this line with your htdocs folder ServerName localhost ServerAlias localhost <Directory

how to reset wamp server password

夙愿已清 提交于 2019-12-06 08:52:56
问题 I've put the password in the main phpmyadmin and not one of the databases. How can I even access it if can't even have the chance to input the password. 回答1: Take a look at reseting the MySQL root password here. UPDATE mysql.user SET Password=PASSWORD('MyNewPass') WHERE User='root'; FLUSH PRIVILEGES; 回答2: First check if you assigned empty password. There is a high probability not to assign password when you install locally. 回答3: solution is on this page wamp server mysql user id and password

CodeIgniter: Removing “index.php” in URL on WAMP

好久不见. 提交于 2019-12-06 08:06:59
问题 In CodeIgniter, I want to remove the "index.php" in the URL, on my localhost (WAMP). For example, http://localhost.com/ci/index.php/controller/function to http://localhost.com/ci/controller/function I have changed $config['index_page'] = 'index.php'; to $config['index_page'] = ''; My .htaccess file (which is located in the root directory, where the index.php lies) is as follows: <IfModule mod_rewrite.c> RewriteEngine On RewriteBase /igniter #Removes access to the system folder by users.

Can I run an Angular 6 project on WAMP Server?

隐身守侯 提交于 2019-12-06 07:06:59
问题 I am a PHP developer and also I have developed Angular 6 apps using Node.js backend. But, currently I am working on a project which should run an Angular 6 app with a PHP 7 back-end. The reason is that, the API was written in PHP. I wish to develop my Angular app in WAMP server default directory. wamp64/www/my_project So my questions are, Will the Angular 6 app run? Because it needs another server and normally it is http://localhost:4200/. Would there any server (localhost) collisions? If it

How to repair wamp server without re-installing?

好久不见. 提交于 2019-12-06 05:51:14
After making changes in php.ini by uncommenting extension=php_openssl.dll My Windows-8 system got shutdown due to power failure and later i use to get this error when i try to start wamp server Later visiting some link i added the below code to wampmanager.ini file as it was empty Now the first error got fixed and now throwing this error mentioned below: Later i also installed visual c++ 2008 to fix this error but unsuccessful. I have many important databases which i have not taken back up also. I am trying to repair this wamp server without re-installing. Can anybody please assist me with

Restoring MySQL Databases when reinstalling Wamp

亡梦爱人 提交于 2019-12-06 05:07:52
问题 I am attempting to restore my old databases to a new Wamp installation. However, I did not take a backup of Mysql files before I did this. Thankfully the uninstallation has not deleted all the files, but in my data folder I have : 1) All the databases (As folders) 2) auto.cnf There are no ib* files in the old folder. Is it still possible to restore my databases somehow? I have tried to replace the entire mysql5.6.17 folder ( there has been no change of version between the installations ), but

wamp 无法打开localhost:The requested URL / was not...

孤人 提交于 2019-12-06 03:19:51
wampserver 的Apache启动错误提示:The requested URL / was not found on this server. 今天在做本地 PHP 项目的时候,想把之前 wampserver的本地虚拟服务器环境 访问方式改为本地localhost访问方式,打开 wampserver 的Apache中的http://localhost/显示如下错误,提示The requested URL / was not found on this server.(在服务器上找不到请求的URL),百度各种方法都未解决,很多人的方法都是不加验证的复制粘贴别人的东西,根本就不能解决问题,这里顺便鄙视一下某度。 后来还是在老美的网站上找到了一句话: 提示把Apache的配置文件httpd.conf中的Include conf/extra/httpd-vhosts.conf改为#Include conf/extra/httpd-vhosts.conf,顿时恍然大悟,肯定是因为之前我配置了“ wampserver的本地虚拟服务器环境 ”,而现在我想把本地项目访问从虚拟环境访问(www.wanysys.cc这种方式)改为用http://localhost/这种方式访问,所以导致服务器找不到用户请求的URL,最后,按照上面的提示更改后重启 wampserver 的Apache服务,发现