A/B Testing Frameworks for PHP [closed]
Asked Answered
P

2

15

What are the good A/B Testing frameworks for PHP, and why?

NOTE: I do NOT want a huge/generic framework that also has a/b testing support - I want a small framework specific to AB testing. Hence, not a duplicate question.

Pharisee answered 18/3, 2011 at 1:18 Comment(2)
refer to this already answered question #3445667Pagano
this is a different question. it's asking about general/large PHP Frameworks with a/b testing support -- I'm asking about a small framework specific-to a/b testsPharisee
R
3

I would try the phpabtest framework. It's small, compact, easy to use.

Roxana answered 18/3, 2011 at 5:47 Comment(6)
Looks nice, but I don't like how it relies on output buffering to parse it's special template tags. Seems like if you rely on output buffering for other stuff it might interfere. Also it seems like it only lets you track results via Google Analytics rather than a database?Pharisee
@philfreo, are you looking to test entirely different pages/views? Another option is to use something like codeigniter as a frame work and add some basic logic to alternate views and track conversions through it. It might be a little heavier than your looking for though.Roxana
Nope -- just parts within a page. But actually I see that there's an alternative way to use this framework without the {phpab} template tags: phpabtest.com/documentation#php-variationsPharisee
@philfreo, that is actually where I was going to point you next depending on your response to my last comment ;) Good luck!Roxana
Another problem is the license: phpA/B requires paid license fee for commercial use. Contact [email protected] for commercial license requests. Looks like I may be writing my own :)Pharisee
@Pharisee - looks like the license has changed: phpA/B is licensed under a GNU General Public License, version 2Anarchism
S
2

You should check out PHP-redis-A-B-Testing , which uses Redis for great performance and doesn't have the commercial license limitations of phpabtest or the limits caused by its tie-ins to google analytics.

Slyviasm answered 26/6, 2012 at 19:11 Comment(1)
PHPA/B's License changed... it's now free for commercial use... GPLv2Stephine

© 2022 - 2024 — McMap. All rights reserved.