active questions tagged python+php - Stack Overflow most recent 30 from stackoverflow.com 2009-12-20T09:09:56Z http://stackoverflow.com/feeds/tag/python+php http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1522951/update-a-gallery-webpage-via-dropbox 0 Update a gallery webpage via Dropbox? Amabo 2009-10-05T23:43:07Z 2009-12-18T11:34:08Z <p>I'd like to know if the following situation and scripts are at all possible: </p> <p>I'm looking to have a photo-gallery (Javascript) webpage that will display in order of the latest added to the Dropbox folder (PHP or Python?). </p> <p>That is, when someone adds a picture to the Dropbox folder, there is a script on the webpage that will check the Dropbox folder and then embed those images onto the webpage via the newest added and the webpage will automatically be updated. </p> <p>Is it at all possible to link to a Dropbox folder via a webpage? If so, how would I best go about using scripts to automate the process of updating the webpage with new content? </p> <p>Any and all help is very appreciated, thanks!</p> http://stackoverflow.com/questions/1925764/python-import-fails-when-called-from-php 0 python import fails when called from PHP Alex Nguyen 2009-12-18T01:34:39Z 2009-12-18T01:41:42Z <p>I'm having a puzzling problem when trying to import a module in python only when the script is called from php via system or exec.</p> <p>From the python shell:</p> <pre><code>import igraph #This works. </code></pre> <p>if the previous line was in a file, say, test_module.py, then:<br> python test_module.py in the bash works.</p> <p>Within PHP:<br> exec("python test_module.py",$output,$retval) -> fails : $retval = 1.</p> <p>However, if the script is instead : <code>import math</code>, then this is fine.</p> <p>Anybody ever dealt with something similar?</p> http://stackoverflow.com/questions/1919826/how-to-make-php-output-a-sound-beep 1 How to make PHP output a sound (beep)? unknown (google) 2009-12-17T06:20:00Z 2009-12-17T07:14:42Z <p>What's the PHP verson of this python code?</p> <pre><code>import winsound winsound.Beep(537, 2000) </code></pre> http://stackoverflow.com/questions/1907782/integrate-python-app-into-php-site 2 Integrate Python app into PHP site Franz 2009-12-15T14:21:15Z 2009-12-15T18:07:04Z <p>This might sound really crazy, but still...</p> <p>For our revamped project site, we want to integrate Trac (as code browser, developer wiki and issue tracker) into the site design. That is, of course, difficult, since Trac is written in Python and our site in PHP. Does anybody here know a way how to integrate a header and footer (PHP) into the Trac template (preferrably without invoking a - or rather two for header and footer - PHP process from the command line)?</p> http://stackoverflow.com/questions/1895743/latest-books-to-learn-php-python 1 Latest books to learn PHP, Python? Sandy 2009-12-13T06:26:48Z 2009-12-14T12:44:58Z <p>Decided to learn PHP, Python. Lots of topic/books are there, but don't know which are latest/newbie friendly.</p> <p>Need your help..</p> http://stackoverflow.com/questions/1535261/how-to-write-an-efficient-hit-counter-for-websites 0 How to write an efficient hit counter for websites Lin 2009-10-08T02:12:09Z 2009-12-14T11:21:55Z <p>I want to write a hit counter script to keep track of hits on images on a website and the originating IPs. Impressions are upwards of hundreds of thousands per day, so the counters will be incremented many times a second. </p> <p>I'm looking for a simple, self-hosted method (php, python scripts, etc.). I was thinking of using MySQL to keep track of this, but I'm guessing there's a more efficient way. What are good methods of keeping counters?</p> http://stackoverflow.com/questions/1896621/books-to-learn-php-python 0 Books to learn PHP, Python? Sandy 2009-12-13T06:15:20Z 2009-12-13T14:20:50Z <p>Decided to learn PHP, Python. Lots of books are there in market, but donno which are latest/newbie friendly. </p> <p>Need your help.. </p> http://stackoverflow.com/questions/1895042/python-vs-php-for-web-service-development 1 Python vs PHP for Web Service development [closed] Alex 2009-12-12T23:28:54Z 2009-12-13T07:22:18Z <p>Hello,</p> <p>This question is running a danger of being marked as already asked. I've went through similar posts on stackoverflow and other sites and was not able to find an exact answer.</p> <p>I am planning to write a simple web service which will be an interface to a cloud storage such as S3. In addition it will perform various simple validations on every access using a database. The service will use lighttpd with FastCGI. Although the service itself will not be complicated the load on it could be very high.</p> <p>I am currently trying to decide whether to use PHP or Python to write this web service. I've read a number posts comparing the languages on ease of use and speed, but so far nothing jumps out as a clear indication of which one should be better suited for the problem.</p> <p>From your experience which language would you select assuming that the application will be written from scratch, should be easily maintainble and extendable, have good performance, preferably some unit tests, etc.</p> <p>I understand this is a bit vague, please let me know how I can clarify it to make the question clearer.</p> <p>Thank you!</p> http://stackoverflow.com/questions/1890013/django-python-is-there-a-simple-way-to-convert-php-style-bracketed-post-keys-to 0 Django, Python: Is there a simple way to convert PHP-style bracketed POST keys to multidimensional dict? Berislav Lopac 2009-12-11T18:33:04Z 2009-12-12T10:21:08Z <p>Specifically, I got a form that calls a Django service (written using Piston, but I don't think that's relevant), sending via POST something like this:</p> <pre><code>edu_type[3][name] =&gt; a edu_type[3][spec] =&gt; b edu_type[3][start_year] =&gt; c edu_type[3][end_year] =&gt; d edu_type[4][0][name] =&gt; Cisco edu_type[4][0][spec] =&gt; CCNA edu_type[4][0][start_year] =&gt; 2002 edu_type[4][0][end_year] =&gt; 2003 edu_type[4][1][name] =&gt; fiju edu_type[4][1][spec] =&gt; briju edu_type[4][1][start_year] =&gt; 1234 edu_type[4][1][end_year] =&gt; 5678 </code></pre> <p>I would like to process this on the Python end to get something like this:</p> <pre><code>edu_type = { '3' : { 'name' : 'a', 'spec' : 'b', 'start_year' : 'c', end_year : 'd' }, '4' : { '0' : { 'name' : 'Cisco', 'spec' : 'CCNA', 'start_year' : '2002', 'end_year' : '2003' }, '1' : { 'name' : 'fiju', 'spec' : 'briju', 'start_year' : '1234', 'end_year' : '5678' }, }, } </code></pre> <p>Any ideas? Thanks!</p> http://stackoverflow.com/questions/62333/python-vs-php-python-runs-slower 8 Python vs PHP, Python runs slower? Teifion 2008-09-15T12:27:20Z 2009-12-11T23:00:30Z <p>I've heard that Python is meant to be faster than PHP in terms of Runtime, I simply took this as a given and sat down today to make a blog post about it. After being told by <a href="http://stackoverflow.com/questions/62079/comparing-runtimes#62094">Vinko Vrsalovic</a> how to time scripts I took converted <a href="http://stackoverflow.com/questions/622/most-efficient-code-for-the-first-10000-prime-numbers#2753">some code for getting prime numbers</a> into Python and PHP then ran each 3 times and recorded the numbers. All times are in seconds.</p> <pre><code>Python =&gt; 144.829, 144.771, 144.862 (Average 144.8206) PHP =&gt; 102.783, 100.707, 100.663 (Average 101.3843) </code></pre> <p>I tried 3 different methods of storing the output in Python but they made a difference of approximately 2 seconds and when both scripts were set to output the data as soon as they got it rather than all at once the results were also only a few seconds off the above numbers.</p> <p>Was all the stuff I heard about Python being faster wrong or have I done something appalling with my Python code?</p> <p>Here is the Python code</p> <pre><code>#!/usr/bin/env python primeNumbers = [] output = [] for i in xrange(2, 100000): divisible = False for number in primeNumbers: if i % number == 0: divisible = True if divisible == False: primeNumbers.append(i) output.append(str(i)) print ''.join(output) </code></pre> <p>And here is the PHP code</p> <pre><code>#!/usr/bin/env php &lt;?php $primeNumbers = array(); $output = ''; for ($i = 2; $i &lt; 100000; $i++) { $divisible = false; foreach ($primeNumbers as $number) { if ($i % $number == 0) { $divisible = true; } } if ($divisible == false) { $primeNumbers[] = $i; $output .= $i; } } echo $output; ?&gt; </code></pre> <p>All tests were run with the following command and under near identical conditions</p> <pre><code>$ time ./script.ext </code></pre> http://stackoverflow.com/questions/1588617/php-vs-python-scalability 0 php vs python. scalability Quamis 2009-10-19T13:15:32Z 2009-12-11T14:42:26Z <p>Why is PHP considered more scalable than python?</p> <p>I've heard may times that one of the reasons PHP is "better" than python is that PHP is more easily scalable, and that Yahoo proves that(assumig Yahoo still uses PHP).</p> <p>Whats the difference between PHP and Python when it comes to scalability?</p> <p>-- edit --</p> <p>well, i have no evidence, the question arose after a discussion with a friend.</p> <p>-- edit2 -- here: <a href="http://www.oreillynet.com/ruby/blog/2007/09/7%5Freasons%5Fi%5Fswitched%5Fback%5Fto%5Fp%5F1.html" rel="nofollow">http://www.oreillynet.com/ruby/blog/2007/09/7%5Freasons%5Fi%5Fswitched%5Fback%5Fto%5Fp%5F1.html</a> , even if this dosent say anything about scaling..</p> http://stackoverflow.com/questions/1887509/access-to-class-attributes-by-using-a-variable-in-python 1 Access to class attributes by using a variable in Python? DerKlops 2009-12-11T11:39:25Z 2009-12-11T11:46:20Z <p>In PHP i can access class attributes like this:</p> <pre><code>&lt;?php // very simple :) class TestClass {} $tc = new TestClass{}; $attribute = 'foo'; $tc-&gt;{$attribute} = 'bar'; echo $tc-&gt;foo // should echo 'bar' </code></pre> <p>How can i do this in Python?</p> <pre><code>class TestClass() tc = TestClass attribute = 'foo' # here comes the magic? print tc.foo # should echo 'bar' </code></pre> http://stackoverflow.com/questions/76420/best-php-ruby-python-e-commerce-solution 8 Best php/ruby/python e-commerce solution Aeon 2008-09-16T20:12:52Z 2009-12-08T20:10:52Z <p>I'm looking for an easy to skin and customize e-commerce package. </p> <p>I've been reading good reviews about <a href="http://magentocommerce.com/" rel="nofollow">Magento</a>, but it seems to have <a href="http://www.htmlist.com/development/magento-ecommerce-review-platform-perils-and-impressions-three-months-in/" rel="nofollow">problems with performance</a>. I've tried <a href="http://oscommerce.com/" rel="nofollow">osCommerce</a> before and found it to be pretty painful to modify, but I hear <a href="http://zencart.com/" rel="nofollow">zenCart</a> is better... but the latest release of zenCart is nearly a year old, so not sure how up to date it is at this point. </p> <p>I tried hosted e-commerce with <a href="http://shopify.com/" rel="nofollow">Shopify</a>, and while very easy to use and template, its customization options are a bit limited (the templating language doesn't even support basic logic operations, which makes it pretty inflexible). </p> <p>I'm almost ready to try writing my own in rails using <a href="http://activemerchant.org/" rel="nofollow">ActiveMerchant</a>, but while that will give me ultimate in customization, it's going to take much longer when I have to reinvent the wheel. </p> <p>I'd be happy with a php, ruby or python based system, I know enough of those languages to be able to customize the system if I need to as long as it's well-organized and documented code. </p> <p>Anybody have experience with something they'd recommend, or conversely, recommend staying away from?</p> http://stackoverflow.com/questions/1842208/from-a-coders-perspective-what-kind-of-project-should-i-choose-python-over-php 3 From a coder's perspective, what kind of project should I choose python over php for where both could do the job? Citizen 2009-12-03T19:13:03Z 2009-12-04T22:20:33Z <p>I've never used python before. I've used php for about 5 years now. I plan to learn python, but I'm not sure what for yet. If I can think of a project that might be better to do in python, I'll use that to learn it.</p> <p>Edit: just to add this as an important note, I do mean strictly for linux, not multi-platform. Edit 2: I'm hoping for objective answers, like a specific project, not a general field of projects, etc.</p> http://stackoverflow.com/questions/1839120/how-to-grab-live-text-from-a-url 0 How to grab live text from a URL? Mint 2009-12-03T10:42:30Z 2009-12-03T12:51:03Z <p>Im trying to grab all data(text) coming from a URL which is constantly sending text, I tried using PHP but that would mean having the script running the whole time which it isn’t really made for (I think). So I ended up using a BASH script.</p> <p>At the moment I use wget (I couldn’t get CURL to output the text to a file)</p> <pre><code>wget --tries=0 --retry-connrefused http://URL/ --output-document=./output.txt </code></pre> <p>So wget seems to be working pretty well, apart from one thing, every time I re-start the script wget will clear the output.txt file and start filling it again, which isn’t what I want. <b>Is there a way to tell wget to append to the txt file?</b></p> <p>Also, is this the best way to capture the live stream of data? Should I use a different language like Python or …? </p> http://stackoverflow.com/questions/805957/fastcgi-c-vs-a-script-language-php-python-perl 7 FastCGI C++ vs. A Script Language (PHP/Python/Perl) The Unknown 2009-04-30T08:43:03Z 2009-12-03T08:02:28Z <p>What are the ups and downs of using FastCGI C++ vs. PHP/Python/Perl to do the same job. </p> <p>Any performance or design pitfalls or using one over the other? Even your opinions are welcome. (Tell me why one or the other rocks, or one or the other sucks). </p> http://stackoverflow.com/questions/415627/big-web-2-0-sites-written-in-python 16 Big Web 2.0 sites written in Python? tester2001 2009-01-06T06:27:30Z 2009-12-02T17:39:06Z <p>Hulu, Twitter, Techcrunch, etc are written in Ruby.<br /> Yahoo, Facebook, and tons of big social networks are written in PHP.</p> <p>But what are some big top-name enterprise sites written in Python?</p> <p>I am going to spend my time investing in either Python (w/ Django) or Ruby (w/ Rails) to create a data-intensive web application that has a personalization/recommendation tool (similar to Amazon).</p> <p>Coming from a PHP background (OOP, Zend Framework), which would be best?</p> http://stackoverflow.com/questions/1555517/sending-a-non-blocking-http-post-request 3 sending a non-blocking HTTP POST request pablo 2009-10-12T16:22:37Z 2009-12-01T21:22:02Z <p>Hi,</p> <p>I have a two websites in php and python. When a user sends a request to the server I need php/python to send an HTTP POST request to a remote server. I want to reply to the user immediately without waiting for a response from the remote server.</p> <p>Is it possible to continue running a php/python script after sending a response to the user. In that case I'll first reply to the user and only then send the HTTP POST request to the remote server.</p> <p>Is it possible to create a non-blocking HTTP client in php/python without handling the response at all?</p> <p>A solution that will have the same logic in php and python is preferable for me.</p> <p>Thanks </p> http://stackoverflow.com/questions/89574/which-language-is-most-like-php 1 Which language is most like PHP? Unkwntech 2008-09-18T02:50:18Z 2009-12-01T11:24:06Z <p>I am a PHP dev looking to pickup a new language, I have tried and failed on C++ several times (possibly for my overall lack of interest). I've been hearing a lot about Python, and Ruby and my question is this: Which of these languages (Python, Ruby) should be easiest for someone with a background in PHP to learn?</p> <p>Update (6 months later):</p> <p>I decided at the time of this question to go the Python route, I spent some time learning Python but I didn't really enjoy the language, I eventually moved on to C# which I greatly enjoy, and infact have developed 2 application in C# already and have another 3-5 lined up. I do intend on looking into Ruby when I have some free time, but until then I'll advise anyone else in the position that I was in when this question was asked to skip both Ruby and Python and look into C#. I was a hard-core anti-.net anti-msft and although I still don't like the dependence on .net I do like the design of the language overall.</p> http://stackoverflow.com/questions/196771/what-is-the-best-way-to-escape-python-strings-in-php 2 What is the best way to escape Python strings in PHP? Rob Howard 2008-10-13T05:20:56Z 2009-11-28T18:47:35Z <p>I have a PHP application which needs to output a python script, more specifically a bunch of variable assignment statements, eg.</p> <pre><code>subject_prefix = 'This String From User Input' msg_footer = """This one too.""" </code></pre> <p>The contents of subject_prefix et al need to be written to take user input; as such, I need to escape the contents of the strings. Writing something like the following isn't going to cut it; we're stuffed as soon as someone uses a quote or newline or anything else that I'm not aware of that could be hazardous:</p> <pre><code>echo "subject_prefix = '".$subject_prefix."'\n"; </code></pre> <p>So. Any ideas?</p> <p>(Rewriting the app in Python isn't possible due to time constraints. :P )</p> http://stackoverflow.com/questions/688740/how-to-make-sure-the-code-is-still-working-after-refactoring-dynamic-language 6 How to Make sure the code is still working after refactoring ( Dynamic language) Ngu Soon Hui 2009-03-27T06:36:30Z 2009-11-28T18:02:38Z <p>How to make sure that code is still working after refactoring ( i.e, after variable name change)?</p> <p>In static language, if a class is renamed but other referring class is not, then I will get a compilation error. </p> <p>But in dynamic language there is no such safety net, and your code can break during refactoring <strong>if you are not careful enough</strong>. You can use unit test, but when you are using mocks it's pretty hard to know the name changes and as a consequence, it may not help.</p> <p>How to solve this problem?</p> http://stackoverflow.com/questions/1808721/is-it-possible-to-script-for-data-entry-with-drupal 0 Is it possible to script for data entry with Drupal? heyjude 2009-11-27T13:16:23Z 2009-11-27T16:34:35Z <p>Hi, I'm planning on putting a store's inventory on a Drupal site and I'm wondering if it's possible to create a script (maybe in python/php?) to enter the data automatically to Drupal with CCK? Thanks in advance!</p> http://stackoverflow.com/questions/1781617/to-understand-from-php-array-to-python -2 To understand: From PHP Array to Python ? python 2009-11-23T07:34:21Z 2009-11-26T15:05:51Z <p>This is Common task In PHP and other programming languages.I moved from PHP developer. I want to make sure with this collections. Anyone have who good in python please help me to understand clearly . This is my collections from PHP code.</p> <pre><code>&lt;?php $php = array(1,2,3,4,5,6,7,8,9,10); for ($i = 0; $i &lt; 10 ; $i ++) echo $php[$i]."&lt;br&gt;"; ?&gt; </code></pre> <p>=>What is in Python?</p> <pre><code>&lt;?php for ($i = 0; $i &lt; 10 ; $i ++) echo $php[$i] = $i +1 ; ?&gt; </code></pre> <p>=>What is in Python?</p> <pre><code>&lt;?php $php = array(1,2,3,4,5,6,7,8,9,10); foreach ($php as $value) echo $value."&lt;br&gt;"; ?&gt; </code></pre> <p>=>What is in Python?</p> <pre><code>&lt;?php $arr = array(1, 2, 3, 4); foreach ($arr as &amp;$value) { $value = $value * 2; } // $arr is now array(2, 4, 6, 8) ?&gt; </code></pre> <p>=>What is in Python?</p> <pre><code>&lt;?php $arr = array("mot"=&gt;"one", "hai"=&gt;"two","ba"=&gt; "three"); foreach ($arr as $key =&gt; $value) { echo "Key: $key; Value: $value&lt;br /&gt;\n"; } ?&gt; </code></pre> <p>=>What is in Python?</p> <pre><code>&lt;?php $arr = array("one", "two","three"); while (list($key, $value) = each($arr)) { echo "Key: $key; Value: $value&lt;br /&gt;\n"; } ?&gt; </code></pre> <p>=>What is in Python?</p> <pre><code>&lt;?php $arr = array("one", "two","three"); while ($element = each($arr)) { echo "Key: $element['key']; Value: $element['value']&lt;br /&gt;\n"; } ?&gt; </code></pre> <p>=>What is in Python?</p> <pre><code>&lt;?php $products = array( array("ITL","INTEL","HARD"), array("MIR", "MICROSOFT","SOFT"), array("Py4C", "pythonkhmer.wordpress.com","TUTORIAL") ); for ($row = 0; $row &lt; 3; $row++) { for ($col = 0; $col &lt;3; $col++) { echo "|".$products[$row][$col]; } echo "&lt;br&gt;"; } ?&gt; </code></pre> <p>=>What is in Python?</p> http://stackoverflow.com/questions/1802415/python-for-in-control-structure 1 python for in control structure Traveling_Monk 2009-11-26T08:59:05Z 2009-11-26T10:42:10Z <p>I am a php programmer trying to understand python's for in syntax I get the basic <a href="http://docs.python.org/tutorial/controlflow.html#for-statements" rel="nofollow">for in</a></p> <pre><code>for i in range(0,5): </code></pre> <p>in php would be</p> <pre><code>for ($i = 0; $i &lt; 5; $i++){ </code></pre> <p>but what does this do</p> <pre><code>for x, y in z: </code></pre> <p>and what would be the translation to php?</p> <p>This is the full code i am translating to php:</p> <pre><code> def preProcess(self): """ plan for the arrangement of the tile groups """ tier = 0 tileGroupNumber = 0 numberOfTiles = 0 for width, height in self._v_scaleInfo: #cycle through columns, then rows row, column = (0,0) ul_x, ul_y, lr_x, lr_y = (0,0,0,0) #final crop coordinates while not ((lr_x == width) and (lr_y == height)): tileFileName = self.getTileFileName(tier, column, row) tileContainerName = self.getNewTileContainerName(tileGroupNumber=tileGroupNumber) if numberOfTiles ==0: self.createTileContainer(tileContainerName=tileContainerName) elif (numberOfTiles % self.tileSize) == 0: tileGroupNumber += 1 tileContainerName = self.getNewTileContainerName(tileGroupNumber=tileGroupNumber) self.createTileContainer(tileContainerName=tileContainerName) self._v_tileGroupMappings[tileFileName] = tileContainerName numberOfTiles += 1 # for the next tile, set lower right cropping point if (ul_x + self.tileSize) &lt; width: lr_x = ul_x + self.tileSize else: lr_x = width if (ul_y + self.tileSize) &lt; height: lr_y = ul_y + self.tileSize else: lr_y = height # for the next tile, set upper left cropping point if (lr_x == width): ul_x=0 ul_y = lr_y column = 0 row += 1 else: ul_x = lr_x column += 1 tier += 1 </code></pre> http://stackoverflow.com/questions/1183420/web-service-php-or-ruby-on-rails-or-python 0 Web service: PHP or Ruby on Rails or Python? Codezy 2009-07-26T00:21:46Z 2009-11-25T19:16:11Z <p>I am a .Net / SQL Server developer via my daytime job, and on the side I do some objective C development for the iPhone. I would like to develop a web service and since dreamhost supports mySql, python, ruby on rails and PHP5, I would like to create it using one of those languages. If you had no experience in either python, Ruby on Rails or PHP, which would you go with and why? The service basically just takes a request and talks to a MySql database.</p> <p>Note: Was planning on using the SOAP protocol.. though I am open to suggestions since I have a clean slate with these languages.</p> http://stackoverflow.com/questions/1797322/is-there-something-like-for-i-in-rangelength-in-php 2 Is there something like for i in range(length) in PHP? Mask 2009-11-25T14:38:49Z 2009-11-25T14:48:03Z <p>In python we have:</p> <pre><code>for i in range(length) </code></pre> <p>What about in PHP?</p> http://stackoverflow.com/questions/1072920/user-friendly-framework-for-personal-website 3 user friendly framework for personal website ? Morison 2009-07-02T07:02:39Z 2009-11-23T17:12:03Z <p>Hi, Which are the user friendly frameworks for building personal sites? Specially if that comes with little programming knowledge. And integrated jquery will be great. python or php based framework will do better.</p> <p>I tried wordpress and joomla! But those are far more complex for a simple personal site with personal blogging, live commenting, twitting, keeping personal projects and resume etc.</p> <p>Please suggest me. Thanks in advance.</p> http://stackoverflow.com/questions/1768749/effective-interpreted-programming-language-for-file-image-manipulation 1 Effective Interpreted Programming Language for File/Image manipulation David Robles 2009-11-20T06:45:23Z 2009-11-20T16:36:42Z <p>I need to make a script to read images from a directory, rename them, resize them to a MAX_HEIGHT, MAX_WIDTH, put a watermark logo and save them in JPG.</p> <p>I was thinking on doing this with an interpreted language, like Ruby, PHP, Perl, Python, or any with the image manipulation capabilities.</p> <p>Which language would you recommend for this? </p> http://stackoverflow.com/questions/1768576/what-is-the-best-framework-cms-and-shopping-cart-plugin-module-etc-combination 0 What is the best framework/cms and shopping cart plugin/module/etc. combination? milesmeow 2009-11-20T05:53:39Z 2009-11-20T06:21:32Z <p>What is the best framework/cms shopping cart for a beginner php/python developer to implement? I'm potentially going to be developing a site with an online catalog of about one hundred items. Info about the items will change every year. They might add new items. They want to admin their own items and such. I'm afraid that if I use a framework, I'll have to build an admin tool for the client.</p> <p>Here are a few things I've read about... Drupal with Ubercart, Zen-cart</p> http://stackoverflow.com/questions/801090/looking-for-a-php-and-or-python-rad 1 Looking for a PHP and/or Python RAD Yogi Yang 007 2009-04-29T06:17:06Z 2009-11-20T05:18:05Z <p>I am looking for RAD like environment for PHP and/or Python free or not does not matter.</p> <p>It should have a visual environment where one can use a point and click interface so that it is possible to select objects with mouse and move them around.</p> <p>I have looked at Delphi4PHP. The RAD part is fantastic, but I don't like the framework on which it is based VCL4PHP (vcl4php.sourceforge.net) is crappy. Just to deploy a simple Hello world application we will have to deploy 40MB of that framework. That is just stupid.....</p> <p>I looked at Eclipse but it is only a code IDE. Does not have a visual way of designing a page/window. Did I miss any plugin that supports this feature?</p> <p>I was suggested to give NetBeans IDE a close look so I also looked that up, but did not find what I wanted.</p> <p>I have also looked up following but none of these are true RAD:</p> <ul> <li>NuSphere PHPEd</li> <li>VS PHP for Visual Studio </li> <li>PHP Designer (not a designer by any means just a plain old IDE)</li> </ul> <p>I have not been able to find any descent Python RAD tool also.</p> <p>I have looked up Yes Software's Code Charge Studio (www.yessoftware.com) but it cannot be used to develop complicated applications like say for example an Accounting System or an Inventory Management App, etc.. It is useful but for very simple apps. Making changes to Visual part (referred as components by this people) is a nightmare. Finally it does not support Python.</p> <p>Any suggestions please?</p> <p>I am a bit desperate on this.</p> <p>TIA</p> <p>Regards,</p> <p>Yogi Yang</p>