Vintage product description for Adobe Director, then MacroMedia Director.
Probable from the 1990′s.
About Adobe Director
PHP IDE search
Notes from my search for an IDE for PHP.
I searched the web for info on PHP IDE:
“Seven great PHP IDEs compared”
“The Big PHP IDE Test: Why Use One And Which To Choose“
I need PHP IDE for MacOSX 10.5 / Intel.
You need a local server setup. I choose to use macports to install apache/php/mysql.
This was recommended buy fixing-my-php-woes-with-macports
For the Komodo, the xdebug module it came with did not work. I had to download and compiled xdebug:
sudo wget http://xdebug.org/files/xdebug-2.0.5.tgz
sudo tar xzf xdebug-2.0.5.tgz
cd xdebug-2.0.5
phpize
./configure –enable-xdebug
make
mkdir /usr/local/xdebug
cp modules/xdebug.so /usr/local/xdebug/
I added the following lines to /opt/local/etc/php.ini
JHT-macpro:bin jht$ grep xdebug /opt/local/etc/php.ini
;extension_dir = “/opt/local/xdebug/”
zend_extension=/opt/local/xdebug/xdebug.so
xdebug.remote_enable=1
xdebug.remote_handler=dbgp
xdebug.remote_mode=req
xdebug.remote_host=127.0.0.1
xdebug.remote_port=9000
xdebug.idekey=komodo
Netbean looks like the winner. Its free, well supported by a large company, and passes my initial test: debug wordpress on local install.
Added images
Added images to about page.
WordPress can easily upload images but hard to get interesting lay out on the page.
I’m struggling trying to figure out how to insert image from gallery. Solved: need show image first.
Editing on iPhone: must use HTML mode.
Hello world!
I plan to transition my current personal web site to a dynamic one, using some of the popular CMS/PHP frameworks, such as:
- WordPress
- Apostrophe/Symphony
- Drupal
Installed wordpress for by blog. Install top few themes and a few that caught my eye:
- /pixel/
- /ahimsa/
- /atahualpa/
- /classic/
- /default/
- /dfblog/
- /index.php
- /indy10/
- /inove/
- /lightword/
Trying out theme atahualpa first. It’s got tons of options. Which maybe why blog appears sluggish sometimes. I choose theme atahuala because it has categories and pages on the left wont push down the login, which is on the right.