Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 8 years ago.
Improve this question
we have developed e-learning web site for one of our customer.
recently he asked he need SCORM feed.
i dornt know whether my system is compatible with scrom.
do any body know any opensource php tool or lib to generate scrom from existing data.
thanks
The first thing you need to determine is whether your site would be considered a learning management system or a piece of content. The SCORM implementation varies considerably based of what you are trying to develop. Check out http://www.scorm.com/scorm-explained/ for a good explanation of SCORM and how it works.
I have tried Chamilo 1.9.6 and works well with SCORM 1.2 and 2004. This was used as evaluation tool (test) with up to 90 questions.
Have a look at Moodle project - SCORM module: http://docs.moodle.org/20/en/SCORM_module It's open source, but I do not know, it the SCORM related code is easy to use outside Moodle.
www.dokeos.com comes with open source edition containing SCORM module.
Or try Chamilo, it is maybe better fork of dokeos.
Drupal has a limited support for SCORM, too.
Good reputation has eFront.
Ilias is certified for SCORM 2004.
TinyLMS is interesting project - JavaScript only.
Also get idea from http://www.vsscorm.net/run-time-environment-rte/run-time-environment-downloads/
Don't forget Chamilo!! http://www.chamilo.org
You can try a demo at http://campus.chamilo.org
Chamilo supports SCORM is also a claroline/dokeos fork
Related
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 8 years ago.
Improve this question
I just started a project in a company, they had it hosted on Google App Engine and the app was developed in Java. The thing is that this code was totally unreadable. So I've came to the conclusion that the best solution would be start it all over.
Because it is a Facebook App, one approach would be to stop using Java and start using their available PHP SDK. But, Google App Engine still doesn't work well with PHP, we can't install Frameworks like Yii without workarounds, etc.
So I think the best solution would be change the place that we are hosting the application. It needs to be a host for scalable PHP applications.
I've researched a little bit and found people talking about Pagoda and appfog.
Do you have any suggestions? What is the best solution considering: price, efficiency and also it needs to be easy to use. I don't have a lot of experiences managing servers, I usually have someone on the company that takes care of all of that for me.
My best advice would be to choose a standard Cloud provider like DigitalOcean, VPS.net or AWS. You get full access to the server to configure and install anything you like, and they often come with pre-built server images with PHP/MySQL/Apache already configured and ready to use.
Heroku has PHP support to https://devcenter.heroku.com/articles/getting-started-with-php and it's ideal for FB apps https://devcenter.heroku.com/articles/facebook
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 4 years ago.
Improve this question
I am currently writing a payment gateway integration for wordpress (simple redirect) and once finished I would like to list it for sale online for others to use.
The plugin will be listed in the wordpress extensions, and there will be a free version with all the basic functionality. The pro (paid) version will have further customisation to page styling etc.
So - I would like people to pay on a website for an API key for the pro version, and simply enable that functionality on their plugin by entering the key...
Can someone point me in the right direction as to where to start?
Is there an open source framework for this already available?
Do I learn RESTful/SOAP?
Any help would be greatly appreciated - thanks!
If you're open to a 3rd Party solution, check out http://3scale.net. It will take care of letting you create a white-label page to assign/manage API keys, and let you set up metering too, if you'd like. I've used their Scala library with great success, but there is also a PHP library they provide that will do the trick for you.
https://github.com/3scale/3scale_ws_api_for_php/tree/master
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 6 years ago.
Improve this question
I'm about to integrate Amazon Simple Storage Service (S3) with a php web application that must maintain a lot of office documents and photoshop files.
Can anyone point me to a brief tutorial on how to do this? There's "too much" documentation on the Amazon website for me to wade through. I learn best by studying and tinkering with code that actually works.
If you're using Zend, the S3 section has a great tutorial.
http://framework.zend.com/manual/en/zend.service.amazon.s3.html
If not, but don't want to roll your own code, try this:
http://undesigned.org.za/2007/10/22/amazon-s3-php-class
The basics are pretty ... basic:
$s3 = new S3('accessKey', 'secretKey');
$s3->putBucket('bucket', S3::ACL_PUBLIC_READ);
$s3->putObjectFile('file.doc', 'bucket', 'docs/file.doc', S3::ACL_PUBLIC_READ);
$s3->deleteObject('bucket', 'docs/file.doc');
Or this:
https://github.com/tpyo/amazon-s3-php-class
Which is a great library - I've used it. I prefer it to Zend S3.
I would use the official SDK for php from Amazon.
Start with the Getting Started Guide, and then consult the full library docs as needed.
If you are new to S3, the general getting started guide should be useful in giving a general overview of how the service works.
This very nice tutorial comes with an added bonus; it links to an already-written library, so you won't have to write all the code yourself.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 3 years ago.
Improve this question
Does PHP have any classes to receive email? Do you know of any good resources about this?
Try php-imap library. It's very popular and stable.
I had this question too and I wanted to get emails in real time so I worked out my own solution with google app engine. I basically made a small dedicated google app engine app to receive and POST emails to my main site.
You can check out Emailization (a little weekend project I did to do it for you), or you this small GAE app that should do the trick.
I kinda explained it more on another question.
Hope that helps!
If you want to receive e-mail in real-time(COOL? but have to use .appspot domain. You could off course also forward it to the .appspot domain) I would advise you to have a look at google app engine which is free to use(generous quota). You could forward the email it your webserver using asynchronous request which in turn let's you do all the cool stuf you would like it to do in PHP.
Python is pretty easy to learn especially after watching this video from Brett Slatkin explaining how to "Developing and deploying an application on Google App Engine" and the snippets in the google app engine documentation should get you started in no time.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 7 years ago.
Improve this question
I'm looking for a PHP script that can:
Be downloaded and installed on my website
Give my site or any other entered url a SEO score
Suggest improvements for the entered site
Is there somethiing open-source available that does this? Maybe even a paid service that allows me to call a web service from my site?
Hardly as a script. Doing the kind of checks you talk about requires constant development and updating. I doubt anybody is going to hand out this kind of script for free. As for web services, you could ask the big "SEO checkers" whether they offer any licensing options.
Speaking of open source, there is a seo plugin for Wordpress "WordPress SEO by Yoast"
http://wordpress.org/extend/plugins/wordpress-seo/
there are two files class-metabox.php and TextStatistics.php which together score text, check for h2 tags, count keyword frequency and density, and a few other simple things. Best way to see it to install the plugin and play with it a little.
However you need to carve out the code yourself to make it work for you.
Sorry, there's no such script out there or open source. One of the reasons you won't find such script is that there's no money to be made from it. That said, some SEO companies have in-house tools built by their developers or custom built based on their specific requirements.
So, think about getting a developer to build one for you - it shouldn't take much to get one running.