aptana

Update Aptana to 3.3.0.201212131616-13122012161933 has hidden all my connections?

淺唱寂寞╮ 提交于 2019-12-06 12:32:29
I´ve updated Aptana Studio 3 to version 3.3.0.201212131616-13122012161933 and no longer have success to my connections. Where can I find them and recover? I'm using Aptana as standalone, not as eclipse plugin. Ok, a new problem results. I´ve manually retyped all my Connections, so that I did my works yesterday. But today I started Aptana Studio and all my Connections are gone again! They are choosable again in the Connection Manager, but after another restart, they are gone again. Is there a property which I have to enable or disable to keep aptana the connections right to the projects? thanks

Aptana Studio 3 - code coloring like in Dreamweaver

半城伤御伤魂 提交于 2019-12-06 11:55:20
I'm trying to use Aptana Studio 3 instead of phpEd. But I'd like to have the code coloring like in Dreamweaver. I made these changes in phpEd, but I can't find where to change it in Aptana. Also, I installed the jquery bundle, but I can't to get it working... Thanks for your help. Preferences:Aptana:Themes. Figuring out what keyword corresponds to what display object can be a bit tricky, but it is all there. There's actually a ticket already filed to add a theme that matches Dreamweaver: https://aptana.lighthouseapp.com/projects/35272/tickets/1508-create-dreamweaver-color-theme I'm looking at

How to understand browser icons in PHPStorm content assist?

荒凉一梦 提交于 2019-12-06 11:51:45
In the image attached below, in the (3) light blue content assist box, on the left there are 5 Firefox browser icons. What do they mean? Seemingly they mean those methods are only supported in Firefox. But of what versions ? And if a certain element is supported in both Firefox and Chrome, but not IE , how will it show (as there is only 1 column space for 1 icon)? (image from http://www.jetbrains.com/phpstorm/webhelp/familiarize-yourself-with-phpstorm-editor.html ) On the other hand, in Aptana, there are different columns of browser icons, showing levels of support by light up or not. (image

Python unicode write to file crashes in command line but not in IDE

烈酒焚心 提交于 2019-12-06 11:03:10
I'm having a problem wherein my Python 2.7.3rc2 code runs fine through an IDE (Aptana Studio 3 with PyDev), but crashes when I either double-click the .py file or try to run it from the Windows command line. The problem line is where I try to write a string containing unicode characters to a file. The IDE has no problem with it, and writes the file properly with the unicode characters. The command line version complains that it can't encode certain characters. The root of the question is: what's different about the IDE version versus the command line version that one writes a unicode file

How to enable jQuery Intellisense in Aptana?

若如初见. 提交于 2019-12-06 10:41:50
I have Aptana and i installed Aptana Support for jQuery plugin. Now i oped a javascript file, but can't see any jQuery Intellisense, How to enable that? I find the easiest way is to create a project in Aptana - you can choose which libraries to include in your project. Then pull the .js file into your project. It should give you jQuery intellisense then. An additional way to achieve this (if all else fails I guess) is to download the file from https://raw.github.com/aptana/javascript-jquery.ruble/master/support/jquery.1.4.2.sdocml and drop it into the root of your project folder. This should

How to customise editor's background color in the ruby plugin for eclipse?

风格不统一 提交于 2019-12-06 07:38:19
问题 How to customize editor's background color in the aptana's ruby plug-in 3.0.3.201108101424-7e-7Q7f4b2QfPuHR for eclipse? (Descriptions for older versions do not apply to this version and settings in Preferences | General | Text Editors do not have any effect.) 回答1: You could customize the theme settings in Preferences > Aptana > Themes, e.g. changing the theme used in the combo box to "Eclipse" would switch the editor background to white. You could also read more on http://wiki.appcelerator

Aptana function definition popups

走远了吗. 提交于 2019-12-06 06:52:55
I've noticed that in Aptana 2.0 over 1.5.1 that when typing a php function, you no longer get the popup window showing the function description and it's parameters. Does anyone know how to get this working again? As I relied on it quite heavily to remember which parameters went where. Open in PHP Manual shortcut Shift+F2 also doesn't work either, so all I can do is open my browser and keep php.net open all the time. Are either of these features functional? I know that Open delcaration has never worked annoyingly, but I had the function popup in 1.5.1 perfectly. I use this AutoHotKey script to

How to diagnose an internal server error (HTTP 500) from a PHP page in IIS 7.5

纵然是瞬间 提交于 2019-12-06 06:37:23
I am trying to get a trial copy of the aMember membership management system running on my local dev machine, which is Windows 7 64-bit with IIS 7.5. I have MySQL 5.5.10 and PHP 5.3.6, the latter which I installed using the Windows installer package. It seems fine. The aMember package has a tester.php script which I ran, and it gave an 'OK' result, despite its output being full of error messages related to Function eregi() is deprecated . I then ran the setup.php script, which seemed to run properly. It took me through one or two screens of gathering e.g. login information for MySQL, and then

Eclipse plugin Aptana errors on Mac OSX Lion

我们两清 提交于 2019-12-06 04:40:25
I installed the Aptana plugin (http://download.aptana.com/studio3/plugin/install) in my existing Eclipse installation on my Mac OSX Lion. Now my workspace has an error that freezes up Eclipse for about 20 seconds or so with an error as follows: Screenshot of error I confirmed that it was the plugin by uninstalling, which completely removes the error. Reinstallation and the same error returns. When I click ok, occasionally Eclipse returns but more often I have to restart it. Multiple windows of the error appear, as though it is a loop. Part of the log is listed below. Many of these similar

Code Completion — Aptana Eclipse Plugin

天涯浪子 提交于 2019-12-06 03:46:34
I have been doing javascript development for the last couple weeks and have tried JSDT and Aptana to assist in code completion. JSDT wasn't very good at all, but I did have more luck with Aptana (used as eclipse plug-in, not the standalone product). The problem I'm encountering is that when I create javascript classes I cannot get code completion to work. For example, if I use the following then code completion doesn't work: var foo = new function(value){ this.myMethod= function(){ } } I have also verified that the following won't work: function foo(value){ this.myMethod= function(){ } } I