Skip to main content

Show Posts

This section allows you to view all Show Posts made by this member. Note that you can only see Show Posts made in areas you currently have access to.

Messages - Nalim27

1
Bugs / Re: Chart Random Color not Working
There is no way to release it to graphic users in this situation.
We need a solution, they managed to build a fantastic tool that is phprad, plus the bugs make you lose confidence.

Problem is that developers abandoned this tool. They replaced it with fresh new tool -  Radsystems studio -  that have new set of bugs and .... that cost much more than PHPRad.   Sad but true.

Fun fact is that I bought 1 year of support for PHPRad, but at that time developers already knows that this tool will be deprecated soon, and they did not released any new version of the PHPRad, even when users (including me) posted there bug in code with fix too.
3
Questions / Qustions about licensing
Hello,
   I'm playing with trial version of PHPRad Classic.  There are some bugs and missing features, but generally it is good product.

I want to buy license but I do not understand some sentences from License agreement, can you please answer me?
  • Permission is granted to download a copy of PHPRad (Materials and software) on PHPRad's web site for personal and non-commercial transitory viewing only.
    That means that I can't use PHPRad for commercial use?

  • The License is renewed every year.
    That means that I must buy new license every time when it will expire?  I think that for example for 6 months licence I will receive SW updates for 6 months only buy after that time I can still use copy of PHPRad as long I want it. Am I wrong?

  • As I undertand the sites, generated by PHPRad can be running after licence will expire - Is it correct?

Thank you for responses
4
Bugs / Classic 2.7.3 - AccountController.php have id bug
Hello,
 \AccountController.php  have bug with id if you join some other tables into account that have column id too (in my case it is table teams).
This error happens in this case:
SQLSTATE[23000]: Integrity constraint violation: 1052 Column 'id' in where clause is ambiguous
Stack:
...
3 C:\Apps\xampp\htdocs\titanquest\app\controllers\AccountController.php(43): PDODb->getOne('users', Array)
...

Problem is in function index()) line with where:
Code: [Select]
	function index(){
$db = $this->GetModel();
$rec_id = $this->rec_id = USER_ID; //get current user id from session
$db->where ("id", $rec_id);
$tablename = $this->tablename;
$fields = array("users.id",
"users.login_name",
"users.fullname",
...              

Column in where do not contains name of the table - this is the bug.  Solution is simple - add tablename and it is working:
Code: [Select]
$db->where ("users.id", $rec_id);

Please fix this bug - manula fixing remove AccountController.php from publishing and that is not too good.