<?xml version="1.0"?>
<rss version="2.0"><channel><language>en</language><generator>eosgarden WCMS</generator><docs>http://blogs.law.harvard.edu/tech/rss</docs><lastBuildDate>Fri, 03 Jul 2026 19:42:18 +0200</lastBuildDate><item><title>Products - WebStart - Probl&#xC3;&#xA8;me avec xdebug sous eclipse</title><description>Bonjour,&#xD;
&#xD;
J'ai configur&#xC3;&#xA9; l'IDE Eclipse pour d&#xC3;&#xA9;buter un script PHP avec XDebug et il semble qu'il y a un probl&#xC3;&#xA8;me car la session ne d&#xC3;&#xA9;marre pas et j'ai le message suivant : &amp;quot;Launching : waiting for XDebug session&amp;quot;.&#xD;
Le debug port d'Eclipse est configur&#xC3;&#xA9; &#xC3;&#xA0; 9000.&#xD;
Je ne trouve aucune information sur XDebug dans la page phpInfo !&#xD;
&#xD;
Auriez-vous un conseil &#xC3;&#xA0; me fournir ?&#xD;
Merci d'avance</description><pubDate>Sun, 13 May 2012 22:24:25 +0200</pubDate></item><item><title>Products - WebStart - Manually Updating Your PHP</title><description>I have been searching all over and been trying to get support from the admins but to no avail. I have however figured out how to compile new versions of php from source to work with WebStart.&#xD;
&#xD;
You need to download and extract the latest version of PHP that you want use then from terminal go into that folder and run the following commands (This is for PHP 5.3.x):&#xD;
&#xD;
$&amp;gt; ./configure --prefix=/usr/local/webstart/sw/php-5.3 --with-config-file-path=/usr/local/webstart/sw/php-5.3 --with-apxs2=/usr/local/webstart/sw/apache2/bin/apxs --with-db4=/usr/local/webstart/sw/bdb/ --with-kerberos=/usr --with-mcrypt=/usr/local/webstart/sw/lib-mcrypt --with-mhash=/usr/local/webstart/sw/mhash --with-ldap=/usr/local/webstart/sw/openldap --with-pgsql=/usr/local/webstart/sw/postgresql --with-mysql=/usr/local/webstart/sw/mysql --with-mysql-sock=/tmp/mysql.sock --with-mysqli=/usr/local/webstart/sw/mysql/bin/mysql_config --with-pdo-mysql=/usr/local/webstart/sw/mysql --with-iodbc=/usr --with-zlib-dir=/usr --with-bz2 --enable-sysvsem --enable-sysvshm --enable-sysvmsg --enable-shmop --enable-sockets --enable-mbstring --with-gettext=/usr/local/webstart/sw/gettext --enable-exif --with-jpeg-dir=/usr/local/webstart/sw/lib-jpeg --with-png-dir=/usr/local/webstart/sw/lib-png --with-freetype-dir=/usr/local/webstart/sw/freetype --with-gd --enable-gd-native-ttf --with-curl=/usr --enable-ftp --disable-rpath --with-xsl --enable-soap --enable-bcmath --enable-calendar --enable-cli --disable-debug --with-openssl --with-xmlrpc --with-iconv=/usr/local/webstart/sw/lib-iconv --with-mssql=/usr/local/webstart/sw/freetds&#xD;
$&amp;gt; make&#xD;
$&amp;gt; sudo make install&#xD;
&#xD;
After that you will need to modify the files in Apache a bit:&#xD;
&#xD;
$&amp;gt; cd /usr/local/webstart/sw/apache2/modules&#xD;
$&amp;gt; sudo rm libphp-5.3.so&#xD;
$&amp;gt; sudo mv libphp5.so libphp-5.3.so&#xD;
&#xD;
Then with the apache main configuration editor in Webstart and look for &amp;quot;LoadModule php5_module modules/libphp5.so&amp;quot; and put a &amp;quot;#&amp;quot; in front of it causing it to be commented out. After that restart the server once you save the configuration and your PHP is updated! I will try to figure out how to get the latest versions of Apache working for you, I will be back when I have that information regarding this application.&#xD;
&#xD;
You can keep track of anything I add later on at http://darkprospect.net/2012/05/compiling-php-for-webstart/</description><pubDate>Tue, 08 May 2012 22:47:13 +0200</pubDate></item><item><title>Products - WebStart - Manually Updating Your PHP</title><description>I have been searching all over and been trying to get support from the admins but to no avail. I have however figured out how to compile new versions of php from source to work with WebStart.&#xD;
&#xD;
You need to download and extract the latest version of PHP that you want use then from terminal go into that folder and run the following commands (This is for PHP 5.3.x):&#xD;
&#xD;
$&amp;gt; ./configure --prefix=/usr/local/webstart/sw/php-5.3 --with-config-file-path=/usr/local/webstart/sw/php-5.3 --with-apxs2=/usr/local/webstart/sw/apache2/bin/apxs --with-db4=/usr/local/webstart/sw/bdb/ --with-kerberos=/usr --with-mcrypt=/usr/local/webstart/sw/lib-mcrypt --with-mhash=/usr/local/webstart/sw/mhash --with-ldap=/usr/local/webstart/sw/openldap --with-pgsql=/usr/local/webstart/sw/postgresql --with-mysql=/usr/local/webstart/sw/mysql --with-mysql-sock=/tmp/mysql.sock --with-mysqli=/usr/local/webstart/sw/mysql/bin/mysql_config --with-pdo-mysql=/usr/local/webstart/sw/mysql --with-iodbc=/usr --with-zlib-dir=/usr --with-bz2 --enable-sysvsem --enable-sysvshm --enable-sysvmsg --enable-shmop --enable-sockets --enable-mbstring --with-gettext=/usr/local/webstart/sw/gettext --enable-exif --with-jpeg-dir=/usr/local/webstart/sw/lib-jpeg --with-png-dir=/usr/local/webstart/sw/lib-png --with-freetype-dir=/usr/local/webstart/sw/freetype --with-gd --enable-gd-native-ttf --with-curl=/usr --enable-ftp --disable-rpath --with-xsl --enable-soap --enable-bcmath --enable-calendar --enable-cli --disable-debug --with-openssl --with-xmlrpc --with-iconv=/usr/local/webstart/sw/lib-iconv --with-mssql=/usr/local/webstart/sw/freetds&#xD;
$&amp;gt; make&#xD;
$&amp;gt; sudo make install&#xD;
&#xD;
After that you will need to modify the files in Apache a bit:&#xD;
&#xD;
$&amp;gt; cd /usr/local/webstart/sw/apache2/modules&#xD;
$&amp;gt; sudo rm libphp-5.3.so&#xD;
$&amp;gt; sudo mv libphp5.so libphp-5.3.so&#xD;
&#xD;
Then with the apache main configuration editor in Webstart and look for &amp;quot;LoadModule php5_module modules/libphp5.so&amp;quot; and put a &amp;quot;#&amp;quot; in front of it causing it to be commented out. After that restart the server once you save the configuration and your PHP is updated! I will try to figure out how to get the latest versions of Apache working for you, I will be back when I have that information regarding this application.&#xD;
&#xD;
You can keep track of anything I add later on at http://darkprospect.net/2012/05/compiling-php-for-webstart/</description><pubDate>Tue, 08 May 2012 22:47:09 +0200</pubDate></item><item><title>Products - WebStart - Error Messages</title><description>WebStart 1.3.1&#xD;
&#xD;
I installed Joomla on the web server. When I open the website I always get lots of error messages like this:&#xD;
&#xD;
Strict Standards: Only variables should be assigned by reference in /Users/voelzke/Sites/WebStart/localhost/components/com_jxtcpowertabs/views/slideshow/tmpl/default.php on line 35&#xD;
&#xD;
How can I get rid of these messages?</description><pubDate>Sat, 05 May 2012 23:04:14 +0200</pubDate></item><item><title>Freeware - PropEdit - Need to be able to pass a path to PropEdit</title><description>PropEdit could really use a way to receive a path from another source. If I find myself needing to edit permissions and ACLs, I'm usually already viewing the file in the Finder or another program. Currently, the one and only way to access a file or folder in PropEdit appears to be to navigate to it within the app. Drop and drop doesn't work, there is no system service or command-line tool, and it's not scriptable. An &amp;quot;open in PropEdit&amp;quot; service would do wonders for my workflow.</description><pubDate>Tue, 24 Apr 2012 23:02:02 +0200</pubDate></item><item><title>Products - WebStart - Page blanche</title><description>Salut, j'ai juste chang&#xC3;&#xA9; la version du PHP par la derni&#xC3;&#xA8;re version et &#xC3;&#xA7;a marche. Grand bravo pour votre application, dommage qu'il ne soit pas disponible sur l'App Store.&#xD;
</description><pubDate>Sat, 14 Apr 2012 15:58:11 +0200</pubDate></item><item><title>Products - WebStart - Manual - Prefences - Font selection</title><description>For the Produkt &amp;quot;Manual&amp;quot; I like to have in the Preferences to Option to select a Font.&#xD;
&#xD;
Other Produkts like &amp;quot;Manpower&amp;quot; is this feature available.&#xD;
&#xD;
Changing the font is for me very essential.&#xD;
&#xD;
&#xD;
</description><pubDate>Wed, 11 Apr 2012 08:22:06 +0200</pubDate></item><item><title>Products - WebStart - Trial expired</title><description>Hi there, &#xD;
&#xD;
i bought Webstart and enterd my Serial. Despite that Webstart says that i am using a trial version. Now after 14 Days it says: &amp;quot;Trial expired. Your trial has expired. You will need... blib bla blub&amp;quot;&#xD;
&#xD;
I installed a trial before, removed it but then decided to buy the full version. &#xD;
&#xD;
Any help is appreciated. </description><pubDate>Tue, 10 Apr 2012 11:44:13 +0200</pubDate></item><item><title>Products - WebStart - Trial expired</title><description>Hi there, &#xD;
&#xD;
i bought Webstart and enterd my Serial. Despite that Webstart says that i am using a trial version. Now after 14 Days it says: &amp;quot;Trial expired. Your trial has expired. You will need... blib bla blub&amp;quot;&#xD;
&#xD;
I installed a trial before, removed it but then decided to buy the full version. &#xD;
&#xD;
Any help is appreciated. </description><pubDate>Tue, 10 Apr 2012 11:44:13 +0200</pubDate></item><item><title>Products - WebStart - Unable to import to mysql</title><description>i have the same problem.&#xD;
Just downloaded the trial version, when i hit updates i get the message that my software versions are currently up to date.&#xD;
&#xD;
Where can i find version 1.4?</description><pubDate>Mon, 09 Apr 2012 17:10:35 +0200</pubDate></item><item><title>Products - WebStart - Erreur 324</title><description>Bonjour,&#xD;
j'ai fr&#xC3;&#xA9;quemment l'erreur suivante ds chrome et ff (semble &#xC3;&#xAA;tre al&#xC3;&#xA9;atoire).&#xD;
&#xD;
sur chrome:&#xD;
Erreur 324 (net::ERR_EMPTY_RESPONSE) : Le serveur a mis fin &#xC3;&#xA0; la connexion sans envoyer de donn&#xC3;&#xA9;es.&#xD;
&#xD;
sur ff:&#xD;
La connexion avec le serveur a &#xC3;&#xA9;t&#xC3;&#xA9; r&#xC3;&#xA9;initialis&#xC3;&#xA9;e pendant le chargement de la page.&#xD;
&#xD;
J'utilise essentiellement webstart avec typo3, php 5.3., probl&#xC3;&#xA8;me rencontr&#xC3;&#xA9; en frontend et en backend.&#xD;
&#xD;
Quelqu'un aurait une id&#xC3;&#xA9;e ?&#xD;
Merci&#xD;
&#xD;
Sylvain&#xD;
</description><pubDate>Fri, 06 Apr 2012 20:11:49 +0200</pubDate></item><item><title>Products - WebStart - Bug in Webstart 1.3.1</title><description>I reply to myself :-)&#xD;
&#xD;
the problem is in &amp;quot;Applications/WebStart.app/Contents/Resources/en.lproj/Localizable.strings&amp;quot;&#xD;
&#xD;
Wrong is:&#xD;
&#xD;
&amp;quot;LogDynDNSAlreadyDown&amp;quot;             = &amp;quot;The DynDNS client is already up&amp;quot;;&#xD;
&amp;quot;LogDynDNSAlreadyUp&amp;quot;                  = &amp;quot;The DynDNS client is already down&amp;quot;;&#xD;
&#xD;
Correct is:&#xD;
&#xD;
&amp;quot;LogDynDNSAlreadyUp&amp;quot;                  = &amp;quot;The DynDNS client is already up&amp;quot;;&#xD;
&amp;quot;LogDynDNSAlreadyDown&amp;quot;              = &amp;quot;The DynDNS client is already down&amp;quot;;</description><pubDate>Mon, 02 Apr 2012 18:34:25 +0200</pubDate></item><item><title>Products - WebStart - Bug in Webstart 1.3.1</title><description>The DynDNS part of Webstart has a bug. If I try to stop a non-running DynDNS (Webstart-DynDNS-Control-&amp;gt;Stop) the message on the Webstart console says&#xD;
&#xD;
&amp;quot;The DynDNS client is already up&amp;quot;&#xD;
&#xD;
which is wrong. Must be&#xD;
&#xD;
&amp;quot;The DynDNS client is already down&amp;quot;.&#xD;
&#xD;
The same kind of message in conjunction of apache, mysql and openldap gives the correct string &amp;quot;... is already down.&amp;quot;.&#xD;
&#xD;
Regards&#xD;
Michael</description><pubDate>Mon, 02 Apr 2012 18:27:22 +0200</pubDate></item><item><title>Products - WebStart - MySQL Problem - with solution.</title><description>Hi there,&#xD;
&#xD;
i have a problem with the last update of webstart. The MySQL-Database are not upgraded correctly so my IDE told me to execute &amp;quot;mysql_upgrade&amp;quot;. &#xD;
&#xD;
After some searches on my mac i found the way to do this:&#xD;
&#xD;
- Open Terminal..&#xD;
- cd &amp;quot;/usr/local/webstart/sw/mysql/bin&amp;quot;&#xD;
- mysql_upgrade&#xD;
&#xD;
After a restart all runs fine.    &#xD;
&#xD;
Perhaps someone find this useful... &#xD;
&#xD;
Bye, Dumbledore</description><pubDate>Sun, 01 Apr 2012 10:13:58 +0200</pubDate></item><item><title>Products - WebStart - Page blanche</title><description>Bonjour,&#xD;
&#xD;
Merci de votre message.&#xD;
Quelque chose &#xC3;&#xA0; signaler dans les logs?</description><pubDate>Sat, 31 Mar 2012 19:04:41 +0200</pubDate></item><item><title>Products - WebStart - Page blanche</title><description>Salut, apr&#xC3;&#xA8;s l'installation de wordpress et iPboard je me retrouve avec une page blanche.&#xD;
M&#xC3;&#xAA;me apr&#xC3;&#xA8;s un stop all et re-start j'ai rien qui s'affiche, j'ai donc fait un chmod en 777 mais rien &#xC3;&#xA0; faire.&#xD;
Une aide de votre part serait bien sympa.&#xD;
D'avance merci .</description><pubDate>Sat, 31 Mar 2012 19:03:23 +0200</pubDate></item><item><title>Products - WebStart - Webstart</title><description>unfortunately, there's no response by e-mail either - too bad - looks like a nice piece of software but if it's not supported I guess I have to keep on looking for something else.</description><pubDate>Wed, 28 Mar 2012 15:53:27 +0200</pubDate></item><item><title>Products - WebStart - Webstart</title><description>oh, now I've just read that you have still already tried to take contact via e-mail. :-( That makes me not just positive.</description><pubDate>Tue, 27 Mar 2012 19:30:28 +0200</pubDate></item><item><title>Products - WebStart - Webstart</title><description>oh, now I've just read that you have still already tried to take contact via e-mail. :-( That makes me not just positive.</description><pubDate>Tue, 27 Mar 2012 19:30:28 +0200</pubDate></item><item><title>Products - WebStart - Webstart</title><description>Hello,&#xD;
I have also searched an alternative to MAMP or XAMP. Webstart works fine with me. What I have noticed also is that it is as quiet as the forum for MAMP. I can not tell you but looks like the mail support, maybe there is a faster response. I also hope that this software is maintained, purely because of the operation and the basic structure of this first class!</description><pubDate>Tue, 27 Mar 2012 19:28:34 +0200</pubDate></item><item><title>Freeware - PropEdit - OSX Lion, Lock Status change...</title><description>I have just purchased the license for PropEdit and had expected to see the option to toggle the &amp;quot;Lock&amp;quot; state of a file under the ACL Editor.&#xD;
&#xD;
Any chance that this can get added one day ?</description><pubDate>Sun, 25 Mar 2012 04:41:38 +0200</pubDate></item><item><title>Products - WebStart - Webstart</title><description>While looking for an alternative to MAMP PRO, I discovered Webstart - looks very promising - however, as emails to the developer remained unanswered and the forum here look like a ghost town I'm kind of hesitant to make the change - I hopped that things are better over here as MAMP support really sucks.</description><pubDate>Sat, 24 Mar 2012 14:59:24 +0100</pubDate></item><item><title>Freeware - ConsoleGrowl - No logs showing up</title><description>Hi,&#xD;
Just installed consolegrowl, but sadly there are no logfiles showing up.&#xD;
Right after install consolegrowl stated theres no growl installed despite im running growl 1.3.3&#xD;
After I upgraded framework with growl version detective growl is recognized, but still no logs are shown.&#xD;
Any sugestions?&#xD;
regards,&#xD;
Martin</description><pubDate>Sat, 24 Mar 2012 10:30:50 +0100</pubDate></item><item><title>Products - WebStart - Request exceeded the limit of 10 internal redirects</title><description>Oops, I posted my .htaccess contents wrong, it should be (no '/' before index.php):&#xD;
&#xD;
RewriteEngine On&#xD;
RewriteRule ^(.*)$ index.php?url=$1 [QSA,L]</description><pubDate>Sun, 18 Mar 2012 19:33:13 +0100</pubDate></item><item><title>Products - WebStart - Request exceeded the limit of 10 internal redirects</title><description>Let me start off by saying that this stack rocks. Once I get this little issue squared away I expect to be able to ditch MAMP forever!&#xD;
&#xD;
The reason I need help is that my .htaccess file only has:&#xD;
&#xD;
RewriteEngine On&#xD;
RewriteRule ^(.*)$ /index.php?url=$1 [QSA,L]&#xD;
&#xD;
&#xD;
This works under MAMP and really every other environment... except here. =( It's so simple! Anyway, not sure if anyone else has seen this or has some advice on where to go from here, but this is my error log:&#xD;
&#xD;
[Sun Mar 18 12:24:21 2012] [error] [client 127.0.0.1] Request exceeded the limit of 10 internal redirects due to probable configuration error. Use 'LimitInternalRecursion' to increase the limit if necessary. Use 'LogLevel debug' to get a backtrace.&#xD;
[Sun Mar 18 12:24:21 2012] [debug] core.c(3046): [client 127.0.0.1] r-&amp;gt;uri = /index.php&#xD;
[Sun Mar 18 12:24:21 2012] [debug] core.c(3052): [client 127.0.0.1] redirected from r-&amp;gt;uri = /index.php&#xD;
[Sun Mar 18 12:24:21 2012] [debug] core.c(3052): [client 127.0.0.1] redirected from r-&amp;gt;uri = /index.php&#xD;
[Sun Mar 18 12:24:21 2012] [debug] core.c(3052): [client 127.0.0.1] redirected from r-&amp;gt;uri = /index.php&#xD;
[Sun Mar 18 12:24:21 2012] [debug] core.c(3052): [client 127.0.0.1] redirected from r-&amp;gt;uri = /index.php&#xD;
[Sun Mar 18 12:24:21 2012] [debug] core.c(3052): [client 127.0.0.1] redirected from r-&amp;gt;uri = /index.php&#xD;
[Sun Mar 18 12:24:21 2012] [debug] core.c(3052): [client 127.0.0.1] redirected from r-&amp;gt;uri = /index.php&#xD;
[Sun Mar 18 12:24:21 2012] [debug] core.c(3052): [client 127.0.0.1] redirected from r-&amp;gt;uri = /index.php&#xD;
[Sun Mar 18 12:24:21 2012] [debug] core.c(3052): [client 127.0.0.1] redirected from r-&amp;gt;uri = /index.php&#xD;
[Sun Mar 18 12:24:21 2012] [debug] core.c(3052): [client 127.0.0.1] redirected from r-&amp;gt;uri = /index.php&#xD;
[Sun Mar 18 12:24:21 2012] [debug] core.c(3052): [client 127.0.0.1] redirected from r-&amp;gt;uri = /</description><pubDate>Sun, 18 Mar 2012 19:27:27 +0100</pubDate></item><item><title>Products - WebStart - FastCGI for Joomla Installation</title><description>What di i have to do to create a perfectly running Joomla Installation with FastCGI so i don&#xC2;&#xB4;t have to change the permissions in directories and files?&#xD;
&#xD;
I activated fastCGI in the apache panel - but still have permission problems.&#xD;
&#xD;
Thanks in advance&#xD;
Frank</description><pubDate>Thu, 15 Mar 2012 09:58:35 +0100</pubDate></item><item><title>Products - WebStart - Unable to import to mysql</title><description>hi&#xD;
&#xD;
&#xD;
Where is 1.4.0 when I can only see 1.3</description><pubDate>Wed, 14 Mar 2012 22:17:15 +0100</pubDate></item><item><title>Products - WebStart - MySQL: #1054 - Unknown column 'Event_priv' in 'field list' </title><description>If I select &amp;quot;Rechte &#xC3;&#xBC;berpr&#xC3;&#xBC;fen&amp;quot; in phpMyAdmin for all standard databases (e.g. mysql, test,...) I get the message &amp;quot;#1054 - Unknown column 'Event_priv' in 'field list' &amp;quot;.&#xD;
&#xD;
I have a freshly installed WebStart 1.3.0, OSX 10.7.3.&#xD;
&#xD;
According to google the solution is &amp;quot;mysql_upgrade&amp;quot; but I don't know how to do this in the WebStart environment.&#xD;
&#xD;
Regards&#xD;
Michael</description><pubDate>Mon, 12 Mar 2012 17:05:43 +0100</pubDate></item><item><title>Products - WebStart - Please don't use /etc/my.cnf</title><description>I've generally enjoyed the the transition from MAMP PRO to WebStart, but there is one small headache I've encountered.  WebStart installs its MySQL configuration file in the location for global options: /etc/my.cnf.  This can interfere with newer versions of MySQL on the same machine (e.g., Homebrew or Oracle builds), and it violates a bit the overall goal of WebStart operating as a self-contained development environment.  I suggest it would be better to put the config file in /usr/local/webstart/data/mysql (already set up by the MySQL build) and point the conf editor to that location.  Simply moving the file that location works fine, but the conf editor doesn't know to look there - a minor inconvenience.  A less-appealing alternative would be to use a different location that is referenced in the mysqld command-line (as MAMP does).  If users want to use /etc/my.cnf for global options with multiple MySQL versions, this it should be up to them to work out any issues.  WebStart shouldn't force it on them.  Thanks.&#xD;
</description><pubDate>Wed, 07 Mar 2012 14:05:46 +0100</pubDate></item><item><title>Products - WebStart - PHP include paths</title><description>Looking into this a bit more, it appears from PHPinfo that the $_SERVER['DOCUMENT_ROOT'] variable is set to &amp;quot;/usr/local/webstart/sw/apache2/htdocs&amp;quot;.&#xD;
&#xD;
How can I set this dynamically to the web root for each virtual host?</description><pubDate>Wed, 29 Feb 2012 00:16:26 +0100</pubDate></item><item><title>Products - WebStart - PHP include paths</title><description>I've just moved from MAMP Pro to WebStart and very much like what I see. I'm having a bit of trouble moving some PHP-based sites over, however. In the past I've always used include paths such as:&#xD;
&#xD;
require(&amp;quot;{$_SERVER['DOCUMENT_ROOT']}/includes/header.php&amp;quot;);&#xD;
&#xD;
But with WebStart these throw an error. It either doesn't understand $_SERVER['DOCUMENT_ROOT'] or the document root for each virtual host isn't set properly.&#xD;
&#xD;
Is there a config setting I can modify to make these work again?</description><pubDate>Tue, 28 Feb 2012 23:50:02 +0100</pubDate></item><item><title>Freeware - ProcessRenicer - No active processes</title><description>Hi, I'm trying to use ProcessRenicer but when I launch it there are no running processes appearing in the window.&#xD;
&#xD;
Anything I should check?</description><pubDate>Sat, 25 Feb 2012 16:24:15 +0100</pubDate></item><item><title>OpenSource - OpenCV - iOS - PCA calculation crash</title><description>I'd like to add info from console:&#xD;
&#xD;
OpenCV Error: Bad flag (parameter or structure field) (Unrecognized or unsupported array type) in cvGetMat, file /Users/mynamexxx/Desktop/iFaceRecognize/OpenCV/build/iPhoneSimulator/../.././tmp/OpenCV-2.0.0/src/cxcore/cxarray.cpp, line 2470&#xD;
terminate called after throwing an instance of 'cv::Exception'</description><pubDate>Fri, 24 Feb 2012 23:48:32 +0100</pubDate></item><item><title>OpenSource - OpenCV - iOS - PCA calculation crash</title><description>Hi,&#xD;
I eperience crash while using cvCalcPCA.&#xD;
Is there a bug in cxcore that app crashes while calling cvCalcPCA method ?&#xD;
Which version of OpenCV did you use to make one for iOS ?&#xD;
Can I ask you for the latest build of OpenCV release for iPhone ?</description><pubDate>Fri, 24 Feb 2012 23:18:30 +0100</pubDate></item><item><title>Products - WebStart - WebStart Installation</title><description>Hello, your website states the following: &amp;quot;All that stuff is installed in a specific directory, separate from the system paths, so you don't have to worry when you upgrade your Mac OS X system.&amp;quot; In what directory are all the applications (Apache, PHP, OpenLdap, etc.) installed?&#xD;
&#xD;
Thank you&#xD;
Daniel </description><pubDate>Wed, 22 Feb 2012 04:54:02 +0100</pubDate></item><item><title>Products - WebStart - Unable to import to mysql</title><description>Hi : )&#xD;
&#xD;
Please update WebStart to the latest version (1.4.0).&#xD;
This will fix the problems.</description><pubDate>Fri, 17 Feb 2012 01:09:18 +0100</pubDate></item><item><title>Products - WebStart - Unable to import to mysql</title><description>Well I can import now still can not set password for mySQL though and none of the sites I setup can be viewed in the browser</description><pubDate>Fri, 17 Feb 2012 01:04:47 +0100</pubDate></item><item><title>Products - WebStart - Unable to import to mysql</title><description>Still no good exactly the same error and still can not set mySQL password</description><pubDate>Fri, 17 Feb 2012 00:17:16 +0100</pubDate></item><item><title>Products - WebStart - Unable to import to mysql</title><description>I will reinstall and give this a try </description><pubDate>Fri, 17 Feb 2012 00:05:13 +0100</pubDate></item><item><title>Products - WebStart - mysql start/stop oddity</title><description>Hello&#xD;
I have had mySQL running for several years, so that MailSteward Pro can use it to back up my email every couple of hours.&#xD;
&#xD;
Today I unistalled WebStart, and MaiSteward cannot open mySQL. So, I went to the mySQL Preference pane, and it cannot start mySQL either.&#xD;
&#xD;
So I reinstalled WebStart and used it to turn mySQL on. That worked: I can turn on mySQL from SW, but no other way: not MailSteward, my the official mySQL Pref Pane; not Navicat, nor any of my other mySQL software.&#xD;
&#xD;
Once I turn it on in SW, everything is fine. But if I turn it off in WS, nothing else will open it again.&#xD;
&#xD;
Any idea what is going on? (No, AFAIK it's not a password issue... this has been running for years before I introduced SW to my system.)&#xD;
&#xD;
I'd like to understand this, and move past it.&#xD;
&#xD;
Thanks</description><pubDate>Tue, 14 Feb 2012 23:47:36 +0100</pubDate></item><item><title>Products - WebStart - MySQL Database migration</title><description>Dear Sir,&#xD;
&#xD;
a while ago i have downloaded your WebStart (Standard Trial) Software and installed on my Mac. Everything worked fine and i have created a Database also. Today after the Trial period is expired, i have decided to use the Freeware Version of WebStart Light as it gives me enough function and at the moment also cant afford to Buy the Standard Version.&#xD;
&#xD;
Now the Problem is that after installing the Light version I cant see my Database?? how can I get access to my Database after the Trial Period is expired?&#xD;
&#xD;
In Simple Words:&#xD;
&#xD;
I need to migrate from Webstart Standard Trial to Webstart Light, at least the Database as i dont know where to find my DB and tables!!!!&#xD;
&#xD;
&#xD;
Pleeeez Help You have a Great Software&#xD;
Sincerely, Khan&#xD;
&#xD;
</description><pubDate>Tue, 31 Jan 2012 02:13:56 +0100</pubDate></item><item><title>Products - WebStart - npm throws an error.</title><description>Yep, npm seems broken...&#xD;
&#xD;
I'll try to update it ASAP...</description><pubDate>Mon, 30 Jan 2012 19:45:22 +0100</pubDate></item><item><title>Products - WebStart - npm throws an error.</title><description>npm appears to be misconfigured.&#xD;
&#xD;
When I run npm at the command line I get this error:&#xD;
&#xD;
node.js:201&#xD;
        throw e; // process.nextTick error, or 'error' event on first tick&#xD;
              ^&#xD;
Error: Cannot find module '../lib/utils/log.js'&#xD;
    at Function._resolveFilename (module.js:334:11)&#xD;
    at Function._load (module.js:279:25)&#xD;
    at Module.require (module.js:357:17)&#xD;
    at require (module.js:368:17)&#xD;
    at /usr/local/webstart/sw/nodejs/bin/npm:18:11&#xD;
    at Object.&amp;lt;anonymous&amp;gt; (/usr/local/webstart/sw/nodejs/bin/npm:80:2)&#xD;
    at Module._compile (module.js:432:26)&#xD;
    at Object..js (module.js:450:10)&#xD;
    at Module.load (module.js:351:31)&#xD;
    at Function._load (module.js:310:12)&#xD;
&#xD;
</description><pubDate>Fri, 27 Jan 2012 17:58:40 +0100</pubDate></item><item><title>Freeware - PropEdit - Connect to other volumes?</title><description>Hello, and thanks for the message,&#xD;
&#xD;
You can access any volume with PropEdit.&#xD;
&#xD;
Simply enable the &#xC2;&#xAB;Show system hidden files&#xC2;&#xBB; option in the preferences.&#xD;
Then, you'll be able to access the root &#xC2;&#xAB;Volumes&#xC2;&#xBB; directory, with all the connected volumes.</description><pubDate>Sun, 15 Jan 2012 18:38:41 +0100</pubDate></item><item><title>Freeware - PropEdit - Connect to other volumes?</title><description>Hello,&#xD;
&#xD;
In PropEdit, it seems that I can only see the main / home volume. Is there any way to see and repair permissions on another hard drive in my Mac Pro?&#xD;
&#xD;
Thanks!</description><pubDate>Sun, 15 Jan 2012 03:27:23 +0100</pubDate></item><item><title>Products - WebStart - ZendOptimizer not loaded</title><description>Hi,&#xD;
&#xD;
I think I have now found a solution. At least now starts the optimizer and is functional!&#xD;
&#xD;
The file / usr/local/webstart/sw/zend-optimizer-php-5.2/lib/Optimizer-3.3.3/php-5.2.x/ZendOptimizer.so seems to be incorrect. Likewise, what you can load directly on the site. In the forum I am now Zend find anything:&#xD;
&#xD;
http://forums.zend.com/viewtopic.php?f=57&amp;amp;t=2303#p8733&#xD;
&#xD;
Simply use the local ZendOptimizer.so, it works already.</description><pubDate>Sun, 08 Jan 2012 17:48:40 +0100</pubDate></item><item><title>Products - WebStart - ZendOptimizer not loaded</title><description>Hello,&#xD;
I'm just trying to activate the ZendOptimizer under PHP 5.2. In PHP this information is displayed from the ground up as not loaded. When I try to manually enter this in the php.ini, Apache gives me an error that the ZendOptimizer.so not be loaded.&#xD;
&#xD;
My modified entry in the ini:&#xD;
&#xD;
zend_optimizer.enable_loader = On&#xD;
zend_extension_manager.optimizer=/usr/local/webstart/sw/zend-optimizer-php-5.2/lib/Optimizer-3.3.3&#xD;
zend_optimizer.version=3.3.3&#xD;
zend_optimizer.optimization_level = 15&#xD;
zend_extension = /usr/local/webstart/sw/zend-optimizer-php-5.2/lib/Optimizer-3.3.3/php-5.2.x/ZendOptimizer.so&#xD;
&#xD;
How do I get the optimizer to run? Thank you!</description><pubDate>Sat, 07 Jan 2012 23:18:21 +0100</pubDate></item><item><title>Products - WebStart - Host specific SSL</title><description>Does anyone know how to install an SSL certificate for a single host?&#xD;
&#xD;
I found where the default SSL cert is defined, what I can&#xE2;&#x20AC;&#x2122;t figure out is how to override this for a specific virtual host. Can you help or point me at the right documentation?&#xD;
&#xD;
&amp;lt;IfModule ssl_module&amp;gt;&#xD;
    &#xD;
    NameVirtualHost *:443&#xD;
    &#xD;
    &amp;lt;VirtualHost *:443&amp;gt;&#xD;
        VirtualDocumentRoot &amp;quot;/Library/WebStart/WWW/%0-ssl/public&amp;quot;&#xD;
        &#xD;
        &amp;lt;Directory &amp;quot;/Library/WebStart&amp;quot;&amp;gt;&#xD;
            Options Indexes FollowSymLinks&#xD;
            AllowOverride All&#xD;
            Order allow,deny&#xD;
            Allow from all&#xD;
        &amp;lt;/Directory&amp;gt;&#xD;
        &#xD;
        SSLEngine on&#xD;
        SSLCipherSuite ALL:!ADH:!EXPORT56:RC4+RSA:+HIGH:+MEDIUM:+LOW:+SSLv2:+EXP:+eNULL&#xD;
        SSLCertificateFile /usr/local/webstart/webserver/ssl/server.crt&#xD;
        SSLCertificateKeyFile /usr/local/webstart/webserver/ssl/server.key&#xD;
        &#xD;
        &amp;lt;FilesMatch &amp;quot;\.(cgi|shtml|phtml|php)$&amp;quot;&amp;gt;&#xD;
            SSLOptions +StdEnvVars&#xD;
        &amp;lt;/FilesMatch&amp;gt;&#xD;
        &#xD;
        &amp;lt;Directory &amp;quot;/usr/local/apache2/cgi-bin&amp;quot;&amp;gt;&#xD;
            SSLOptions +StdEnvVars&#xD;
        &amp;lt;/Directory&amp;gt;&#xD;
        &#xD;
        &amp;lt;IfModule setenvif_module&amp;gt;&#xD;
            &#xD;
            BrowserMatch &amp;quot;.*MSIE.*&amp;quot; \&#xD;
                nokeepalive ssl-unclean-shutdown \&#xD;
                downgrade-1.0 force-response-1.0&#xD;
                &#xD;
        &amp;lt;/IfModule&amp;gt;&#xD;
        &#xD;
    &amp;lt;/VirtualHost&amp;gt;&#xD;
    &#xD;
&amp;lt;/IfModule&amp;gt;</description><pubDate>Tue, 03 Jan 2012 10:48:31 +0100</pubDate></item><item><title>Products - WebStart - Host specific SSL</title><description>Does anyone know how to install an SSL certificate for a single host?&#xD;
&#xD;
I found where the default SSL cert is defined, what I can&#xE2;&#x20AC;&#x2122;t figure out is how to override this for a specific virtual host. Can you help or point me at the right documentation?&#xD;
&#xD;
&amp;lt;IfModule ssl_module&amp;gt;&#xD;
    &#xD;
    NameVirtualHost *:443&#xD;
    &#xD;
    &amp;lt;VirtualHost *:443&amp;gt;&#xD;
        VirtualDocumentRoot &amp;quot;/Library/WebStart/WWW/%0-ssl/public&amp;quot;&#xD;
        &#xD;
        &amp;lt;Directory &amp;quot;/Library/WebStart&amp;quot;&amp;gt;&#xD;
            Options Indexes FollowSymLinks&#xD;
            AllowOverride All&#xD;
            Order allow,deny&#xD;
            Allow from all&#xD;
        &amp;lt;/Directory&amp;gt;&#xD;
        &#xD;
        SSLEngine on&#xD;
        SSLCipherSuite ALL:!ADH:!EXPORT56:RC4+RSA:+HIGH:+MEDIUM:+LOW:+SSLv2:+EXP:+eNULL&#xD;
        SSLCertificateFile /usr/local/webstart/webserver/ssl/server.crt&#xD;
        SSLCertificateKeyFile /usr/local/webstart/webserver/ssl/server.key&#xD;
        &#xD;
        &amp;lt;FilesMatch &amp;quot;\.(cgi|shtml|phtml|php)$&amp;quot;&amp;gt;&#xD;
            SSLOptions +StdEnvVars&#xD;
        &amp;lt;/FilesMatch&amp;gt;&#xD;
        &#xD;
        &amp;lt;Directory &amp;quot;/usr/local/apache2/cgi-bin&amp;quot;&amp;gt;&#xD;
            SSLOptions +StdEnvVars&#xD;
        &amp;lt;/Directory&amp;gt;&#xD;
        &#xD;
        &amp;lt;IfModule setenvif_module&amp;gt;&#xD;
            &#xD;
            BrowserMatch &amp;quot;.*MSIE.*&amp;quot; \&#xD;
                nokeepalive ssl-unclean-shutdown \&#xD;
                downgrade-1.0 force-response-1.0&#xD;
                &#xD;
        &amp;lt;/IfModule&amp;gt;&#xD;
        &#xD;
    &amp;lt;/VirtualHost&amp;gt;&#xD;
    &#xD;
&amp;lt;/IfModule&amp;gt;</description><pubDate>Tue, 03 Jan 2012 10:48:30 +0100</pubDate></item><item><title>Products - WebStart - Apache won't start after update to PHP 5.3.8</title><description>I completely missed this thread. I'm really sorry about this.&#xD;
&#xD;
Unfortunately, the WebStart version of PHP 5.3.8 is only available for Lion. The updater has been fixed.&#xD;
&#xD;
You may want to re-install the latest version for Snow Leopard (1.1.1), to get things back.</description><pubDate>Tue, 03 Jan 2012 05:47:32 +0100</pubDate></item><item><title>Products - WebStart - Unable to import to mysql</title><description>To fix this, open the PHP configuration file and look for the 'upload_tmp_dir' directive.&#xD;
&#xD;
It needs to be set to: '/tmp/':&#xD;
&#xD;
upload_tmp_dir = /tmp/&#xD;
&#xD;
If not, or if commented, set this directive. Everything will then work as expected.</description><pubDate>Tue, 03 Jan 2012 05:31:34 +0100</pubDate></item><item><title>Products - WebStart - Unable to import to mysql</title><description>Was this ever resolved?  I'm also getting the same error.  I can't get a .sql file that is an export of a backup to import in phpmyadmin.  </description><pubDate>Mon, 02 Jan 2012 17:27:37 +0100</pubDate></item><item><title>Products - WebStart - Set up local environment</title><description>hi, might have been a caching issue. it's working fine now.  i'm looking forward to using it, I think you've put together a great tool for testing.</description><pubDate>Mon, 02 Jan 2012 09:11:50 +0100</pubDate></item><item><title>Products - WebStart - Set up local environment</title><description>Do I need to use dyndns?  I'm just trying to set up a local environment.  I can't figure out how to get the site to show up.  Can you give an example of setting a site up?</description><pubDate>Mon, 02 Jan 2012 08:49:00 +0100</pubDate></item><item><title>Products - WebStart - Set up local environment</title><description>WebSharing needs to be turned off, otherwise the Apache server won't start.&#xD;
&#xD;
About DynDNS, you just need to enter your account informations. Note that you need to setup NAT on your router, and have the IP address updated, if you don't have a static one. You may also have issues testing it from your internal network, as it's supposed to work from the outside.</description><pubDate>Mon, 02 Jan 2012 05:36:23 +0100</pubDate></item><item><title>Products - WebStart - Set up local environment</title><description>I just bought a license and I'm attempting to switch over from using MAMP and have a couple of questions.  Are you supposed to have web sharing turned on or off?  &#xD;
&#xD;
Do you have to set up the site through dyndns.org?  I can't get any sites to appear in a browser.  It would be nice if you had clear documentation on getting it set up.  &#xD;
&#xD;
Thanks</description><pubDate>Mon, 02 Jan 2012 00:43:40 +0100</pubDate></item><item><title>Products - WebStart - Unable to import to mysql</title><description>From the webstart interface and with phpmyadmin I have just done a fresh install for the 5th time and it is still giving me the same problems can not set root password and can not import to database via phpmyadmin I get the error stated in my first post</description><pubDate>Tue, 06 Dec 2011 23:20:14 +0100</pubDate></item><item><title>Products - WebStart - Unable to import to mysql</title><description>Are you setting the MySQL root password from the preferences dialog, or from the WebStart main window, under the MySQL tab?</description><pubDate>Tue, 06 Dec 2011 22:54:41 +0100</pubDate></item><item><title>Products - WebStart - Unable to import to mysql</title><description>Using the webstart interface and via phpmyadmin</description><pubDate>Tue, 06 Dec 2011 22:53:39 +0100</pubDate></item><item><title>Products - WebStart - Unable to import to mysql</title><description>How are you trying to set MySQL root password?</description><pubDate>Tue, 06 Dec 2011 22:12:10 +0100</pubDate></item><item><title>Products - WebStart - Unable to import to mysql</title><description>I am using the phpmyadmin that is included in the release and it is this that is a beta version.&#xD;
&#xD;
When I use xampp with phpmyadmin I can import just fine therefore no issue with my system.&#xD;
&#xD;
Also it is impossible to set the mysql password any where as it just resorts back to no password on every restart.&#xD;
&#xD;
It maybe that the package is corrupt in some can you provide me with one that you have tested?&#xD;
&#xD;
&#xD;
Kind Regards</description><pubDate>Tue, 06 Dec 2011 22:11:11 +0100</pubDate></item><item><title>Products - WebStart - Webstart Documentation</title><description>The manual is available inside the application, from the 'Help' menu...</description><pubDate>Tue, 06 Dec 2011 22:01:54 +0100</pubDate></item><item><title>Products - WebStart - Unable to import to mysql</title><description>You may want to provide additional details.&#xD;
As it is your question is just too vague.&#xD;
&#xD;
How are you trying to import data into MySQL? With which software?&#xD;
I won't be able to help without informations about this.&#xD;
&#xD;
Also note importing data into MySQL is generally done with the 'mysql' command (CLI).&#xD;
Just take a look at the manual if you don't know it already (meaning you should probably).&#xD;
&#xD;
For instance, importing a dump stored in a file called 'db.sql', to a database named 'foo' simply require this:&#xD;
&#xD;
    mysql foo &amp;lt; db.sql&#xD;
&#xD;
I don't know why you are talking about beta software. The example I wrote is just (very) basic stuff, that everyone doing server-side web development should know.&#xD;
&#xD;
If you have issues with this, just ask. But please try it.&#xD;
&#xD;
Have a nice day,</description><pubDate>Tue, 06 Dec 2011 22:01:00 +0100</pubDate></item><item><title>Products - WebStart - Unable to import to mysql</title><description>I get this every time I try and import:&#xD;
No data was received to import. Either no file name was submitted, or the file size exceeded the maximum size permitted by your PHP configuration. See FAQ 1.16.&#xD;
&#xD;
It makes no difference what settings i apply nothing works and why are you shipping paid for software with opensource beta releases please release with stable versions.&#xD;
&#xD;
can you help me solve this issue?</description><pubDate>Fri, 02 Dec 2011 00:36:09 +0100</pubDate></item><item><title>Products - WebStart - Webstart Documentation</title><description>Hi,&#xD;
&#xD;
Is there a link to a Webstart manual?&#xD;
&#xD;
Thanks.</description><pubDate>Fri, 18 Nov 2011 14:20:46 +0100</pubDate></item><item><title>Products - WebStart - Apache won't start after update to PHP 5.3.8</title><description>I have the same problem &#xE2;&#x20AC;&#x201D; Apache 2 does not start, tried e-mailing the author of this application and yet no reply. There are other people who complain of this problem as well.  This is really disappointing and creates a lot of bad feelings for purchasing a software that is not able of performing it's basic functions.</description><pubDate>Wed, 26 Oct 2011 12:30:38 +0200</pubDate></item><item><title>Products - WebStart - Setting a MySQL password</title><description>Hello,&#xD;
&#xD;
here is the next bug I found in WebStart 1.1.1 ...&#xD;
&#xD;
When changing the MySQL password through UI it doesn't get set.&#xD;
&#xD;
WebStart says &amp;quot;The password for the MySQL root user has been sucessfully changed. The application's preferences have been updated with the new value as well, so you don't need to re-enter it.&amp;quot;&#xD;
&#xD;
The second part of this message is true as the applications preferences have been updated resulting that you can't start/stop MySQL from this point on.&#xD;
&#xD;
To get this working again you have to remove the passwort in preferences because there still is no passwort for MySQL root user set.&#xD;
&#xD;
Setting a password is possible through PHPMyAdmin for example, if you did that, then you have to put the password in WebStarts preferences to be able to start/stop the MySQL server.&#xD;
&#xD;
Hope this could help anyone experiencing the same problem.&#xD;
&#xD;
.gee23</description><pubDate>Fri, 14 Oct 2011 14:45:34 +0200</pubDate></item><item><title>Products - WebStart - Apache won't start after update to PHP 5.3.8</title><description>Hello,&#xD;
&#xD;
I just started using WebStart 1.1.1 but when I apply the update for PHP 5.3.8 and EA_Accelerator 5.3.8 the Apache server won't start anymore.&#xD;
&#xD;
I also tried a full reinstall but as soon as I apply the updates Apache stops working.&#xD;
&#xD;
The PHP panel of WebStart doesn't display any information in the &amp;quot;Software version&amp;quot; field.&#xD;
&#xD;
In the system console I get the following messages:&#xD;
&#xD;
(when changing to PHP 5.3.8)&#xD;
&#xD;
13.10.11 15:39:06	[0x0-0x76076].com.eosgarden.WebStart[1166]	dyld: Library not loaded: /usr/lib/libltdl.7.dylib&#xD;
13.10.11 15:39:06	[0x0-0x76076].com.eosgarden.WebStart[1166]	  Referenced from: /usr/local/webstart/sw/php-5.3/bin/php&#xD;
13.10.11 15:39:06	[0x0-0x76076].com.eosgarden.WebStart[1166]	  Reason: Incompatible library version: php requires version 10.0.0 or later, but libltdl.7.dylib provides version 9.0.0&#xD;
13.10.11 15:39:06	ReportCrash[2377]	Saved crash report for php[2421] version ??? (???) to /Users/g23/Library/Logs/DiagnosticReports/php_2011-10-13-153906_silversurfer.crash&#xD;
&#xD;
(and when trying to start Apache)&#xD;
&#xD;
13.10.11 15:39:18	[0x0-0x76076].com.eosgarden.WebStart[1166]	httpd: Syntax error on line 54 of /usr/local/webstart/sw/apache2/conf/httpd.conf: Syntax error on line 2 of /usr/local/webstart/sw/apache2/conf/mods-enabled/libphp-5.3.load: Cannot load /usr/local/webstart/sw/apache2/modules/libphp-5.3.so into server: dlopen(/usr/local/webstart/sw/apache2/modules/libphp-5.3.so, 10): Library not loaded: /usr/lib/libltdl.7.dylib\n  Referenced from: /usr/local/webstart/sw/apache2/modules/libphp-5.3.so\n  Reason: Incompatible library version: libphp-5.3.so requires version 10.0.0 or later, but libltdl.7.dylib provides version 9.0.0&#xD;
&#xD;
The crash report shows:&#xD;
&#xD;
Process:         php [2421]&#xD;
Path:            /usr/local/webstart/sw/php-5.3/bin/php&#xD;
Identifier:      php&#xD;
Version:         ??? (???)&#xD;
Code Type:       X86-64 (Native)&#xD;
Parent Process:  WebStart [1166]&#xD;
&#xD;
Date/Time:       2011-10-13 15:39:06.724 +0200&#xD;
OS Version:      Mac OS X 10.6.8 (10K549)&#xD;
Report Version:  6&#xD;
&#xD;
Exception Type:  EXC_BREAKPOINT (SIGTRAP)&#xD;
Exception Codes: 0x0000000000000002, 0x0000000000000000&#xD;
Crashed Thread:  0&#xD;
&#xD;
Dyld Error Message:&#xD;
  Library not loaded: /usr/lib/libltdl.7.dylib&#xD;
  Referenced from: /usr/local/webstart/sw/php-5.3/bin/php&#xD;
  Reason: Incompatible library version: php requires version 10.0.0 or later, but libltdl.7.dylib provides version 9.0.0&#xD;
&#xD;
Binary Images:&#xD;
    0x7fff5fc00000 -     0x7fff5fc3be0f  dyld 132.1 (???) &amp;lt;29DECB19-0193-2575-D838-CF743F0400B2&amp;gt; /usr/lib/dyld&#xD;
&#xD;
&#xD;
Does anyone know how to fix this problem?&#xD;
&#xD;
.gee23</description><pubDate>Thu, 13 Oct 2011 16:06:15 +0200</pubDate></item><item><title>Products - WebStart - Disk Location</title><description>Great &#xE2;&#x20AC;&#x201C;&#xC2;&#xA0;thanks for the update. I look forward to the next release :)</description><pubDate>Tue, 13 Sep 2011 16:10:55 +0200</pubDate></item><item><title>Products - WebStart - OSX 10.7 Lion compatibility</title><description>I know, but this is unfortunately Safari related.&#xD;
I'll see if I can find a workaround for the next release.</description><pubDate>Mon, 12 Sep 2011 21:37:38 +0200</pubDate></item><item><title>Products - WebStart - OSX 10.7 Lion compatibility</title><description>Bonjour,&#xD;
J'ai aussi le probl&#xC3;&#xA8;me, mais c'est vrai que bizarrement sous Firefox &#xC3;&#xA7;a tourne, donc &#xC3;&#xA7;a peut aller mais c'est g&#xC3;&#xAA;nant </description><pubDate>Mon, 12 Sep 2011 21:26:30 +0200</pubDate></item><item><title>Products - WebStart - Disk Location</title><description>Yes, this feature is in the top item in the next release's to-do list... : )</description><pubDate>Mon, 12 Sep 2011 18:52:56 +0200</pubDate></item><item><title>Products - WebStart - Disk Location</title><description>I also would like to see the ability for this, especially the disk location of each virtualhost. Is it possible that this feature could be added in the near future?&#xD;
&#xD;
Thanks.</description><pubDate>Mon, 12 Sep 2011 15:51:17 +0200</pubDate></item><item><title>Products - WebStart - Issues on first install</title><description>Hi there : )&#xD;
&#xD;
I've planned to release some updates for the Apache server and PHP, so I'll try to release an update for PHPMyAdmin as well...&#xD;
&#xD;
Where have you changed the MySQL root password? From the WebStart window or from the preferences panel? If you did it from the WebStart window, it should be ok.&#xD;
&#xD;
The uninstaller is available from the installation disk image. It's a separate application.&#xD;
&#xD;
Which modules do you need to install? You are speaking about ImageMagick, but it's already available, as well as GraphicksMagick,&#xD;
&#xD;
Actually, you can't use a specific document root, from the WebStart interface.&#xD;
However, you can create domains from the interface and then create symbolic links, to any directory on your disk. Just ask if you need help with that part.</description><pubDate>Thu, 25 Aug 2011 20:30:26 +0200</pubDate></item><item><title>Products - WebStart - Issues on first install</title><description>No replies for a licensed customer ?</description><pubDate>Fri, 19 Aug 2011 14:41:14 +0200</pubDate></item><item><title>Products - WebStart - Issues on first install</title><description>Sorry, adding this issue:&#xD;
&#xD;
- I don't understand where i can find the deactivate procedure.&#xD;
&#xD;
Thanks again.</description><pubDate>Sun, 14 Aug 2011 15:26:12 +0200</pubDate></item><item><title>Products - WebStart - Issues on first install</title><description>Sorry, adding this issue:&#xD;
&#xD;
- I don't understand where i can find the deactivate procedure.&#xD;
&#xD;
Thanks again.</description><pubDate>Sun, 14 Aug 2011 15:26:11 +0200</pubDate></item><item><title>Products - WebStart - Issues on first install</title><description>Hi,&#xD;
have some issues here:&#xD;
&#xD;
- the phpmyadmin is in beta version and required an upgrade&#xD;
- have changing the mysql root password and now phpmyadmin is not working anymore (no php errors logs)&#xD;
- the help guide have some informations about uninstalling procedure, but the path where the uninstaller is located is not mentioned.&#xD;
- I don't understand how install additional modules (Imagick as example)&#xD;
- I migrate from MAMP and I want to use my server document root to /Users/username/Sites&#xD;
&#xD;
I'm glad if you can me help me on these problems, thanks a lot.</description><pubDate>Sun, 14 Aug 2011 15:25:13 +0200</pubDate></item><item><title>Products - WebStart - PHPAdmin login </title><description>You can use any MySQL user account, if you created some.&#xD;
Otherwise, use 'root' as username, and use the password you changed in WebStart.</description><pubDate>Tue, 02 Aug 2011 13:51:46 +0200</pubDate></item><item><title>Products - WebStart - PHPAdmin login </title><description>I can't get logged in to the PHPAdmin panel.  I have changed the password in the MySql section.  Is this the password it is looking for?  What user name is it looking for?  Sorry, but stumped.</description><pubDate>Tue, 02 Aug 2011 13:36:25 +0200</pubDate></item><item><title>Products - WebStart - OSX 10.7 Lion compatibility</title><description>Looks like a Safari bug...&#xD;
&#xD;
Try in another browser, it just works...</description><pubDate>Mon, 25 Jul 2011 11:39:29 +0200</pubDate></item><item><title>Products - WebStart - OSX 10.7 Lion compatibility</title><description>Is WebStart compatible with OSX Lion ?&#xD;
Safari can't find the local server !</description><pubDate>Mon, 25 Jul 2011 08:03:40 +0200</pubDate></item><item><title>Products - WebStart - Access from LAN</title><description>I also have the same doubt alexb has. How can I acces my site from an iPad?</description><pubDate>Mon, 11 Jul 2011 20:58:39 +0200</pubDate></item><item><title>Products - WebStart - Disk Location</title><description>Hi, I have the same doubt.</description><pubDate>Mon, 11 Jul 2011 19:14:31 +0200</pubDate></item><item><title>Products - WebStart - Disk Location</title><description>Hi,&#xD;
&#xD;
I'm new to Webstart from MAMP and I'm experiencing some problems with the transition.&#xD;
&#xD;
- How can I change from the GUI the disk location to each virtualhost?&#xD;
- How can I set the configuration per virtualhost?&#xD;
&#xD;
Regards</description><pubDate>Mon, 11 Jul 2011 08:20:34 +0200</pubDate></item><item><title>Products - WebStart - MIME types</title><description>found it, fixed.</description><pubDate>Mon, 13 Jun 2011 18:53:54 +0200</pubDate></item><item><title>Products - WebStart - MIME types</title><description>Hi,&#xD;
&#xD;
Where can I add new mim types? I want to use a .htc file but can't see the option anywhere in Webstart to edit it.&#xD;
&#xD;
I want to add &#xD;
&#xD;
`Content-Type: text/x-component`&#xD;
&#xD;
Any help is appreciated.&#xD;
&#xD;
Thanks!&#xD;
</description><pubDate>Mon, 13 Jun 2011 16:23:34 +0200</pubDate></item><item><title>Products - WebStart - Can't stop MySQL</title><description>Hi,&#xD;
&#xD;
It usually means that a MySQL password is set, but not configured in WebStart.&#xD;
SImply enter the password in the preferences dialog, and everything should be fine.</description><pubDate>Mon, 16 May 2011 16:53:28 +0200</pubDate></item><item><title>Products - WebStart - Uninstall and deactivation button</title><description>Hello,&#xD;
&#xD;
The uninstaller is located on the DMG file, along with the installer.&#xD;
You can de-activate your license from there.</description><pubDate>Mon, 16 May 2011 16:52:34 +0200</pubDate></item><item><title>Products - WebStart - Droits d'acc&#xC3;&#xA8;s </title><description>Bonjour,&#xD;
&#xD;
Pouvez vous me donner la commande compl&#xC3;&#xA8;te que vous utilisez pour changer les permissions?</description><pubDate>Mon, 16 May 2011 16:51:22 +0200</pubDate></item><item><title>Products - WebStart - Droits d'acc&#xC3;&#xA8;s </title><description>ne me permets toujours pas d'uploader un fichier.&#xD;
&#xD;
Lorsque je tente d'afficher une image contenue dans ce dossier , l'image n'apparait pas&#xD;
&#xD;
php me dit :&#xD;
&#xD;
is_readable : ok&#xD;
is_dir : ok&#xD;
is_file : pour un fichier d&#xC3;&#xA9;fini &amp;quot;ok&amp;quot;&#xD;
is_executable : ko&#xD;
&#xD;
</description><pubDate>Mon, 16 May 2011 11:18:12 +0200</pubDate></item><item><title>Products - WebStart - Droits d'acc&#xC3;&#xA8;s </title><description>Dans mon repertoire WWW, je dispose d'un repertoire web/uploads qui doit &amp;quot;writable&amp;quot; avec les droits 777, or j'ai tent&#xC3;&#xA9; a plusieurs reprises de modifier les droits par des chmods, mais ce dossier ne me permet toujours p</description><pubDate>Mon, 16 May 2011 11:16:24 +0200</pubDate></item><item><title>Products - WebStart - Uninstall and deactivation button</title><description>Hi, according the Help there is an uninstaller, and a button for deactivating. Unfortunately I can't find them.&#xD;
&#xD;
Thanks!</description><pubDate>Sun, 15 May 2011 01:44:03 +0200</pubDate></item><item><title>Products - WebStart - Can't stop MySQL</title><description>Hi,&#xD;
I can start the MySQL server, but can't stop it, or restart.&#xD;
I had a previus instance of MySQL, downloaded and installed from MySQL's website. But it was removed. What is the solution?&#xD;
&#xD;
Thanks,&#xD;
&#xD;
nym</description><pubDate>Sun, 15 May 2011 01:27:12 +0200</pubDate></item><item><title>Products - WebStart - Access from LAN</title><description>Hi, &#xD;
&#xD;
I have the exact same issue. How can I access my site on the server from for example an iPad. I have setup my site on the server as mysite. What is the structure of the URL that I should type on the iPad. I have tried serverip/mysite but that does not work. the only thing that works is serverip/webstart which takes me to the servers webstart info page. &#xD;
&#xD;
Thanks in advance.</description><pubDate>Sun, 01 May 2011 22:29:52 +0200</pubDate></item><item><title>Products - WebStart - Questions pr&#xC3;&#xA9;alables achat</title><description>Bonjour,&#xD;
&#xD;
D&#xC3;&#xA9;sol&#xC3;&#xA9; pour le d&#xC3;&#xA9;lais de r&#xC3;&#xA9;ponse... Le week-end de P&#xC3;&#xA2;ques, c'est toujours plus compliqu&#xC3;&#xA9; : )&#xD;
&#xD;
Merci pour bug report. J'ai corrig&#xC3;&#xA9; le probl&#xC3;&#xA8;me. Et non, ce n'est pas h&#xC3;&#xA9;berg&#xC3;&#xA9; sur du WebStart, mais sur un VPS...&#xD;
&#xD;
Je vais essayer de r&#xC3;&#xA9;pondre au mieux &#xC3;&#xA0; vos questions:&#xD;
&#xD;
1) WebStart peut &#xC3;&#xAA;tre configur&#xC3;&#xA9; via le GUI pour que les serveurs d&#xC3;&#xA9;marrent automatiquement avec la machine.&#xD;
&#xD;
2) Il n'y a malheureusement pas de version d&#xC3;&#xA9;mo actuellement. J'ai quelques vid&#xC3;&#xA9;os qui peuvent vous donner une id&#xC3;&#xA9;e un peu plus pr&#xC3;&#xA9;cise: http://www.eosgarden.com/en/products/webstart/demo/&#xD;
&#xD;
3) Le dossier de stockage de MySQL est d&#xC3;&#xA9;fini sur /usr/local/webstart/data/mysql. Pour le changer, il faudrait recompiler MySQL, mais un lien symbolique peut fonctionner sans soucis.&#xD;
&#xD;
4) Le dossier racine ne peut actuellement pas &#xC3;&#xAA;tre choisis. Les vhosts sont rang&#xC3;&#xA9;s dans /Library/WebStart/WWW/. L&#xC3;&#xA0; aussi, un lien symbolique est parfaitement envisageable.</description><pubDate>Sat, 23 Apr 2011 13:34:16 +0200</pubDate></item><item><title>Products - WebStart - Questions pr&#xC3;&#xA9;alables achat</title><description>Hello,&#xD;
&#xD;
Y-a-t-il vraiment quelqu'un ici ?&#xD;
&#xD;
Aussi, impossible d'acc&#xC3;&#xA9;der &#xC3;&#xA0; la deuxi&#xC3;&#xA8;me page de ce forum depuis que j'ai post&#xC3;&#xA9; le message pr&#xC3;&#xA9;c&#xC3;&#xA9;dent:&#xD;
&#xD;
Fatal error: Undefined class constant 'POSTS_LIMIT' in /var/www/clients/client0/web12/web/classes/Eos/Forum/Category/View.class.php on line 84&#xD;
&#xD;
J'esp&#xC3;&#xA8;re que c'est pas h&#xC3;&#xA9;berg&#xC3;&#xA9; sur webstart ...&#xD;
P.</description><pubDate>Sat, 23 Apr 2011 13:27:29 +0200</pubDate></item><item><title>Products - WebStart - H&#xC3;&#xA9;bergement multisite</title><description>Bonjour,&#xD;
&#xD;
Mac Mini serveur incluant un serveur de DNS, c'est &#xC3;&#xA0; priori possible, par ex en cr&#xC3;&#xA9;ant un tld comme .dev interne au LAN. &#xD;
&#xD;
Pour ma part, j'ai utilis&#xC3;&#xA9; dnsmasq (DNS forwarder) sur un OSX client, &#xC3;&#xA7;a a l'air de fonctionner, avec Mamp Pro en tout cas. J'esp&#xC3;&#xA8;re pouvoir tester avec Webstart.&#xD;
&#xD;
Utiliser DynDNS est une solution mais il faut un nom de domaine public enregistr&#xC3;&#xA9; (facile) et surtout cela implique quand m&#xC3;&#xAA;me que chaque requ&#xC3;&#xAA;te vers la machine de test install&#xC3;&#xA9; &#xC3;&#xA0; 2m de moi passe par l'ext&#xC3;&#xA9;rieur de mon LAN puisque la r&#xC3;&#xA9;solution DynDNS va retourner l'adresse IP public de mon acc&#xC3;&#xA8;s internet. Enfin c'est mon impression. Le DynDNS est surtout utile si on veut acc&#xC3;&#xA9;der &#xC3;&#xA0; un serveur du LAN depuis ailleurs.&#xD;
&#xD;
P.</description><pubDate>Wed, 20 Apr 2011 10:39:35 +0200</pubDate></item><item><title>Products - WebStart - Questions pr&#xC3;&#xA9;alables achat</title><description>Bonjour,&#xD;
&#xD;
J'avais commenc&#xC3;&#xA9; &#xC3;&#xA0; r&#xC3;&#xA9;diger en anglais puis j'ai r&#xC3;&#xA9;alis&#xC3;&#xA9; que l'on parle fran&#xC3;&#xA7;ais ici :-)&#xD;
&#xD;
Quelques questions avant achat:&#xD;
&#xD;
- est-il possible de d&#xC3;&#xA9;marrer webstart sur une machine m&#xC3;&#xAA;me si personne n'est logg&#xC3;&#xA9;e (&#xC3;&#xA7;a pas s&#xC3;&#xBB;r que ce soit du fran&#xC3;&#xA7;ais) dessus ? (je souhaite qu'un salari&#xC3;&#xA9; puisse d&#xC3;&#xA9;marrer la machine &amp;quot;serveur&amp;quot; sans avoir &#xC3;&#xA0; se logger)&#xD;
&#xD;
- y-a-t-il moyen de tester la version compl&#xC3;&#xA8;te (pas lite) ? Je suis en train de tester Mamp Pro car j'ai absolument besoin pour un dev d'acc&#xC3;&#xA9;der &#xC3;&#xA0; mon serveur de d&#xC3;&#xA9;veloppement avec des noms de domaines et sous-domaines (&#xC3;&#xA0; ce propos j'ai mis en place un syst&#xC3;&#xA8;me utilisant dnsmasq qui semble bien fonctionner, l'avantage sur votre hostmanager &#xC3;&#xA9;tant que je n'ai pas besoin de faire la manipulation sur chaque machine qui doit acc&#xC3;&#xA9;der au serveur, &#xC3;&#xA7;a marche sur les PC, etc ... c'est en fait un DNS-forwarder sans n&#xC3;&#xA9;cessiter un vrai serveur DNS). Mamp Pro marche, j'aimerai v&#xC3;&#xA9;rifier au pr&#xC3;&#xA9;alable que les vhosts marchent de la m&#xC3;&#xAA;me fa&#xC3;&#xA7;on avec Webstart&#xD;
&#xD;
- peut-on d&#xC3;&#xA9;cider du lieu de stockage de mysql ? (avec MampPro je suis oblig&#xC3;&#xA9; de faire un lien symbolique vers un autre dossier, &#xC3;&#xA7;a marche mais &#xC3;&#xA9;cras&#xC3;&#xA9; &#xC3;&#xA0; chaque mise &#xC3;&#xA0; jour de Mamp)&#xD;
&#xD;
- peut-on d&#xC3;&#xA9;cider du dossier racine ? (oui MampPro) (ces questions car je souhaite que tous mes fichiers de sites soient bien rang&#xC3;&#xA9;s &#xC3;&#xA0; un endroit pr&#xC3;&#xA9;cis pour des raisons de sauvegarde)&#xD;
&#xD;
Merci d'avance !&#xD;
Pierre</description><pubDate>Wed, 20 Apr 2011 10:09:41 +0200</pubDate></item><item><title>Products - WebStart - PHP not executed</title><description>Thanks for your reply Jean-David.&#xD;
&#xD;
Weird problem indeed. In fact, the whole team had a look at it but couldn't come up with some decent explanation.&#xD;
It doesn't seem a permission issue since there is no difference in user/group/permissions before and after saving the file again.&#xD;
If it wasn't for the fact that MAMP serves the pages just fine, I wouldn't have bothered you with this issue, but like it is now it seems to be related somehow to Webstart.</description><pubDate>Thu, 07 Apr 2011 00:10:34 +0200</pubDate></item><item><title>Products - WebStart - PHP not executed</title><description>Hello,&#xD;
&#xD;
That's a very weird problem. Maybe it's a permission issue.&#xD;
Have you checked the permissions of the files when you do your checkout from SVN?</description><pubDate>Wed, 06 Apr 2011 12:03:21 +0200</pubDate></item><item><title>Products - WebStart - acc&#xC3;&#xA8;s dans le LAN</title><description>Bonjour,&#xD;
&#xD;
Pour cela, il faut que l'ordinateur de votre LAN soit configur&#xC3;&#xA9;e pour faire pointer le nom du site vers l'adresse IP de la machine avec WebStart.&#xD;
&#xD;
Cela peut se faire en &#xC3;&#xA9;ditant le fichier /etc/hosts, ou avec l'aide de cette application:&#xD;
http://www.eosgarden.com/en/freeware/host-manager/</description><pubDate>Wed, 06 Apr 2011 12:00:40 +0200</pubDate></item><item><title>Products - WebStart - Access from LAN</title><description>Hi,&#xD;
&#xD;
You need to configure the other computer so the site's name points to the IP address of the machine running WebStart.&#xD;
&#xD;
This can be done by editing the /etc/hosts file, or with that little application:&#xD;
http://www.eosgarden.com/en/freeware/host-manager/</description><pubDate>Wed, 06 Apr 2011 11:58:40 +0200</pubDate></item><item><title>Products - WebStart - Comment acc&#xC3;&#xA9;der depuis le reseau local</title><description>Pour cela, il faut modifier le fichier hosts des mobiles, pour qu'un nom de domaine sp&#xC3;&#xA9;cifique pointe sur l'adresse IP de la machine avec WebStart.&#xD;
&#xD;
Su iPhone, ce n'est malheureusement pas possible sans JailBreak...</description><pubDate>Wed, 06 Apr 2011 11:57:21 +0200</pubDate></item><item><title>Products - WebStart - H&#xC3;&#xA9;bergement multisite</title><description>Bonjour,&#xD;
&#xD;
Tout d&#xC3;&#xA9;pends de votre configuration r&#xC3;&#xA9;seau.&#xD;
WebStart n'inclus pas de serveur DNS, hormis la fonctionnalit&#xC3;&#xA9; DynDNS.&#xD;
&#xD;
Pour reproduire un tel fonctionnement, il faut donc installer un serveur DNS qui puisse faire le lien entre vos noms de domaine et l'ordinateur sur lequel WebStart est install&#xC3;&#xA9;.&#xD;
&#xD;
En esp&#xC3;&#xA9;rant que cela r&#xC3;&#xA9;ponde &#xC3;&#xA0; vos questions,</description><pubDate>Wed, 06 Apr 2011 11:54:46 +0200</pubDate></item><item><title>Products - WebStart - H&#xC3;&#xA9;bergement multisite</title><description>Faut-il comprendre que ce n'est pas possible ?</description><pubDate>Wed, 06 Apr 2011 11:49:10 +0200</pubDate></item><item><title>Products - WebStart - PostgreSQL</title><description>Si je suis le seul &#xC3;&#xA0; en avoir besoin, je pense pas que &#xC3;&#xA7;a soit indispensable, mais merci quand m&#xC3;&#xAA;me ^^</description><pubDate>Fri, 01 Apr 2011 19:21:11 +0200</pubDate></item><item><title>Products - WebStart - SSL</title><description>Nickel, j'aurai pas pens&#xC3;&#xA9; que le symlink pouvait marcher, sinon j'aurai fait &#xC3;&#xA7;a d&#xC3;&#xA8;s le d&#xC3;&#xA9;but. Merci ;)&#xD;
&#xD;
Par contre, pour info, la commande c'est l'inverse: sudo ln -s localhost localhost-ssl</description><pubDate>Fri, 01 Apr 2011 19:19:44 +0200</pubDate></item><item><title>Products - WebStart - PostgreSQL</title><description>L&#xC3;&#xA0; je suis en train de compiler PostgreSQL pour WebStart...&#xD;
&#xD;
Je vous tiendrais donc au courant : )</description><pubDate>Fri, 01 Apr 2011 19:17:18 +0200</pubDate></item><item><title>Products - WebStart - PostgreSQL</title><description>J'esp&#xC3;&#xA9;rais justement ne pas avoir &#xC3;&#xA0; re-compiler PHP et utiliser pgsql comme une extension (j'ai dj&#xC3;&#xA9;&#xC3;&#xA0; vu &#xC3;&#xA7;a sous Windows, mais j'avoue que sous Mac je sais m&#xC3;&#xAA;me pas si c'est possible).&#xD;
C'est pas grave, je vais rester avec PDO :) &#xD;
Merci :)</description><pubDate>Fri, 01 Apr 2011 19:15:19 +0200</pubDate></item><item><title>Products - WebStart - SSL</title><description>Du coup, le symlink est la solution id&#xC3;&#xA9;ale...&#xD;
&#xD;
Un Vhost normal, sans SSL, est un symlink avec le suffixe -ssl.&#xD;
&#xD;
Par exemple, pour localhost:&#xD;
&#xD;
cd /Library/WebStart/WWW&#xD;
sudo ln -s localhost-ssl localhost&#xD;
&#xD;
Et voil&#xC3;&#xA0; :)</description><pubDate>Fri, 01 Apr 2011 19:15:08 +0200</pubDate></item><item><title>Products - WebStart - SSL</title><description>Petite pr&#xC3;&#xA9;cision: j'aimerai trouver un moyen simple d'activer SSL sur un site sans pour autant se retrouver avec deux r&#xC3;&#xA9;pertoires &#xC3;&#xA0; g&#xC3;&#xA9;rer :3 (garder le m&#xC3;&#xAA;me r&#xC3;&#xA9;pertoire et jouer avec les ports pour faire la transition entre les deux)</description><pubDate>Fri, 01 Apr 2011 19:11:58 +0200</pubDate></item><item><title>Products - WebStart - SSL</title><description>Bonjour,&#xD;
&#xD;
Il y a plusieurs fa&#xC3;&#xA7;ons de faire.&#xD;
Un site SSL sous WebStart est un VHost dont le nom se termine par -ssl.&#xD;
&#xD;
Donc pour activer SSL, il suffit de renommer le VHost en question.&#xD;
&#xD;
Pour avoir les deux, un symlink fait parfaitement l'affaire.</description><pubDate>Fri, 01 Apr 2011 19:11:11 +0200</pubDate></item><item><title>Products - WebStart - SSL</title><description>Bonjour,&#xD;
&#xD;
Petite question: j'ai vu que dans &amp;quot;Sites&amp;quot; on voit la notion de SSL. Y'aurait-il un moyen rapide (peut-&#xC3;&#xAA;tre cach&#xC3;&#xA9;) d'activer SSL sur un site ?&#xD;
&#xD;
Merci d'avance ;)</description><pubDate>Fri, 01 Apr 2011 19:08:30 +0200</pubDate></item><item><title>Products - WebStart - PostgreSQL</title><description>Bonjour,&#xD;
&#xD;
Le probl&#xC3;&#xA8;me est que PostgreSQL n'est pas disponible dans WebStart.&#xD;
Et pour activer cette extension, il est n&#xC3;&#xA9;cessaire de re-compiler PHP...&#xD;
&#xD;
Je vais voir si je peux int&#xC3;&#xA9;grer PostreSQL comme update, et modifier PHP... :)</description><pubDate>Fri, 01 Apr 2011 19:07:52 +0200</pubDate></item><item><title>Products - WebStart - PostgreSQL</title><description>Bonjour, &#xD;
&#xD;
J'aurai une petite question rapide :)&#xD;
J'aimerai pouvoir utiliser l'extension pgsql de PHP (pas la PDO que j'ai d&#xC3;&#xA9;j&#xC3;&#xA0; r&#xC3;&#xA9;ussi &#xC3;&#xA0; installer gr&#xC3;&#xA2;ce &#xC3;&#xA0; PECL).&#xD;
Quelqu'un aurait une petite astuce pour pouvoir activer cette extension dans PHP5.3 ?&#xD;
&#xD;
Merci d'avance ;)</description><pubDate>Fri, 01 Apr 2011 19:04:09 +0200</pubDate></item><item><title>Products - WebStart - acc&#xC3;&#xA8;s dans le LAN</title><description>Bonjour,  ayant install&#xC3;&#xA9; Webstart et mes fichiers dans WWW/localhost/public/monsite  tout fonctionne parfaitement sur l'ordinateur&amp;quot; serveur&amp;quot;.  Par contre, si je tente d'y acc&#xC3;&#xA9;der &#xC3;&#xA0; partir d'un ordinateur de mon LAN en tapant http://adresse_ip_serveur/monsite j'obtiens l'erreur 403.&#xD;
  http://adresse_ip_serveur/webstart fonctionne cependant et m'affiche la console de webstart.&#xD;
&#xD;
Quelqu'un pourrait m'aider ?  J'aimerais me passer de MAMP Pro...&#xD;
Merci&#xD;
&#xD;
M</description><pubDate>Thu, 31 Mar 2011 18:59:19 +0200</pubDate></item><item><title>Products - WebStart - Comment acc&#xC3;&#xA9;der depuis le reseau local</title><description>Iphone et Android,&#xD;
Poser autrement, comment acceder aux site developp&#xE9; depuis le lan.</description><pubDate>Thu, 31 Mar 2011 15:35:33 +0200</pubDate></item><item><title>Products - WebStart - PHP not executed</title><description>Hi,&#xD;
&#xD;
I'm struggling with getting PHP to work with Webstart in a specific situation. In fact, if  I checkout a project from my SVN repository and setup a vhost, PHP is not executed.&#xD;
&#xD;
This is my vhost:&#xD;
&#xD;
&amp;lt;VirtualHost *&amp;gt;&#xD;
  ServerName www.dev-mysite.com&#xD;
  DocumentRoot /Users/pminne/Webprojects/www.mysite.com/web&#xD;
  &amp;lt;Directory /&amp;gt;&#xD;
	AllowOverride All&#xD;
  &amp;lt;/Directory&amp;gt;&#xD;
&amp;lt;/VirtualHost&amp;gt;&#xD;
&#xD;
As you see, it's not located in the default docroot of Webstart, but shouldn't be an issue.&#xD;
Now the strange thing is that when I open the PHP files in a text editor and save it again, the problem is fixed and PHP is executed. However, absolutely nothing in the file has changed, not even permissions or character encoding.&#xD;
&#xD;
The same vhost is working properly with MAMP by the way.&#xD;
&#xD;
I don't really want to open/save every file I checkout, so I would like to find what's causing this problem. Anyone?</description><pubDate>Thu, 31 Mar 2011 10:41:29 +0200</pubDate></item><item><title>Products - WebStart - Access from LAN</title><description>Hello, after installation of two sites : localhost and site2.test I can access my two sites from the server computer but unable to access from another computer on LAN.  Anyway I can access the configuration with IP_ADRESS/webstart...&#xD;
Any help is appreciated.&#xD;
Thanks&#xD;
&#xD;
M</description><pubDate>Thu, 31 Mar 2011 07:51:38 +0200</pubDate></item><item><title>Products - WebStart - aliases in httpd-vhosts.conf</title><description>You should create a regular vhost, and put all your files in it.&#xD;
&#xD;
Lets say you create sf.localhost. Your WWW directory will look like:&#xD;
&#xD;
WWW&#xD;
 - localhost/public&#xD;
 - sf.localhost/public&#xD;
&#xD;
Put the Symfony directory in sf.localhost.&#xD;
You can then delete the public directory, and create a symlink to the symfony data/web directory.&#xD;
   </description><pubDate>Wed, 30 Mar 2011 14:14:16 +0200</pubDate></item><item><title>Products - WebStart - aliases in httpd-vhosts.conf</title><description>I need for one of my projects, to have a directory like this&#xD;
&#xD;
-WWW&#xD;
--project&#xD;
--my alias directory &#xD;
&#xD;
I need to have an alias to &amp;quot;my alias directory&amp;quot; &#xD;
&#xD;
But apache gives me an error into the log:&#xD;
[error] [client 127.0.0.1] client denied by server configuration: /Library/WebStart/WWW/symfony1.2/data/web/sf/sf_web_debug/images/sf.png&#xD;
&#xD;
I've tried to modify access rights on the &amp;quot;alias directory&amp;quot; folder, to give a full-access to everyone, but nothing change.&#xD;
&#xD;
In my Vhost :&#xD;
Alias /sf &amp;quot;/Library/WebStart/WWW/symfony1.2/data/web/sf&amp;quot;&#xD;
&#xD;
When i get an url of an image in my browser (for example http://www.eneide2.dev/sf/sf_web_debug/images/sf.png -- the file exists), i get a 403 Error from apache&#xD;
&#xD;
&#xD;
</description><pubDate>Wed, 30 Mar 2011 14:10:06 +0200</pubDate></item><item><title>Products - WebStart - Pear packages needed</title><description>You can edit the PHP ini file from the WebStart application.&#xD;
&#xD;
PEAR files are located in /usr/local/webstart/sw/php-5.x/lib/php/PEAR</description><pubDate>Wed, 30 Mar 2011 12:03:59 +0200</pubDate></item><item><title>Products - WebStart - Pear packages needed</title><description>Installing pear with the command line doesn&amp;quot;t alter the php.ini like in windows (with the wamp installer). I don't find the folder to add in php.ini include path.&#xD;
&#xD;
Where are located the pear files ?&#xD;
&#xD;
</description><pubDate>Wed, 30 Mar 2011 12:02:06 +0200</pubDate></item><item><title>Products - WebStart - Pear packages needed</title><description>thanks for your quick reply !</description><pubDate>Wed, 30 Mar 2011 11:15:58 +0200</pubDate></item><item><title>Products - WebStart - Pear packages needed</title><description>Pear is available in WebStart.&#xD;
&#xD;
You can use to following command to invoke the pear CLI utility:&#xD;
&#xD;
/usr/local/webstart/sw/php-5.2/bin/pear&#xD;
&#xD;
or&#xD;
&#xD;
usr/local/webstart/sw/php-5.3/bin/pear&#xD;
&#xD;
for PHP 5.3</description><pubDate>Wed, 30 Mar 2011 11:07:20 +0200</pubDate></item><item><title>Products - WebStart - Pear packages needed</title><description>For one of my projects , I need to have some pear elements installed. How can I install PEAR on my webstart installation ?&#xD;
&#xD;
Is there an easy way to do this ?</description><pubDate>Wed, 30 Mar 2011 11:03:32 +0200</pubDate></item><item><title>Products - WebStart - H&#xC3;&#xA9;bergement multisite</title><description>Pour le d&#xC3;&#xA9;veloppement des sites web de nos clients j'utilise depuis plusieurs ann&#xC3;&#xA9;es un serveur IIS.&#xD;
Ce n&#xE2;&#x20AC;&#x2122;est pas ce qu'il y a de mieux pour la compatibilit&#xC3;&#xA9; PHP/MySQL mais c'est pour moi tr&#xC3;&#xA8;s simple d'utilisation et d'un simple clique je cr&#xC3;&#xA9;e un nouveau r&#xC3;&#xA9;pertoire virtuel permettant d'h&#xC3;&#xA9;berger un nouveau site.&#xD;
L'acc&#xC3;&#xA8;s du client est alors simple : http://www.monsite.fr/mon-client/&#xD;
J'ai &#xC3;&#xA0; ma disposition un Mac mini server sur lequel par manque de connaissance je n'ai jamais r&#xC3;&#xA9;ussi &#xC3;&#xA0; reproduire ce type d'h&#xC3;&#xA9;bergement virtuel.&#xD;
Est-ce que WebStart peut r&#xC3;&#xA9;pondre simplement &#xC3;&#xA0; mes besoins&#xE2;&#x20AC;&#x2030;?&#xD;
L'utilisation de DynDNS est-elle obligatoire pour &#xC3;&#xA7;a ?&#xD;
Merci pour votre r&#xC3;&#xA9;ponse.</description><pubDate>Wed, 30 Mar 2011 08:45:54 +0200</pubDate></item><item><title>Products - WebStart - Comment acc&#xC3;&#xA9;der depuis le reseau local</title><description>Bonjour,&#xD;
&#xD;
De quel type de mobile s'agit-t-il?</description><pubDate>Wed, 30 Mar 2011 07:40:58 +0200</pubDate></item><item><title>Products - WebStart - Apache doesnt start after migration from 1.04 to 1.1</title><description>HI spackala,&#xD;
&#xD;
Thanks for you message.&#xD;
Please check in the System Preferences that WebSharing is disabled.&#xD;
That should fix the problem.</description><pubDate>Wed, 30 Mar 2011 07:40:11 +0200</pubDate></item><item><title>Products - WebStart - Apache doesnt start after migration from 1.04 to 1.1</title><description>I've tried to uninstall and reinstall WebStart , but it gives always the same result. Apache doesn't start.</description><pubDate>Wed, 30 Mar 2011 02:23:20 +0200</pubDate></item><item><title>Products - WebStart - Apache doesnt start after migration from 1.04 to 1.1</title><description>My Apache server doesn't start and nothing to see into the log files.&#xD;
Can someone help me ?</description><pubDate>Wed, 30 Mar 2011 02:18:33 +0200</pubDate></item><item><title>Products - WebStart - Comment acc&#xC3;&#xA9;der depuis le reseau local</title><description>Bonjour,&#xD;
&#xD;
Je d&#xC3;&#xA9;veloppe des webapp et j'ai besoins d'acc&#xC3;&#xA9;der depuis mon mobile au hosts, comment puis je faire ca ?&#xD;
Merci</description><pubDate>Wed, 30 Mar 2011 01:12:44 +0200</pubDate></item><item><title>Products - WebStart - How to config rootpage alias</title><description>this was the problem.&#xD;
websharring was activated.&#xD;
&#xD;
thx</description><pubDate>Mon, 28 Mar 2011 14:13:38 +0200</pubDate></item><item><title>Products - WebStart - Running Apache on a different port</title><description>I edited the httpd.conf file to run apache on port 8080 (I have another web service running on port 80). I edited two lines in the httpd.conf:&#xD;
&#xD;
Listen 80 -----&amp;gt;Listen 8080&#xD;
ServerName localhost:80 ------&amp;gt;ServerName localhost:8080&#xD;
&#xD;
&#xD;
I am successfully serving pages on port 8080 but the links in the WebStart control panel have not been updated to use port 8080 and instead are defaulting to port 80.&#xD;
&#xD;
Is there something else I need to do? Any help is appreciated.&#xD;
&#xD;
Thanks.&#xD;
Rick</description><pubDate>Sun, 27 Mar 2011 16:41:31 +0200</pubDate></item><item><title>Products - WebStart - How to config rootpage alias</title><description>Hi : )&#xD;
&#xD;
Have you edited the Apache configuration file or is it from a fresh install?&#xD;
&#xD;
As far as I can see, the WebStart version of Apache is not running... Maybe you activated &#xC2;&#xAB;WebSharing&#xC2;&#xBB; in the OSX preferences.&#xD;
&#xD;
Disable it, and try running WebStart again...&#xD;
&#xD;
Hope it will help.</description><pubDate>Thu, 24 Mar 2011 22:55:00 +0100</pubDate></item><item><title>Products - WebStart - How to config rootpage alias</title><description>Hi,&#xD;
&#xD;
I'm not mastering Apache. I have some problems with alias.&#xD;
The http://localhost/webstart/ return a 404. I just wanted to know where I can fix that.&#xD;
&#xD;
&amp;lt;a href=&amp;quot;http://www.alienlebarge.ch/littlesnaper/404%20Not%20Found.png&amp;quot;&amp;gt;&amp;lt;img src=&amp;quot;http://www.alienlebarge.ch/littlesnaper/404%20Not%20Found.png&amp;quot; alt=&amp;quot;404 Not Found&amp;quot;/&amp;gt;&amp;lt;/a&amp;gt;&#xD;
&#xD;
Same problems with http://localhost/webstart/?info, http://localhost/webstart/?manual, etc.&#xD;
&#xD;
The app looks great !&#xD;
Thx&#xD;
&#xD;
alb</description><pubDate>Thu, 24 Mar 2011 21:59:37 +0100</pubDate></item><item><title>Products - WebStart - EAccelerator and php versions differ</title><description>Updates are now available for PHP 5.2 and 5.3... Enjoy... ;)</description><pubDate>Thu, 24 Mar 2011 00:36:37 +0100</pubDate></item><item><title>Products - WebStart - upload_tmp_dir</title><description>Hum, &#xD;
&#xD;
upload_tmp_dir = /tmp/&#xD;
</description><pubDate>Wed, 23 Mar 2011 22:44:51 +0100</pubDate></item><item><title>Products - WebStart - upload_tmp_dir</title><description>Bonjour,&#xD;
&#xD;
Comment dois je renseign&#xC3;&#xA9; dans le php.ini pour le chemin de 'upload_tmp_dir' ?&#xD;
Est ce que c'est particulier &#xC3;&#xA0; Webstart ou puis je mettre n'importe quel chemin relatif ?</description><pubDate>Wed, 23 Mar 2011 22:32:28 +0100</pubDate></item><item><title>Products - WebStart - Impossible de faire un commit depuis subversion</title><description>Visiblement, c'est simplement un probl&#xC3;&#xA8;me de permissions.&#xD;
&#xD;
Vous pouvez essayer avec:&#xD;
&#xD;
sudo svn checkout http://spham.unfuddle.com/svn/spham_idcomet/ .&#xD;
&#xD;
Mais il faudra du coup utiliser sudo &#xC3;&#xA0; chaque fois.&#xD;
Il serait &#xC3;&#xA0; mon avis pr&#xC3;&#xA9;f&#xC3;&#xA9;rable de v&#xC3;&#xA9;rifier les permissions du dossier en question:&#xD;
&#xD;
sudo chown -R nom_utilisateur:staff nom_dossier&#xD;
sudo chmod -R ug+w nom_dossier&#xD;
&#xD;
L&#xC3;&#xA0;, tout devrait &#xC3;&#xAA;tre en ordre.</description><pubDate>Mon, 21 Mar 2011 16:10:33 +0100</pubDate></item><item><title>Products - WebStart - Impossible de faire un commit depuis subversion</title><description>Le commit doit effectivement se faire sur une working copy, et non sur un repository. :)</description><pubDate>Mon, 21 Mar 2011 16:09:27 +0100</pubDate></item><item><title>Products - WebStart - EAccelerator and php versions differ</title><description>Will update eAccelerator ASAP.&#xD;
&#xD;
Thanks for the report!</description><pubDate>Mon, 21 Mar 2011 16:07:58 +0100</pubDate></item><item><title>Products - WebStart - EAccelerator and php versions differ</title><description>Hello,&#xD;
&#xD;
i would just reporting this error:&#xD;
&#xD;
[eAccelerator] This build of &amp;quot;eAccelerator&amp;quot; was compiled for PHP version 5.3.5. Rebuild it for your PHP version (5.3.6) or download precompiled binaries.&#xD;
&#xD;
&#xD;
Thank you.&#xD;
&#xD;
See you.</description><pubDate>Mon, 21 Mar 2011 16:03:02 +0100</pubDate></item><item><title>Products - WebStart - Impossible de faire un commit depuis subversion</title><description>Oups, d&#xC3;&#xA9;sol&#xC3;&#xA9;, c'est r&#xC3;&#xA9;solu.&#xD;
&#xD;
Le dossier peut etre clotur&#xC3;&#xA9;</description><pubDate>Sun, 20 Mar 2011 16:41:56 +0100</pubDate></item><item><title>Products - WebStart - Impossible de faire un commit depuis subversion</title><description> svn ci -m &amp;quot;init project&amp;quot; http://blabla.unfuddle.com/svn/project/&#xD;
svn: Must give local path (not URL) as the target of a commit</description><pubDate>Sun, 20 Mar 2011 16:38:40 +0100</pubDate></item><item><title>Products - WebStart - Impossible de faire un commit depuis subversion</title><description>Bonjour,&#xD;
Il m'est impossible d'utiliser subversion, depuis le r&#xC3;&#xA9;pertoire des applications correctement.&#xD;
&#xD;
&#xD;
svn checkout http://www.monserveursvn.com/ .&#xD;
svn: Can't create directory '.svn': Permission denied&#xD;
</description><pubDate>Sun, 20 Mar 2011 15:42:30 +0100</pubDate></item><item><title>Products - WebStart - Websites storage root directory.</title><description>Hello, I just wanted to add my thoughts. I too would like to change the webroot. &#xD;
&#xD;
I keep all my projects in ~/Dropbox/.... &#xD;
&#xD;
I know enough about apache that I was able to modify the httpd.conf to use this directory and document root. Plus I modified httpd-vhosts.conf and added my own rules. This worked but of course did break the &amp;quot;sites&amp;quot; feature of webstart. It was more valuable to me to be able to change the document root then use that &amp;quot;sites&amp;quot; GUI. This isn't a complaint, I realize I am stubborn about doing things my way. But I too wanted this feature and thought I would share. &#xD;
&#xD;
For me (and I am weird) I not only would like the ability to change the document root but also specify the path for each vhosts rule. This is because even within my preferred document root (~/Dropbox) different projects are organized differently. &#xD;
&#xD;
i.e. two sites are &#xD;
~/Dropbox/Personal/Proj1/public_html&#xD;
~/Dropbox/Work/Clients/ClientName/web/public_html/&#xD;
&#xD;
So (for me) ideally you could change the global document root and then on each new site specify the path within that document root.&#xD;
&#xD;
I am rambling but if you did work on this for a future release I thought this feedback would be helpful. &#xD;
&#xD;
I just switched from MAMP to WebStart and really like it. Nice job!!</description><pubDate>Fri, 18 Mar 2011 18:34:30 +0100</pubDate></item><item><title>Freeware - PropEdit - HFS+ options</title><description>Hi,&#xD;
&#xD;
Thanks for the feedback. I'll see what I can do for the next release :)</description><pubDate>Wed, 16 Mar 2011 18:14:41 +0100</pubDate></item><item><title>Freeware - PropEdit - HFS+ options</title><description>Hi,&#xD;
&#xD;
Could you add in HFS+ options found via SetFileInfo? &#xD;
&#xD;
And, maybe some way to query the raw xattr data for debugging? (Handy if you're working within timemachine bundles)&#xD;
&#xD;
Thanks</description><pubDate>Wed, 16 Mar 2011 15:48:23 +0100</pubDate></item><item><title>Products - WebStart - Websites storage root directory.</title><description>For now, you can use this to manage your hosts:&#xD;
http://www.eosgarden.com/en/freeware/host-manager/overview/&#xD;
&#xD;
I'm going to correct the problem with the &#xC2;&#xAB;unavailable hosts&#xC2;&#xBB; warning in release 1.1.1.&#xD;
Thanks for the report!</description><pubDate>Mon, 14 Mar 2011 20:36:42 +0100</pubDate></item><item><title>Products - WebStart - Websites storage root directory.</title><description>I'm using the last update. (version 1.1.0)</description><pubDate>Mon, 14 Mar 2011 09:30:34 +0100</pubDate></item><item><title>Products - WebStart - Websites storage root directory.</title><description>Thanks for the hint about DSCL. ;)&#xD;
&#xD;
About the warning at start. Even after disabling 'Warn unavailable for virtual hosts&amp;quot;.  Alert popup are still active.&#xD;
&#xD;
&#xD;
</description><pubDate>Mon, 14 Mar 2011 09:27:10 +0100</pubDate></item><item><title>Products - WebStart - Websites storage root directory.</title><description>Also note that you can turn off the warning at start from the preferences dialog.</description><pubDate>Sat, 12 Mar 2011 02:48:26 +0100</pubDate></item><item><title>Products - WebStart - Websites storage root directory.</title><description>Linux style... ;)&#xD;
The main problem is that you won't be able to use your virtual hosts from another user account on your computer.&#xD;
&#xD;
That's the reason why the are located in /Library/.&#xD;
&#xD;
And as you say, you can't use the vhost wizard if you move them.&#xD;
&#xD;
About the alert, did you add your hosts manually in your /etc/hosts file?&#xD;
WebStart uses DSCL instead of the host files, for you to know. :)</description><pubDate>Fri, 11 Mar 2011 21:38:05 +0100</pubDate></item><item><title>Products - WebStart - Websites storage root directory.</title><description>With my directory structure, another disadvantage is the popup that cry when WebStart bootup. But it doesn't matter either.&#xD;
</description><pubDate>Fri, 11 Mar 2011 13:04:30 +0100</pubDate></item><item><title>Products - WebStart - Websites storage root directory.</title><description>The disavantage of that solution is that i cannot use to WebStart virtualHosts wizard to create the directory tree. but it does not matter.&#xD;
:)</description><pubDate>Fri, 11 Mar 2011 10:45:22 +0100</pubDate></item><item><title>Products - WebStart - Websites storage root directory.</title><description>Usualy, i put them in ~/www/vhosts/&#xD;
&#xD;
With a directory structure like that:&#xD;
&#xD;
local/mydomain1/htdocs&#xD;
local/mydomain2/htdocs&#xD;
local/mydomain3/htdocs&#xD;
local/mydomain4/htdocs&#xD;
...&#xD;
dev/mydomain1/htdocs&#xD;
dev/mydomain2/htdocs&#xD;
dev/mydomain3/htdocs&#xD;
...&#xD;
typo3/mydomain1/htdocs&#xD;
typo3/mydomain2/htdocs&#xD;
....&#xD;
&#xD;
Then, i didn't  want move them and i made the next change to work with WebStart.&#xD;
&#xD;
In http-vhost.conf:&#xD;
&#xD;
1) VirtualDocumentRoot &amp;quot;/Library/WebStart/WWW/%-1/%-2+/public&amp;quot;&#xD;
&#xD;
2) And rename my htdocs in public&#xD;
&#xD;
[code]&#xD;
&#xD;
find . -type d -iname htdocs | awk '{print &amp;quot;mv &amp;quot; $1 &amp;quot; &amp;quot; substr($1, 0, length($1)-6) &amp;quot;public&amp;quot;}' | sh&#xD;
&#xD;
[/code]&#xD;
&#xD;
and symlinked /Library/WebStart/WWW/ to my ~/www/vhosts/&#xD;
&#xD;
ln -s ~/www/vhosts /Library/WebStart/WWW&#xD;
&#xD;
&#xD;
So like that, i made a minimum of the required change and it works like a charm.&#xD;
^</description><pubDate>Fri, 11 Mar 2011 09:05:20 +0100</pubDate></item><item><title>Products - WebStart - Websites storage root directory.</title><description>Thanks for the message :)&#xD;
&#xD;
For now, it's not possible to change the root directory, without breaking the &#xC2;&#xAB;Sites&#xC2;&#xBB; management panel in the WebStart app, as they will still be created in /Library/WebStart.&#xD;
&#xD;
I may try to see If I can do something for a next release.&#xD;
Just for curiosity, where do you want to put them?</description><pubDate>Thu, 10 Mar 2011 17:42:12 +0100</pubDate></item><item><title>Products - WebStart - Websites storage root directory.</title><description>Ultimately, i think they are very well there. ;)</description><pubDate>Thu, 10 Mar 2011 15:47:20 +0100</pubDate></item><item><title>Products - WebStart - Websites storage root directory.</title><description>Hi,&#xD;
&#xD;
To inaugurate this thread, i wish to thank you for that nice App.&#xD;
&#xD;
Would it be possible to choose or set the root directory used to store the sites ?&#xD;
&#xD;
Other than the default &amp;quot;/Library/WebStart/WWW/&amp;quot;, rather than do it with a symlink ?&#xD;
&#xD;
Thank You</description><pubDate>Thu, 10 Mar 2011 15:25:55 +0100</pubDate></item><title>eosgarden: Public discussions</title><link>http://eosgarden.org
&lt;!-- No available menu link (path: support/discussions/) --&gt;
</link><description>Latest posts from the public discussions.</description></channel></rss>
