Apache Internal Server Error
当使用 Apache 作为服务器,使用 cgi 程序接收来自 web 端的访问时,出现如下错误:
Internal Server Error
The server encountered an internal error or misconfiguration and was unable to complete your request.
Please contact the server administrator, you@example.com and inform them of the time the error occurred, and anything you might have done that may have caused the error.
More information about this error may be available in the server error log.
debug 了好久,最后发现是自己的 cgi 程序——generate_license 没有可执行权限。这就很尴尬了,使用命令 chmod +x generate_license 即可解决。
Apache Internal Server Error的更多相关文章
- apache Internal Server Error 的几个问题
		Internal Server Error The server encountered an internal error or misconfiguration and was unable to ... 
- apache Internal Server Error 解决方法
		https://blog.csdn.net/qq_33684377/article/details/78536548 https://blog.csdn.net/LJFPHP/article/deta ... 
- Nagios Apache报Internal Server Error错误的解决方法
		今天配置Nagios的时候遇到了一些麻烦,前面的步骤都一切顺利,nagios运行后,可以看到nagios的主页,但点击左边的菜单时总是提示Internal Server Error错误.错误如下: v ... 
- PHP如何让apache支持.htaccess 解决Internal Server Error The server …错误
		TP框架 打开 www.newtp.com/index.php/Home/Index/abc出现 如下错误: Internal Server Error The server encountered ... 
- org.apache.solr.client.solrj.impl.HttpSolrServer$RemoteSolrException: Internal Server Error 错误
		Solr报错: { "responseHeader": { "status": 500, "QTime": 11 }, "erro ... 
- 如何让apache支持.htaccess 解决Internal Server Error  The server …错误
		如何让apache支持.htaccess 解决Internal Server Error The server …错误 文章来源:小灰博客| 时间:2013-12-25 12:17:08| 作者:Le ... 
- wampserver apache 500 Internal Server Error解决办法
		Internal Server ErrorThe server encountered an internal error or misconfiguration and was unable to ... 
- php Internal Server Error
		Internal Server Error The server encountered an internal error or misconfiguration and was unable to ... 
- CI当开启URL重写的时候,报错500 Internal Server Error
		Internal Server Error The server encountered an internal error or misconfiguration and was unable to ... 
随机推荐
- 第37讲:List的foldLeft、foldRight、sort操作代码实战
			其实flodLeft和foldRight就是折叠操作,我让们看下下列的函数 折叠操作 def sum(xs:List[Int]):Int = ( 0 /: xs)(_ +_) def p ... 
- ftp客户端命令使用简记
			OS:windows8.1评估版 程序和功能 tftp客户端勾选上 Win+R:运行,键入cmd,键入ftp -help 如下图: 使用ftp客户端可以做的事:将文件传送到运行FTP服务器服务(经常称 ... 
- Heroku空项目  Git本地Push代码错误  以及 Heroku Web启动错误
			在Eclipse下建了一个"Blank Heroku App", 然后将自己写好的JS Web练习代码直接复制放到了这个空项目下, 由于Eclipse下的git工具不太会用, 导致 ... 
- KALI LINUX WEB 渗透测试视频教程—第十九课-METASPLOIT基础
			原文链接:Kali Linux Web渗透测试视频教程—第十九课-metasploit基础 文/玄魂 目录 Kali Linux Web 渗透测试视频教程—第十九课-metasploit基础..... ... 
- 【转载】关于initrd.image的处理
			initrd (boot loader initialized RAM disk) Linux2.6 内核支持两种格式的 initrd,一种是 linux2.4 内核那种传统格式的文件系统镜像-ima ... 
- [ucgui] 对话框4——模式消息窗口
			>_<" 这里实现点击灰色窗口的按钮出现一个模式消息窗口,点击OK之后才能再聚焦到灰窗口:点击灰窗口除了按钮的地方,弹出一个非模式窗口. 
- C#与数据库访问技术总结(九)之实例
			实例 更新记录 在本例子中,建立一个供用户输入学生学号和姓名的文本框和几个对应不同操作类型的更新信息按钮,当用户输入信息以后单击相应的按钮则执行相应的操作.在此实例中还将接触到服务器信息验证的相关知识 ... 
- nosql/nodejs基础
			nosql定义:nosql--no only sql 目前流行的非关系型数据库:mongodb,redis,cassandra 非关系型数据库和内存存储hashmap数据结构有什么区别?hashmap ... 
- intellij代码跳转后跳回
			跳转快捷键: ctrl+b 跳回的快捷键默认为 ctrl+alt+left 然而在我的电脑上并没有卵用,所以自己设置回退的快捷键,设置位置为: File/Setting/Keymap 选择 Main ... 
- java防止脚本注入,通过拦截器实现
			1:利用action过滤 package com.tsou.comm.servlet; import java.util.Enumeration; import java.util.Map; impo ... 
