关于贸易程序保护
关于商业程序保护
坛里哪位朋友有这方面的经验,
程序是授权后才可以使用,且不开放源码。
现在Zend加密后可以破解么?
------解决方案--------------------
加密后需要解密环境支持,安装是个问题
如果买家用的是租用的空间,而网关不让你装怎么办?
我倒建议你发行紧凑格式的代码并辅以部分扰码就可以了(全部扰码运行速度下降太多)
没有几个人有兴趣去研究代码的
授权需要认证,你打算把认证做在哪里?
------解决方案--------------------
自己开放后台给人用 卖服务就行了,主机不给人黑你的代码就不会漏出去...
------解决方案--------------------
如果是有特定客户对象的,建议混合编程,一些关键部件不使用开源程序代码
------解决方案--------------------
加密后的程序一样可以传播倒卖
除非加解密软件都是你私有的,顺便再赚上一笔
只允许程序运行于指定ip地址的服务器
认证信息直接写进程序里,离开特定环境就没法用了
------解决方案--------------------
很难的...我在桌面程序加密上奋斗了好多年(不是研究加密,是加密程序),32位的也很难,不过32位有很多国际猛壳还是很顶事的,顶事是因为可以防那些级别不高的小破解者,真的碰上大牛在他们眼里也就是一坨.
那你就试试zend那个东西吧...除了那个貌似还有一些加载dll控件的加密,那个应该没那么容易解了。
------解决方案--------------------
流程是这样的,所以关键还是你自己说的加密,没有加密别人看了你的写法,只要能逆出算法 就有了注册机.
加油吧 哈哈哈 不如你写一整套东西来给我们吧 提供加密 提供授权认证。
------解决方案--------------------
以前很有用 我还去解过别人的代码。后来不是出了新版本了,不清楚现在是什么情况
------解决方案--------------------
------解决方案--------------------
秒解...傻瓜式的...
那时候是有个人把php写成了个桌面工具...你妹的 还要别人在桌面装上 apache+php 数据库倒没有 估计是想想装个mysql 就太蛋痛了,用了sqlite.当时是因为我想分析那个东西的数据传输原理 于是就去解了.
------解决方案--------------------
真的没有太好的办法.....
只能防低手不防高手了....
我觉得一般用盗版的(咳咳,是说服务器这边,客户端的东西,咳咳)也不是什么可能的潜在的用户......如果防住了他,他肯定就想法找别家防不住的,而不是付费.
自己加快更新, 谁装了盗版的, 打电话过去....我们已经升级到YY版本了,你还是XX版本...我们已经解决了NNN个bug,加了MMM个新功能....等等
------解决方案--------------------
卖服务,别卖产品。
------解决方案--------------------
既无团队又无经纪人,服务怎么卖?

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics











In MySQL, the function of foreign keys is to establish the relationship between tables and ensure the consistency and integrity of the data. Foreign keys maintain the effectiveness of data through reference integrity checks and cascading operations. Pay attention to performance optimization and avoid common errors when using them.

The main difference between MySQL and MariaDB is performance, functionality and license: 1. MySQL is developed by Oracle, and MariaDB is its fork. 2. MariaDB may perform better in high load environments. 3.MariaDB provides more storage engines and functions. 4.MySQL adopts a dual license, and MariaDB is completely open source. The existing infrastructure, performance requirements, functional requirements and license costs should be taken into account when choosing.

NGINX and Apache each have their own advantages and disadvantages, and the choice should be based on specific needs. 1.NGINX is suitable for high concurrency scenarios because of its asynchronous non-blocking architecture. 2. Apache is suitable for low-concurrency scenarios that require complex configurations, because of its modular design.

AI can help optimize the use of Composer. Specific methods include: 1. Dependency management optimization: AI analyzes dependencies, recommends the best version combination, and reduces conflicts. 2. Automated code generation: AI generates composer.json files that conform to best practices. 3. Improve code quality: AI detects potential problems, provides optimization suggestions, and improves code quality. These methods are implemented through machine learning and natural language processing technologies to help developers improve efficiency and code quality.

MySQL and phpMyAdmin can be effectively managed through the following steps: 1. Create and delete database: Just click in phpMyAdmin to complete. 2. Manage tables: You can create tables, modify structures, and add indexes. 3. Data operation: Supports inserting, updating, deleting data and executing SQL queries. 4. Import and export data: Supports SQL, CSV, XML and other formats. 5. Optimization and monitoring: Use the OPTIMIZETABLE command to optimize tables and use query analyzers and monitoring tools to solve performance problems.

session_start()iscrucialinPHPformanagingusersessions.1)Itinitiatesanewsessionifnoneexists,2)resumesanexistingsession,and3)setsasessioncookieforcontinuityacrossrequests,enablingapplicationslikeuserauthenticationandpersonalizedcontent.

To safely and thoroughly uninstall MySQL and clean all residual files, follow the following steps: 1. Stop MySQL service; 2. Uninstall MySQL packages; 3. Clean configuration files and data directories; 4. Verify that the uninstallation is thorough.

In MySQL, add fields using ALTERTABLEtable_nameADDCOLUMNnew_columnVARCHAR(255)AFTERexisting_column, delete fields using ALTERTABLEtable_nameDROPCOLUMNcolumn_to_drop. When adding fields, you need to specify a location to optimize query performance and data structure; before deleting fields, you need to confirm that the operation is irreversible; modifying table structure using online DDL, backup data, test environment, and low-load time periods is performance optimization and best practice.
