User Jon Winstanley - Stack Overflowmost recent 30 from stackoverflow.com2009-11-30T16:02:26Zhttp://stackoverflow.com/feeds/user/42106http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1818422/php-regex-adding-website-url-to-images/1818443#18184430Answer by Jon Winstanley for PHP & Regex : Adding website url to imagesJon Winstanley2009-11-30T08:08:23Z2009-11-30T08:08:23Z<p>Trying to match HTML with regular expressions is very difficult.</p>
<p>Even though your code may seem to work, there is a good chance that some IMG tags will slip through as they are not in the exact format you have described.</p>
http://stackoverflow.com/questions/1815745/is-it-possible-to-develop-a-desktop-application-which-integrates-with-the-faceboo/1815800#18158002Answer by Jon Winstanley for Is it possible to develop a desktop application which integrates with the FaceBook API?Jon Winstanley2009-11-29T15:24:39Z2009-11-29T16:20:20Z<h2>.NET Facebook API Client</h2>
<p>There is a Facebook API framework for .NET applications here:</p>
<p><a href="http://facebook.codeplex.com/" rel="nofollow">http://facebook.codeplex.com/</a></p>
<p>Building a simple desktop app in VB.NET or C#.NET is not too hard, you can download the Express version (free) here: <a href="http://www.microsoft.com/exPress/" rel="nofollow">http://www.microsoft.com/exPress/</a></p>
<p>The documentation for the framework is on the same site: <a href="http://facebook.codeplex.com/wikipage?title=Getting%20Started&referringTitle=Home" rel="nofollow">http://facebook.codeplex.com/wikipage?title=Getting%20Started&referringTitle=Home</a></p>
<p>There is also a lot of documentation for getting started with .NET and the tools are very good.</p>
http://stackoverflow.com/questions/1815769/how-do-you-style-the-errored-input-fields-with-the-jquery-validation-plugin/1815790#18157903Answer by Jon Winstanley for How do you style the errored input fields with the jQuery validation plugin?Jon Winstanley2009-11-29T15:20:32Z2009-11-29T15:20:32Z<h2>jQuery Validation</h2>
<p>The validation plugin adds the class 'error' to the input with the validation error.</p>
<p>Therefore you can style it independently.</p>
<p>For example:</p>
<pre><code>.error {
border: 1px solid red;
}
</code></pre>
http://stackoverflow.com/questions/1804102/is-there-a-standard-permissions-scheme-for-web-server-directories0Is there a standard permissions scheme for web server directories?Jon Winstanley2009-11-26T14:47:56Z2009-11-26T16:53:00Z
<p>I have built many web sites and have used a few different ways of setting the permissions on my folders. </p>
<p>I would like to know if there is a definitive configuration for web server directories.</p>
<p>I have listed the folders which I consider to be standard in a typical web site directory, what is the permssion setting required for each one? Is there a </p>
<ul>
<li>/app</li>
<li>/lib</li>
<li>/log</li>
<li>/cache</li>
<li>/config</li>
<li>/public_html
<ul>
<li>/images</li>
<li>/css</li>
<li>/js</li>
<li>/uploads</li>
<li>.htaccess</li>
<li>index.htm</li>
</ul></li>
</ul>
http://stackoverflow.com/questions/1800741/how-do-i-generate-symfony-fixtures-yml-from-exising-database-data/1803478#18034780Answer by Jon Winstanley for How do I generate Symfony fixtures YML from exising database data?Jon Winstanley2009-11-26T12:44:47Z2009-11-26T12:44:47Z<p><img src="http://www.symfony-project.org/images/symfony%5Flogo.gif" alt="link text"></p>
<p>In Symfony 1.0 use the command:</p>
<pre><code>$ php symfony propel-dump-data <APPLICATION_NAME> <FIXTURES_DIR_OR_FILE> [<ENVIRONMENT_NAME>]
</code></pre>
<p>In versions 1.1 and 1.2 use the following command:</p>
<pre><code>$ php symfony propel:data-dump <APPLICATION_NAME> [<TARGET>] [--env=<ENVIRONMENT_NAME>]
</code></pre>
http://stackoverflow.com/questions/1762090/how-do-i-transfer-a-local-magento-install-onto-my-live-server1How do I transfer a local Magento install onto my live server?Jon Winstanley2009-11-19T09:47:17Z2009-11-25T15:48:15Z
<p><img src="http://imgur.com/tpwbH.gif"></p>
<h2>Uploading a Magento install</h2>
<p>I have spent a long time building a store with Magento on my local development PC.</p>
<p>Now that I am happy with the result, I would like to upload it to my live production server.</p>
<p>What steps must I complete to ensure this move is as easy as possible?</p>
http://stackoverflow.com/questions/1797594/symfony-weaknesses/1797685#17976850Answer by Jon Winstanley for Symfony weaknesses?Jon Winstanley2009-11-25T15:28:04Z2009-11-25T15:28:04Z<p>Symfony has a very strong developer community so identified security vulnerabilities are usually fixed pretty quickly.</p>
<p>Provided that you chose a version of the framework that is supported, any security holes are likely to be fixed speedily.</p>
<p>The versions are listed here: <a href="http://www.symfony-project.org/installation" rel="nofollow">http://www.symfony-project.org/installation</a></p>
http://stackoverflow.com/questions/1795976/can-the-unix-list-command-ls-output-numerical-chmod-permissions2Can the Unix list command 'ls' output numerical chmod permissions?Jon Winstanley2009-11-25T10:21:35Z2009-11-25T11:04:44Z
<p>Is it possible when listing a directory to view numerical unix permissions such as 644 rather than the symbolic output -rw-rw-r--</p>
<p>Thanks.</p>
http://stackoverflow.com/questions/1292379/using-simplexml-to-get-twitter-avatar-url-weird/1795898#17958980Answer by Jon Winstanley for Using SimpleXML to get twitter avatar url (weird)Jon Winstanley2009-11-25T10:06:29Z2009-11-25T10:06:29Z<h1>Twivatar</h1>
<p>The easiest way to get the <a href="http://www.twitter.com" rel="nofollow">twitter</a> avatar is to use <a href="http://twivatar.org/" rel="nofollow">Twivatar</a>, which was built by <a href="http://twitter.com/rem" rel="nofollow">Remy Sharp</a></p>
<p>Simply use the following url: <strong><img src="http://twivatar.org/[screen_name]" /></strong></p>
<p><em>From the docs:</em></p>
<p>Alternatively you can specify the size image you want from:</p>
<ul>
<li>mini (24x24)</li>
<li>normal (48x48 - default)</li>
<li>bigger (73x73)</li>
<li><p>original</p>
<p><strong><img src="http://twivatar.org/[screen_name]/[size]" /></strong></p></li>
</ul>
http://stackoverflow.com/questions/1768628/netbook-for-dotnet-development/1786947#17869470Answer by Jon Winstanley for Netbook for DOTNET DevelopmentJon Winstanley2009-11-24T00:02:07Z2009-11-24T00:02:07Z<p>The new Samsung N510 has a 11.6ins screen, large keyboard and a matte screen.</p>
<p><a href="http://www.amazon.co.uk/Samsung-Notebook-1-66ghz-160gb-black/dp/B002OOVTCI" rel="nofollow">http://www.amazon.co.uk/Samsung-Notebook-1-66ghz-160gb-black/dp/B002OOVTCI</a></p>
<p>It's more expensive but I think it will be pretty popular over the next years or so.
<img src="http://gadgetmix.com/index/wp-content/uploads/2009/08/samsung-n510.jpg" alt="alt text"></p>
http://stackoverflow.com/questions/1786806/can-i-have-a-applicationsettings-on-a-separate-file-if-so-how/1786857#17868570Answer by Jon Winstanley for Can I have a ApplicationSettings on a separate file, if so, how?Jon Winstanley2009-11-23T23:43:57Z2009-11-23T23:43:57Z<p>Use the application's executable name and add .comfig on the end. Then store the file in the same directory.</p>
<pre><code>e.g. myappname.exe.config
</code></pre>
<p>There is an excellent article on TechRepublic that details how to do this.</p>
<p><a href="http://articles.techrepublic.com.com/5100-10878%5F11-1044975.html" rel="nofollow">http://articles.techrepublic.com.com/5100-10878_11-1044975.html</a></p>
http://stackoverflow.com/questions/1783137/examples-of-vulnerable-php-code/1783182#17831826Answer by Jon Winstanley for Examples of vulnerable PHP code?Jon Winstanley2009-11-23T13:39:34Z2009-11-23T13:39:34Z<p><strong>Bobby Tables</strong></p>
<p><img src="http://imgs.xkcd.com/comics/exploits%5Fof%5Fa%5Fmom.png" alt="alt text"></p>
<p><a href="http://bobby-tables.com/" rel="nofollow">Bobby Tables</a> is a page devoted to detailing the ways that a script can be vulnerable via <a href="http://en.wikipedia.org/wiki/SQL%5Finjection" rel="nofollow">SQL injection</a>. This is not unique to PHP, however, SQL injection is the cause of many web page vulnerabilities.</p>
<p>It might be someting you want to include in your presentation.</p>
http://stackoverflow.com/questions/1781433/float-on-the-bottom-of-the-page-without-xhtml/1783164#17831641Answer by Jon Winstanley for Float on the bottom of the page without xhtml...Jon Winstanley2009-11-23T13:36:15Z2009-11-23T13:36:15Z<h2>Sticky Footers</h2>
<p>I think what you are describing is a <strong>'sticky'</strong> footer. An element on your page which stays rooted to the bottom of the browser window, no matter where the user scrolls to or how long the page is.</p>
<p>There are several resource on the web detailing how to implement a sticky footer, the best of these are detailed below:</p>
<ul>
<li><a href="http://www.cssstickyfooter.com/" rel="nofollow">http://www.cssstickyfooter.com/</a></li>
<li><a href="http://ryanfait.com/sticky-footer/" rel="nofollow">http://ryanfait.com/sticky-footer/</a></li>
<li><a href="http://css-tricks.com/sticky-footer/" rel="nofollow">http://css-tricks.com/sticky-footer/</a></li>
<li><a href="http://brassblogs.com/blog/sticky-footer" rel="nofollow">http://brassblogs.com/blog/sticky-footer</a></li>
<li><a href="http://www.waycoolwebdesign.com/Blog/2008/11/15/CSS-Sticky-Footer" rel="nofollow">http://www.waycoolwebdesign.com/Blog/2008/11/15/CSS-Sticky-Footer</a></li>
</ul>
http://stackoverflow.com/questions/1768246/ecommerce-solution-in-php-and-ror/1777077#17770771Answer by Jon Winstanley for ECommerce solution in php and rorJon Winstanley2009-11-21T23:00:13Z2009-11-21T23:00:13Z<h2>Magento</h2>
<p><a href="http://www.magentocommerce.com/" rel="nofollow">Magento</a> is certainly the market leader at the moment.</p>
<p>Their software offers:</p>
<p>The basic products, customers, sales, product categories, tags, reviews and adds some excellet additional features such as being able to control multiple websites, search engine friendly URLs by default, customer newsletters and a huge selection of payment options.</p>
<p><strong>Other options to consider are:</strong></p>
<ul>
<li><a href="http://www.oscommerce.com/" rel="nofollow">OSCommerce</a></li>
<li><a href="http://bigcartel.com/" rel="nofollow">BigCartel</a></li>
<li><a href="http://www.cubecart.com/" rel="nofollow">CubeCart</a></li>
<li><a href="http://www.ablecommerce.com/" rel="nofollow">AbleCommerce</a></li>
</ul>
http://stackoverflow.com/questions/1775461/to-populate-select-options-at-backend-using-symfony/1777058#17770580Answer by Jon Winstanley for To populate select options at backend using Symfony?Jon Winstanley2009-11-21T22:50:05Z2009-11-21T22:50:05Z<p>Unfortunately a web page cannot react to a client action unless JavaScript is used.</p>
http://stackoverflow.com/questions/1776995/can-i-make-jquerys-load-appear-slowly/1777040#17770402Answer by Jon Winstanley for Can I make jQuery's load(); appear slowly?Jon Winstanley2009-11-21T22:41:56Z2009-11-21T22:41:56Z<p>The way to do this would be to load the new content into a hidden container. Then, chain a show('slow') to the end of the load event.</p>
<p>As shown in the <a href="http://docs.jquery.com/Events/load#fn" rel="nofollow">jQuery documentation</a>, load returns the jQuery object, so it can be chained with other events.</p>
<p>Something along the lines of</p>
<pre><code>$("#show").hide();
$("#show").load("post.php", {
submit: $("#post_submit").val(),
title: $("#title").val(),
body: $("#body").val(),
tags: $("#tags").val()
}).show("slow");
</code></pre>
http://stackoverflow.com/questions/1768978/symfony-cache-is-breaking-my-flash-messages0Symfony cache is breaking my flash messagesJon Winstanley2009-11-20T07:58:36Z2009-11-21T14:23:54Z
<p><img src="http://imgur.com/23Imz.jpg" alt="alt text"></p>
<p><strong>Flash messages in Symfony projects give feedback to website users after an action is performed. They usually only show for one page load after the action is triggered.</strong></p>
<p>Unfortunately, when <strong>caching</strong> is turned on my messages fail to appear and only the cached version of the page is returned.</p>
<p>In one instance a version of a page with a message was cached, meaning that the message was displayed to everyone.</p>
<p><strong>Is it possible to make the cache aware of the flash messages?</strong></p>
http://stackoverflow.com/questions/1769342/how-can-i-change-the-files-initially-imported-into-an-svn-repository0How can I change the files initially imported into an SVN repository?Jon Winstanley2009-11-20T09:31:46Z2009-11-20T13:17:20Z
<p>I have created an SVN repository for project but now realise that the files initially imported are not the most recent.</p>
<p>When I compare the 2 versions of the project with Beyond Compare, the projects do not have the exact same set of files within them. Both project folders have some files which are unique.</p>
<p>I want to now add the correct files to the repository but am not sure of the best approach. </p>
<ul>
<li>I could delete the repository altogether and start afresh. Although I remember this being problematic in the past as the repositories will have the same name</li>
<li>I could try to copy the correct files over the exisitng ones and commit. Although there may be old files which are not overwritten, resulting in old files commited to the new project.</li>
</ul>
<p>What would be the standard SVN approach in this case?</p>
http://stackoverflow.com/questions/1593703/what-do-scale-and-inflate-do-in-the-imagemagick-file-resizer-class0What do scale and inflate do in the ImageMagick file resizer classJon Winstanley2009-10-20T10:25:15Z2009-11-12T20:39:09Z
<p>I am using ImageMagick via Symfony to resize images in PHP.</p>
<p>The sfThumbnailer class uses 'scale' and 'inflate' parameters to interface with ImageMagick. What do they do and how will they affect my results?</p>
<p>I realise this is a RTFM question, but I already have, and the documentation is not clear.</p>
<p><a href="http://uk3.php.net/manual/en/function.imagick-thumbnailimage.php" rel="nofollow">Image Magick Documentation</a></p>
<p><a href="http://www.symfony-project.org/plugins/sfThumbnailPlugin" rel="nofollow">Symfony Thumbnail Documentation</a></p>
<p>Thanks.</p>
http://stackoverflow.com/questions/1661352/is-it-possible-to-use-an-offset-when-using-the-symfony-sfpager-class0Is it possible to use an offset when using the Symfony sfPager class?Jon Winstanley2009-11-02T13:29:04Z2009-11-02T13:47:34Z
<p>I would like to disregard the first n items in a pager list of items. I.e. they are being used elsewhere in the design.</p>
<p>So my pager list needs to be as such:</p>
<pre><code>Page 1: Items 8 - 17
Page 2: Items 18 - 27
Page 3: Items 28 - 37
...
</code></pre>
<p>However, setting an offset or limit in the criteria object does nothing. I presume they are used by the pager itself.</p>
<p>Is it possible to add a offset to the pager class in some other way?</p>
http://stackoverflow.com/questions/1661352/is-it-possible-to-use-an-offset-when-using-the-symfony-sfpager-class/1661426#16614260Answer by Jon Winstanley for Is it possible to use an offset when using the Symfony sfPager class?Jon Winstanley2009-11-02T13:47:34Z2009-11-02T13:47:34Z<p>Ok, I have got around the problem by modifying <strong>sfPropelPager.class.php</strong> and putting it into a new class file which I have named atPropelPagerOffset.class.php</p>
<p>It works in exactly the same way apart from it takes an extra parameter, <code>$offset</code></p>
<p>So the top of the file looks like:</p>
<pre><code> protected
$criteria = null,
$peer_method_name = 'doSelect',
$peer_count_method_name = 'doCount',
$offset = 0;
public function __construct($class, $maxPerPage = 10, $offset = 0)
{
parent::__construct($class, $maxPerPage);
$this->setCriteria(new Criteria());
$this->tableName = constant($class.'Peer::TABLE_NAME');
$this->offset = $offset;
}
</code></pre>
<p>Then I have made this tiny change around line 50</p>
<pre><code> $c->setOffset($offset+$this->offset);
</code></pre>
<p>Works a treat!</p>
http://stackoverflow.com/questions/1457305/mysql-creating-tables-with-foreign-keys-giving-errno-150/1631825#16318250Answer by Jon Winstanley for MySQL Creating tables with Foreign Keys giving errno: 150Jon Winstanley2009-10-27T15:58:25Z2009-10-27T15:58:25Z<p>Make sure that the 2 fields you are trying to link with a constraint are EXACTLY the same.</p>
<p>Often, the 'unsigned' property on an ID column will catch you out.</p>
<pre><code>ALTER TABLE `dbname`.`tablename` CHANGE `fieldname` `fieldname` int(10) UNSIGNED NULL;
</code></pre>
http://stackoverflow.com/questions/1606290/is-image-magick-6-2-4-always-backwardly-compatible-with-legacy-versions0Is Image Magick 6.2.4 always backwardly compatible with legacy versions?Jon Winstanley2009-10-22T10:20:40Z2009-10-22T10:20:40Z
<h1>To use the PHP extension for ImageMagick, I need to upgrade my server to ImageMagick version 6.2.4.</h1>
<p><img src="http://gsp.com/support/vps/basic/admin/ports/ports/ImageMagick/magick.png" alt="alt text" /></p>
<p>However I have some legacy code that uses version <strong>6.0.7</strong></p>
<p>I saw a slashdot comment from <strong>2006</strong> about ImageMagick being <a href="http://books.slashdot.org/books/06/03/13/1442239.shtml#comment%5Ftop%5F14913297" rel="nofollow">notoriously bad for backwards compatibility</a> but I have no personal experience of this. Looking throught the archives it seems as though my current versionis from <strong>circa 2005</strong>.</p>
<p><strong>Does anyone know if ImageMagick is now stable enough to upgrade without too much difficulty?</strong></p>
http://stackoverflow.com/questions/700619/combine-the-date-in-one-field-with-time-of-another-field-ms-sql-server1Combine the date in one field with time of another field - MS SQL ServerJon Winstanley2009-03-31T08:46:19Z2009-10-20T09:58:18Z
<p>In an extract I am dealing with, I have 2 fields. One field stores the dates and another the times as shown.</p>
<p>How can I query the table to combine these two fields into 1 column of type date?</p>
<p><strong>Dates</strong></p>
<pre><code>2009-03-12 00:00:00.000
2009-03-26 00:00:00.000
2009-03-26 00:00:00.000
</code></pre>
<p><strong>Times</strong></p>
<pre><code>1899-12-30 12:30:00.000
1899-12-30 10:00:00.000
1899-12-30 10:00:00.000
</code></pre>
http://stackoverflow.com/questions/1589776/validating-a-video-upload-in-the-symfony-admin-generator0Validating a video upload in the Symfony Admin GeneratorJon Winstanley2009-10-19T16:39:11Z2009-10-19T18:53:01Z
<p>When using the admin generator to upload a video, my form is acting quite strangely.</p>
<p>If the file is too large, i.e. it is larger than the PHP upload limit, the form displays the first error in the edit.yml file, or no error at all.</p>
<p>My admin generator defines the video in the following way</p>
<pre><code>video_filename:
help: Videos must be .flv or .mp4. Files of up to 32mb can be uploaded.
type: admin_input_file_tag
upload_dir: video
params: include_remove=true include_text=video
</code></pre>
<p>I have tried adding a sfFileValidator to no avail.</p>
<pre><code> item[video_filename]:
sfFileValidator:
max_size: 512000
max_size_error: Max size is 512Kb
</code></pre>
<p>Is there any way for the admin generator to detect the PHP error and give a more useful error to the user?</p>
http://stackoverflow.com/questions/1571212/why-are-sql-fields-lengths-always-2n-1-unless-less-than-1273Why are SQL fields lengths always (2^n)-1 unless less than 127?Jon Winstanley2009-10-15T09:19:55Z2009-10-15T17:03:07Z
<p>A lot of Database schemas seem to follow the following standard:</p>
<p><strong>(2^n)-1</strong> for large fields:</p>
<pre><code>varchar(511)
varchar(255)
varchar(127)
</code></pre>
<p>...then <strong>(2^n)</strong> for smaller ones</p>
<pre><code>varchar(64)
varchar(32)
varchar(16)
varchar(8)
</code></pre>
<p>I understand why numbers of (2^n)-1 are used, what I don't understand is why it is not necessary to continue the trend down to the small fields.</p>
<p>E.g.</p>
<pre><code>varchar(63)
varchar(31)
varchar(15)
varchar(7)
</code></pre>
<p>Is there a reason for this or is it just that the returns have diminished too far?</p>
http://stackoverflow.com/questions/334532/render-html-as-an-image/1491928#14919280Answer by Jon Winstanley for Render HTML as an ImageJon Winstanley2009-09-29T11:17:12Z2009-09-29T11:17:12Z<h1>PHP/Ruby Alternative</h1>
<p><br /></p>
<p>If you have accessed this question and are actually looking for soething that will work without Windows, you can try the KHTML library: <a href="http://wiki.goatpr0n.de/projects/khtmld" rel="nofollow">http://wiki.goatpr0n.de/projects/khtmld</a></p>
<p>The website has a ridiculous name I admit, but I can assure you it is genuine. Other related pages are: the sourceforge page <a href="http://khtml2png.sourceforge.net/" rel="nofollow">http://khtml2png.sourceforge.net/</a> </p>
http://stackoverflow.com/questions/1363923/has-anyone-tackled-the-product-advertising-api-signed-requests-in-php1Has anyone tackled the Product Advertising API Signed Requests in PHPJon Winstanley2009-09-01T18:30:07Z2009-09-26T15:43:29Z
<p>I am about to get stuck into fixing the Product Advertising API Signed Requests issue for PHP for a site I wrote a while ago.</p>
<p>Is there a library out there already, or do I need to roll up my sleeves?</p>
<p><a href="https://affiliate-program.amazon.co.uk/gp/advertising/api/detail/faq.html" rel="nofollow">https://affiliate-program.amazon.co.uk/gp/advertising/api/detail/faq.html</a></p>
http://stackoverflow.com/questions/1476524/upload-file-size-limit-symfony-admin-generator-module0Upload File Size Limit: Symfony Admin Generator ModuleJon Winstanley2009-09-25T10:21:06Z2009-09-25T14:46:28Z
<p>I have form created by the admin generator in the backend of a website. It allows the upload of a video to the site.</p>
<p>It works fine but strangely, the upload fails for files of 10mb or over. However, I have not set any file limits in my form.</p>
<p>Are there Symfony/PHP/Apache/web browser settings regarding this type of behaviour that I can look into?</p>
<p>Or is there a way I can inform Symfony that I'd like to permit larger files?</p>
http://stackoverflow.com/questions/1465049/extending-tinymce-to-show-a-list-of-possible-internal-pages-which-the-user-may-wi3Extending TinyMCE to show a list of possible Internal pages which the user may wish to link toJon Winstanley2009-09-23T09:56:09Z2009-09-23T10:10:30Z
<p>Is it possible to extend the TinyMCE rich text editor to allow the insertion of Internal Links to my web sites pages.</p>
<p>I already have a function which can return the list of page names and URLs however I cannot figure out how to add a new button to the Advanced Link plugin.</p>
<p>I have worked with the Image Manager and Document manager plugins before and so am aware that they are able to add their own 'browse' button within the advanced link dialogs.</p>
<p>Ideally when the user is in the link dialog I would like to present them with a list of possible pages to link to.</p>
http://stackoverflow.com/questions/1812215/make-help-button-with-jquery-and-cssComment by Jon Winstanley on make help button with jquery and cssJon Winstanley2009-11-28T10:53:20Z2009-11-28T10:53:20ZI think you will also need HTML to go with your jQuery and CSS. Have a look at the input tag.http://stackoverflow.com/questions/1775461/to-populate-select-options-at-backend-using-symfony/1777058#1777058Comment by Jon Winstanley on To populate select options at backend using Symfony?Jon Winstanley2009-11-26T07:59:44Z2009-11-26T07:59:44ZHave you tried autopostback with JavaScript turned off? I think you'll find that ASP.NET injects JavaScript into your page.http://stackoverflow.com/questions/1797594/symfony-weaknesses/1797685#1797685Comment by Jon Winstanley on Symfony weaknesses?Jon Winstanley2009-11-26T07:57:24Z2009-11-26T07:57:24Z1.0 is still supported so once you are familiar with the framework update it to 1.0.21 - or whatever is the most recent update at the time.http://stackoverflow.com/questions/1795976/can-the-unix-list-command-ls-output-numerical-chmod-permissions/1796009#1796009Comment by Jon Winstanley on Can the Unix list command 'ls' output numerical chmod permissions?Jon Winstanley2009-11-25T14:49:25Z2009-11-25T14:49:25ZFantastic, thanks!http://stackoverflow.com/questions/1775461/to-populate-select-options-at-backend-using-symfony/1777058#1777058Comment by Jon Winstanley on To populate select options at backend using Symfony?Jon Winstanley2009-11-24T12:11:12Z2009-11-24T12:11:12ZAutopostback is JavaScript too. The only way to do it without JavaScript would be to split it into 2 forms, submit the first to get answers for the 2nd. http://stackoverflow.com/questions/1786806/can-i-have-a-applicationsettings-on-a-separate-file-if-so-how/1786857#1786857Comment by Jon Winstanley on Can I have a ApplicationSettings on a separate file, if so, how?Jon Winstanley2009-11-24T12:07:33Z2009-11-24T12:07:33ZOk no problem. I will leave the answer here in case anyone with an EXE hits this question via a web search.http://stackoverflow.com/questions/1784022/the-step-away-from-php/1784139#1784139Comment by Jon Winstanley on The step away from PHPJon Winstanley2009-11-23T23:58:05Z2009-11-23T23:58:05ZTo use PHP in a 'huge' system, you really need a framework. Symfony and CodeIgniter are excellent for this purpose.http://stackoverflow.com/questions/1786746/php-cms-system-built-with-a-framework-php-framework-and-php-cms/1786783#1786783Comment by Jon Winstanley on php CMS system built with a framework - php framework AND php CMSJon Winstanley2009-11-23T23:51:29Z2009-11-23T23:51:29ZThere are several more options in both these categories and the ones mentioned are not the market leaders. Look into Drupal, Wordpress, ExpressionEngine and SilverStripe for CMS and Symfony and CodeIgniter for PHP frameworks.http://stackoverflow.com/questions/1670914/symfony-and-luceneComment by Jon Winstanley on Symfony and LuceneJon Winstanley2009-11-22T09:30:52Z2009-11-22T09:30:52ZHi Chris, no need to add 'solved' to the top of the question, you can tick your own answer to mark it as the accepted answer.http://stackoverflow.com/questions/1772176/how-to-redirect-to-another-page-in-php/1772936#1772936Comment by Jon Winstanley on how to redirect to another page in php?Jon Winstanley2009-11-21T22:51:26Z2009-11-21T22:51:26ZThis method fails when JavaScript is disabled though.http://stackoverflow.com/questions/1776965/frameworks-doneworks-do-you-thinks-it-is-cool-to-use-thoseComment by Jon Winstanley on Frameworks & Doneworks: Do you thinks it is cool to use those?Jon Winstanley2009-11-21T22:44:22Z2009-11-21T22:44:22ZHi Hoperty, is there any chance you could expand on the question a little?http://stackoverflow.com/questions/1761552/how-to-use-sessions-in-symfony/1761883#1761883Comment by Jon Winstanley on How to use Sessions in Symfony?Jon Winstanley2009-11-20T08:06:03Z2009-11-20T08:06:03ZMany questions on this site could be found by looking up the problem in Google, however I think directing people there would be missing the point. Having a definitive answer which is tagged and which can be kept relevant by wiki edits is of value to the programming community.http://stackoverflow.com/questions/1762090/how-do-i-transfer-a-local-magento-install-onto-my-live-server/1763191#1763191Comment by Jon Winstanley on How do I transfer a local Magento install onto my live server?Jon Winstanley2009-11-19T15:05:01Z2009-11-19T15:05:01ZThanks for the answer! Unfortunately a fresh install was not an option for me as I had made some changes to core files.http://stackoverflow.com/questions/1762090/how-do-i-transfer-a-local-magento-install-onto-my-live-server/1763705#1763705Comment by Jon Winstanley on How do I transfer a local Magento install onto my live server?Jon Winstanley2009-11-19T15:04:20Z2009-11-19T15:04:20ZThanks, worked a treat. Noted though that I needed to delete the contents of the var directoryhttp://stackoverflow.com/questions/249984/php-framework-decision-analysis-paralysis/547997#547997Comment by Jon Winstanley on PHP Framework Decision - Analysis paralysis!Jon Winstanley2009-11-02T16:29:29Z2009-11-02T16:29:29ZGives you a LOT more work though. I'd always use a framework so I don't need to re-code authentication/url rewriting/object relational mapping.