Questions tagged «wamp»

WAMP是指使用Windows,Apache Web Server,MySQL数据库和PHP编程语言的Web开发软件堆栈。与LAMP比较。

7
从互联网访问本地主机[关闭]
关闭。此问题不符合堆栈溢出准则。它当前不接受答案。 想改善这个问题吗?更新问题,使其成为Stack Overflow的主题。 3年前关闭。 改善这个问题 我需要在短时间内转发本地主机以进行测试。必须从公共互联网访问它。 我该如何实现? 谢谢。

13
项目链接在Wamp Server上不起作用
我正在另一台计算机上安装Wamp Server,以运行中型数据库和UI。我已成功阻止IIS并将服务器路由到Localhost:8080。但是,每当我尝试从localhost主页访问我的项目时,都在www文件中;我被重定向到页面未找到错误。 当我将鼠标悬停在链接上方时,目录始终显示为“ http:// ProjectFolderNameHere /”。应该是“ http:// LocalHost:8080 / ProjectFolderNameHere /”时。如何使链接正常工作? 我的机器在Windows 7 Home Edition 64位上运行,并且我已经禁用了Microsoft的IIS。
85 php  mysql  apache  wamp  wampserver 

6
内部服务器错误-htaccess
我有一个htaccess文件,它在主机上可以正常运行,但是当我将其放在本地时,它显示了此错误: 内部服务器错误 服务器遇到内部错误或配置错误,无法完成您的请求。 请与服务器管理员admin @ localhost联系,并告知他们错误发生的时间,以及您可能做的任何可能导致错误的事情。 服务器错误日志中可能会提供有关此错误的更多信息。 我在错误日志文件中找到此警报: [2012年4月17日星期二10:02:25] [警报] [客户端127.0.0.1] D:/wamp/www/jivan/sql/.htaccess:无效的命令“标头”,可能是拼写错误或由未包含的模块定义的服务器配置 这是我的htaccess文件代码: RewriteEngine On AddDefaultCharset utf-8 RewriteRule ^([0-9-]+)/keyword_show.html$ keyword_show.php?keyword_id=$1 RewriteRule ^page_(.*).html$ page.php?url=$1 RewriteRule ^([0-9-]+)/(.*)/(.*)/(.*).html$ $2.php?advertisement_cat=$1&id=$3&pagenumber=$4 RewriteRule ^([0-9-]+)/(.*)/(.*).html$ $2.php?advertisement_cat=$1&pagenumber=$3 RewriteRule ^([0-9-]+)/(.*).html$ $2.php?advertisement_cat=$1 # cache images and flash content for one month <FilesMatch ".(flv|gif|jpg|jpeg|png|ico|swf)$"> Header set Cache-Control "max-age=2592000" </FilesMatch> # cache …
84 .htaccess  wamp 

11
如何在WAMPServer中从Windows命令行运行PHP
我是php的新手,想从命令行运行php。我已经安装了WAMP,并将“系统变量”设置为我的php文件夹(是C:\wamp\bin\php\php5.4.3)。 当我转到Run-> CMD->输入php -a并按Enter时,它说interactive mode enabled。但是当我写的echo 'Hi';时候什么也没显示。 当我键入php -a并按回车键时,我什至看不到“ php>”之类的东西。


17
修复对phpMyAdmin用户'root'@'localhost'的访问被拒绝的问题
我在PC上使用WAMP Server 2.2。在phpMyAdmin(版本5.5.24)中,我编辑了“ root”用户(带有“ localhost”主机),并为其指定了密码“ root”。原来,这是我要恢复的重大错误。现在,当我转到localhost / phpmyadmin /时,我会在左侧看到数据库菜单,但是主框架显示如下错误: #1045 - Access denied for user 'root'@'localhost' (using password: NO) phpMyAdmin tried to connect to the MySQL server, and the server rejected the connection. You should check the host, username and password in your configuration and make sure that they correspond …
74 php  mysql  phpmyadmin  wamp 
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.