Re: aptana Digital Media UI / UX Design by diafol Aptana is cool. Mind you I couldn't get Chrome as a default browser in preview. I'm sure there must be a way to do it though. aptana Digital Media UI / UX Design by chinee hello just started web development. does anyone know anything about aptana studio, i want to change the browser from fire fox to chrome but i can't seem to locate aptana source control is to change the xml Re: aptana Digital Media UI / UX Design by Kraai Maybe you will find an answere for your problem here: [url]http://www.aptana.com/support[/url] I do not know anything about this software, but it sure looks like a powerfull tool and I might try it out. Re: Aptana VS Dreamweaver Programming Web Development by diafol Well we all know the pull of Aptana vs. $$Dreamweaver. I use both, depending on the project. My … can use it to FTP and 'just run'. I find Aptana a pain for setting up run (view) routines. Does it… a way to turn off this setting... Anyway, for free, Aptana 3 is awesome. I'd recommend it to anyone. Along… Aptana Studio WRTKIT Selection Menu and Selection List help!!! Programming Web Development by leesyy hi, i am currently working on aptana studio nokia wrt plugin to develop a mobile widget where … execute query to the ms sql server 2005 database. in aptana, i am using js file and html file, i'm… aptana, mysql-server, php Programming Web Development by Geertc …, at least, I think... This is the problem : I use aptana as my editor, in which I have installed QuantumDB as… put the mysql-statements in a php-script (= still in aptana), and run it in my browser (firefox), I first get… Aptana VS Dreamweaver Programming Web Development by Macko888 Hey, I was wondering if anybody out there is using Aptana Studio 3, For the last 3 months i have changed from dreamweaver to aptana and have had no regrets. I found that dreamweaver has alot of blah blah on their interface... What are your thoughts? and any other great editors that you can think of that kick dreamweaver`s @$$? Re: Aptana VS Dreamweaver Programming Web Development by diafol … perfect, but there again, no single piece of software is. Aptana has a more 'works engine' feel to it, cutting edge… Re: Aptana VS Dreamweaver Programming Web Development by trangman … feature which is useful for jQuery and PHP. I like Aptana and I think if they could have a winner if… An Opensource Dreamweaver Alternative, Aptana. Community Center by mikeandike22 …found this. [URL="http://www.aptana.com/"]http://www.aptana.com/[/URL]. It is an opensource…in at least 2 web browsers. Well in Aptana it will display a drop down menu and…most part that is not a worry in Aptana the preview display is very accurate (not … last feature I would like to mention about Aptana is the Outline view. This is a view… Re: An Opensource Dreamweaver Alternative, Aptana. Community Center by Baldur McQueen …. Needed to comment on this tool. After downloading and using Aptana, I cannot understand why it is not one of the… Eclipse, Aptana, RadRails installation help on centos Programming Web Development by brynFlew … finding a good tutorial on how to install eclipse with aptana radrails on centos, when i try to install radrails in… eclipse using the instructions givin here ([aptana](http://www.aptana.com/downloads/start)), i get these errors. Can someone… Re: Eclipse, Aptana, RadRails installation help on centos Programming Web Development by Taywin It looks like you are missing libraries for it to compile... Did you follow the prerequisites on their [guide](http://www.aptana.com/products/studio3/getting_started)? Eclipse and Aptana Studio 3 Programming Web Development by Stefano Mtangoo I'm impressed with Aptana Studio 3 and it is wonderful. I have decided to … Re: Eclipse and Aptana Studio 3 Programming Web Development by Stefano Mtangoo No Eclipse/Aptana yet? Re: Eclipse and Aptana Studio 3 Programming Web Development by digital-ether [QUOTE=evstevemd;1553394]I'm impressed with Aptana Studio 3 and it is wonderful. I have decided to … Re: Eclipse and Aptana Studio 3 Programming Web Development by Stefano Mtangoo [QUOTE=digital-ether;1554221]I should try netbeans :)[/QUOTE] I suggest that, up until Aptana 3 becomes matured. It is cute but still childish somehow! Re: Eclipse and Aptana Studio 3 Programming Web Development by ulyssey I made a blog to explain how to install aptana studio 3 as a plugin in eclipse PDT. It s here : http://aptanaandpdt.blogspot.com/ Re: aptana, mysql-server, php Programming Web Development by rch1231 Hello, It would really help if your could post part of the code giving you the problem. In the mean time have you tried your sql statement from the command line with the mysql interface? Login as the user you have defined in your script and try the code. Re: aptana, mysql-server, php Programming Web Development by Geertc [CODE]<?php echo 'before the mysqli_connect-statement...'; $dbc = mysqli_connect('localhost', 'root', 'juist', 'fietsen') or die(mysqli_error($dbc)); $query = "SELECT * FROM fietsen"; $data = mysqli_query($dbc, $query) or die(mysqli_error($dbc)); $i=1; while ($row[$i] = mysqli_fetch_array($data)) { echo 'gegeven : '.$row[$i]['naam'].'… Re: aptana, mysql-server, php Programming Web Development by rch1231 What if you run it from the command line? In workbentch (and I will bet in QuantumDB) you manually connect to a database first through the GUI and stay connected till you disconnect. Try testing it from the command line. Get to a command prompt (Windows) or bash shell (Linux) and enter: mysql -u root@localhost -p<root mysql password> <… Re: aptana, mysql-server, php Programming Web Development by Geertc I have a connection. If I run it from the command line, I get this : [CODE] C:\Users\Geert\mysql -u root -pjuist fietsen Welcome to the MySQL monitor. Commands end with ; or \g. Server version: 5.1.46-community MySQL Community Server (GPL) [/CODE] and than a bit more about copyright. Then I run my select-query and I get my results... So far so … Re: aptana, mysql-server, php Programming Web Development by rch1231 It may or may not be the problem but you changed the command line I suggested. You are not specifying the server IP or name in yours. Try this and see what happens: Mine: C:\Users\Geert\mysql -u root@localhost -pjuist fietsen Yours C:\Users\Geert\mysql -u root -pjuist fietsen The first one is what php is sending vs the second which could … Re: aptana, mysql-server, php Programming Web Development by Geertc You are right : C:\Users\Geert\mysql -u root@localhost -pjuist fietsen does not make a connection ; I get the warning "ERROR 1045 (28000): Access denied for user 'root@localhost'@'localhost' <using password:YES>" And this may sound a bit silly, but I don't seem to find the httpd access and error logs. Where can I find the logs ? Re: aptana, mysql-server, php Programming Web Development by Geertc The connection is made ! Not localhost, but 127.0.0.1:3306 made the connection. rch1231, thanks a lot for helping me out here. It is clear that I have a lot to learn. What I don't understand in this is why the mysqli_error didn't gave a warning ? It was really in the connection that there was a error ? Thanks for helping ! Re: aptana, mysql-server, php Programming Web Development by rch1231 Greertc, My fault on the httpd logs if your on a windows system with IIS it will be in the IIS logs. httpd access and error logs are for Apache on either Windows or Linux. On the question about why you did not see an error message when it did not connect, it probably did give a warning but you may not have set up the any code to post the warning… Re: Aptana VS Dreamweaver Programming Web Development by ndeniche Microsoft Expression Studio works pretty well too. The thing is, I only use web design software for the intellisense and the code formatting, since I wite every single line of code in my design (This way, when there's an error in my code, I'm most likely to know exactly where the problem is). Expression Web does a pretty good job at precisely that… Re: Aptana VS Dreamweaver Programming Web Development by Macko888 Ardav i agree, I suppose it does depend on the mood... It`s just that for me, Dreamweaver makes me feel like im following a wizard, there are no challenges except for your code, otherwise everything is given to you on a platter, fair enough, time in coding plays a big part, but its so easy to "program" in dreamweaver, id love to see if … Re: Aptana VS Dreamweaver Programming Web Development by Macko888 :D indeed! i truly believe web developers/programmers have lost their quality over the past couple of years due to the "spoon fed" knowledge that modern programs are offering, and no, im not referring to DW :) , im actually quite fond of DW for their Design view..... But hey, never trust a program over a browser. Saving time? im all for … Re: Aptana VS Dreamweaver Programming Web Development by Macko888 trangman, good idea with the MVC structure... [QUOTE]You could spend a lot of time trying to find the perfect editor[/QUOTE] I dont think there will ever be a perfect 1.... some will always have what others dont and vice versa.