access violation问题的解决办法!
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了access violation问题的解决办法!相关的知识,希望对你有一定的参考价值。
access violation at address 51070af8 in module '破解.exe'. read of address 0000809b
我在使用一个破解软件时,遇到此情况!16进错误!
希望给我详细的解决办法!
应该是内存访问受限,是漏洞了,
解决办法:)~
你最好是升级你的IE,或者重装你的IE,试试看了:)~
第一种可能:
去掉 php中 eaccelerator 的扩展
这样做能够解决您的问题,不过可能会加重系统负担
因为eaccelerator主要是为了节省系统资源的东西
具体做法是找到php.ini
如果是我帮您配置的,一般在c:/php/php.ini或者 c:/winnt/php.ini 或者c:/windows/php.ini
去掉
zend_extension_ts="c:\php\extensions\eaccelerator_win_xxx.dll"
eaccelerator.shm_size="16"
eaccelerator.cache_dir="c:\temp"
eaccelerator.enable="1"
eaccelerator.optimizer="1"
eaccelerator.check_mtime="1"
eaccelerator.debug="0"
eaccelerator.filter=""
eaccelerator.shm_max="0"
eaccelerator.shm_ttl="0"
eaccelerator.shm_prune_period="0"
eaccelerator.shm_only="0"
eaccelerator.compress="1"
eaccelerator.compress_level="9"
ea主要是在unix环境下开发的,但是作者忽略到windows实际上不像u主机那样,是没有u主机的那种内存共享机制的
这个bug已经提交给他们了,希望0.9.5能够解决
当然,如果您的机器这个问题不严重,建议还是保留,ea是一块非常优秀的php缓存+加速软件
配合zo使用,将会降低系统负担 50%-80%左右,提高负载能力、速度和效率 200%左右
第二种可能
session_save_path 需要设定一个实际的物理路径,并且该目录需要everyone的所有权限,类似u主机的0777
第三种可能
c:/winnt/temp 或者 c:/windows/temp
也需要everyone的所有权限,类似u主机的0777
第四种可能
您的内存严重不足,查看一下,如果有问题,请加内存,最好是一次加两条
比如加1g内存,最好是加2条一模一样的512m。否则没有启用双通道,效果也很一般
第五种可能
zendoptimizer和php的搭配不是很好
换个版本试试看
目前比较稳定的搭配是
php4.3.11+zo 2.5.10a
或者php4.4.1+zo 3.0 beta2
第六种可能
这种多属于用win2003的用户
他们在应用池中设定了限制
比如多长时间回收,最大使用内存多少等等
这些设置势必造成这个经典的php错误
木头经过数以百计的测试,敢担保问题会出现在这里。
Visual Studio 2019程序运行出现‘Access violation reading location‘的问题
文章目录
小结
在Visual Studio 2019的C++程序调试运行中出现’Access violation reading location’的问题,Unhandled exception at 0xxxxxxxxx (xxxx.dll) in xxxx.exe: 0xxxxxxxxx: Access violation reading location 0xxxxxxxxxx
,进行了解决。
问题及解决
在Visual Studio 2019的C++工程,编译是没有问题的,但是在程序调试运行时经常会出现’Access violation reading location’的问题,经过调试跟踪后,发现是由于变量被多个代码段访问到,可能出现了空指针的情况。这种错误也不是每次都发生,所以比较难找到原因和追踪到。具体原因可能是所访问的变量已经被其它部分代码改动了,具体建议如下:
Then verify that the values are not being unintentionally changed somewhere in the program by creating a Data Breakpoint for the pointer in question to make sure it isn’t being modified elsewhere in the program.
使用以下两个办法可以大大减少此类问题的发生。
方法一
在有可能发生变量使用冲突的地方加上try ... catch (std::exception ex)
来捕捉这个异常,异常被捕捉到后程序是可以接着运行的,不会出现退出的情况:
try
...
catch (std::exception ex)
std::cout << "Exception happened! " << ex.what() .
方法二
减少多段代码访问同一个变量的情况,我将没有必要的修改冲突变量的地方进行了注释删除。经过多次调试测试,没有再发生Access violation reading location
的问题。
Unexpected end of file error
Unexpected end of file error
这个问题的出现可以通过配置工程文件属性进行解决: 工程性性 -> C/C++ -> Precompiled Headers ->Create/Use Precompiled Header选择Not Using Precompiled Headers
.
vs2019 debug 出现: printf is ambiguous
printf is ambiguous
这个问题的解决比较奇怪:在代码中添加using namespace std;
,保存,问题消失,如果不行,删除using namespace std;
,保存,添加,保存,也就是再来一遍同样的操作。
using namespace std;
参考
Code Project: Access violation reading location
Stackoverflow: Catching access violation exceptions?Microsoft Doc: Structured Exception Handling (C/C++) Microsoft Doc: How Can I Debug an Access Violation?Stackoverflow: Unexpected end of file errorvs2019 debug 出现: printf is ambiguous
以上是关于access violation问题的解决办法!的主要内容,如果未能解决你的问题,请参考以下文章
在 Eclipse 中运行的 Java 程序导致 EXCEPTION_ACCESS_VIOLATION (0xc0000005)
解决 “access violation at address xxxxxxxxx”错误
关于“access violation”出错的问题,望高人指点,谢谢!
protel中Access violation at address 0CA613AC in module 'AdvSch.dll'. 怎么解决?