惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

I
InfoQ
G
Google Developers Blog
Engineering at Meta
Engineering at Meta
月光博客
月光博客
博客园 - 聂微东
博客园 - Franky
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
有赞技术团队
有赞技术团队
A
About on SuperTechFans
Microsoft Azure Blog
Microsoft Azure Blog
Blog — PlanetScale
Blog — PlanetScale
U
Unit 42
T
Tailwind CSS Blog
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
云风的 BLOG
云风的 BLOG
S
SegmentFault 最新的问题
F
Fortinet All Blogs
H
Help Net Security
J
Java Code Geeks
酷 壳 – CoolShell
酷 壳 – CoolShell
博客园 - 叶小钗
L
LangChain Blog
Martin Fowler
Martin Fowler
N
Netflix TechBlog - Medium

博客园 - Cheney Shen

如果将 macOS Mojave 降级为 macOS Sierra 或者更低版本 pip源提示“not a trusted or secure host” 解决 Window系统下MongoDB安装及远程访问 Windows下安装appium桌面版和命令行版 Command 'java' not found during running appium sudo npm install -g cnpm --registry=https://registry.npm.taobao.org Pycharm 中错误ImportError: No module named appium CURL并发测试POST和DELETE请求 curl如何发起DELETE/PUT请求?(备忘) iphone开源汇总(转) iphone开源汇总(转) python中的cursor[备忘] 在main函数执行之前和执行之后执行的方法 Intel苹果电脑Mac+Win+Linux多重系统启动(+公用分区)终极解决方案(备忘) IGT笔试题,正整数N等于M个不同的正整数之和的问题 如何通过一个结构体成员变量的地址找到该结构体的首地址?[备忘] 为特定应用程序关闭恢复窗口功能 [Mac OS X Lion][转] System Events, Key Code and Keystroke from Doug's AppleScripts Mac下Perl脚本如何运行
Ubuntu 11.10下安装配置Zend Studio 9.0破解版详细步骤
Cheney Shen · 2011-12-16 · via 博客园 - Cheney Shen

去官网下载ZendStudio, 我是64位的, 那就是ZendStudio-9.0.0-x86_64.tar.gz

解压ZendStudio-9.0.0-x86_64.tar.gz 到 安装目录 /usr/local/, 命令如下:

sudo /usr/local/ZendStudio/ZendStudio

tar -zxvf ZendStudio-9.0.0-x86_64.tar.gzz /usr/local/

//设置ZendStudio目录权限为当前用户

sudo chown -R husw:husw eclipse

//如果你要用root启动的话,设置如下

sudo chown -R root:root eclipse

//命令行启动  解压完成即可启动的

下载: com.zend.php.core_9.0.0.201111081531.jar 覆盖到安装Zend Studio 9.0的plugins下。

启动Zend Studio 9.0,输入License key:34E606CF10C3E4CF202ABCEAA9B0B7A64DD2C5862A514B944AAAB38E3EB8A5F2CD735A2AB4CF9B952590EFA62BA0AB2B3E5D99C33C55309EE143165AC7F1817D626574615F3B32312F31312F323031313B392E303B3030313B313B3330

汉化官方:

http://download.eclipse.org/technology/babel/update-site/R0.9.0/helios

http://download.eclipse.org/technology/babel/babel_lan

创建Ubuntu的ZendStudio菜单(可选)

sudo gedit /usr/share/applications/ZendStudio.desktop

添加如下内容:

[Desktop Entry]

Version=1.0

Encoding=UTF-8

Name=ZendStudio

Exec=ZendStudio

TryExec=ZendStudio

Comment=ZendStudio

Exec=/usr/local/ZendStudio/ZendStudio

Icon=/usr/local/ZendStudio/icon.xpm

Terminal=false

Type=Application

Categories=Application;IDE;PHP;

此时你已经可以在/usr/share/applications/中看到Eclipse图标

创建启动器

sudo gedit /usr/bin/eclipse

添加如下内容

#!/bin/sh

export MOZILLA_FIVE_HOME="/usr/lib/mozilla/"

export ZENDSTUDIO_HOME="/usr/local/ZendStudio"

$ZENDSTUDIO_HOME/ZendStudio $*

添加可执行权限

sudo chmod +x /usr/bin/ZendStudio