PaaS that allows C++ code execution from PHP? [closed] - php

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 9 years ago.
Improve this question
I have a web app written in PHP that shell_exec()'s a program written in C++ (which does some intensive calculations and returns a result back to PHP).
Do you know which PaaS providers allow this?

Have you looked at OpenShift by Red Hat? They have powerful customization capabilities (with scripts and such things) that allow you to do just about anything. Look for "action hooks". It's one of the mechanisms that allow you to customize your environment when certain events occur. For example, I used an action hook to install a custom version of Node.js upon application startup in order to circumvent the limitations of the pre-installed Node.js. You can certainly do the same with PHP.
OpenShift by Red Hat
Edit
I once was going to use it to develop a Node.js application that included a custom Node.js extension written in C++.

Related

Subversion control using tortoisesvn [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 8 years ago.
Improve this question
I'm new to subversion control. I'm working on a PHP project in my localhost and I want to share my work with another person from another system so that he can also make changes to the same project. I wanted to use TortoiseSVN for this. Do I need a server for storing my repository? How can I do this? Can anybody suggest me a good tutorial (video may be) so that I can do it myself. I'm sorry if this is an off topic. But I searched a lot for this but couldn't come up with something that fits me.
TortoiseSVN is client, in order to share repository in Net, you must to use server (own or 3-rd party)
There are a lot of (free and not-free) SCM-hostings in the world
Easiest and fastest and easily understood way to have http-based repository on Windows host is VisualSVN Server
In terms of manageability, accessibility and added (on top of pure repository) functionality SVN-hosting is better way (checked and confirmed by my own experience)

automated testing frameworks? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 8 years ago.
Improve this question
how can i automate testing of a web based application?
What are some frameworks that i can use to write scripts that will run automatically / on demand and indicate success or failure?
You can use Selenium or PHPUnit
We have set up a hook with SVN so that on a commit, PHPUnit is run.
I would imagine you could do the same with git/CVS or whatever version control you use.
Microsoft has a awesome framework for generating, coding, and running automated UI tests, which is included with Visual Studio 2010.
You can use TFS to run your tests on demand or in response to a continuous integration.

Is there a PHP Sandbox, something like JSFiddle is to JS? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 8 years ago.
Improve this question
Is there a PHP Sandbox, something like JSFiddle is to JS?
If you are just looking for an online site to play around with PHP code, try
http://phpfiddle.org/
http://ideone.com/
https://codeanywhere.net/
http://www.tehplayground.com/
http://sandbox.onlinephpfunctions.com/
http://codepad.org/
https://eval.in/
https://implode.io/ (permits attaching a version of the Laravel framework)
The most sophisticated is:
http://3v4l.org/
It lets you test your code in all PHP versions starting from PHP4.
If you want something for your local environment, the Runkit extension aims to provide a PHP Sandbox:
Instantiating the Runkit_Sandbox class creates a new thread with its own scope and program stack. Using a set of options passed to the constructor, this environment may be restricted to a subset of what the primary interpreter can do and provide a safer environment for executing user supplied code.
If you dont want to use Runkit but still want a PHP Console on your server, try
Jordi Boggiano's Blog - PHP Console in Your Browser
http://github.com/seldaek/php-console

Open-source comment engines [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 9 years ago.
Improve this question
I'm looking for a solid open-source commenting engine written in PHP. It needs to have workflow/moderation capabilities as well.
I've checked into Disqus, and while I like the concept, the site owner's may develop their own login system at a later point, which would have to integrate with the comment system. Also, I'm not sure that they want the comments hosted remotely.
Does anyone have any recommendations that I might look into? Alternatively, if you have experience with Disqus, what do you like/dislike about it?
Commentator looks to have a solid community backing, is written in PHP, and has most of the features you'd expect from a comment system.
you may want to check on to this site too, here is the link:
Commentics
as the Website itself Describes it :
What is Commentics?
Commentics is a free, advanced PHP comment script with many features. Professionally written and with open source code, its main aims are to be integrable, customizable and secure. It is designed to be integrated into your existing pages.

php based document management system [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 9 years ago.
Improve this question
Can anyone recommend a simple document management system with a decent web service interface?
I am looking at using it to provide metadata management of uploaded files from a ajax web application.
I've tried KnowledgeTree, but it's web service layer seems to be a bit complicated. Is there anything else out there with the similar features but a better integration backend?
DocMgr have just released a new version where they have a xml based web service API. I have not tried the new version yet, but the document management system is great (IMO way better that knowledge tree), and is worth a try.
One note is that it runs on PostgreSQL for speed, so this could be an issue if you are planing on running this at a web host, but I reccomend testing it out!
I'm sorry to hear that you found the KnowledgeTree web services interface complex. We'd love to hear more about what we could do to improve it. Feel free to drop us a mail on community |AT| KnowledgeTree | DOT | com
Have you taken a look at our latest documentation?
http://docs.knowledgetree.com/api/latest/
It covers the complete API and includes loads of examples to help get you started.
Phil (KnowledgeTree Team)
http://www.opendocman.com/

Categories