Codoforum related discussions
User Deletion Problem / SSO Issues / Other Problems

Issues I discovered so far in Codoforum v2.6 / Feature Requests

@adesh, @admin

Thanks for all your efforts in serving humanity with your awesome software which you even offer for free. Kudos to you and your team.

However, below are the issues i have discovered so far while test running Codoforum on my Joomla 2.5 localhost website:

================================================================

  • No means of deleting unwanted users at the backend by the admin.

  • SSO refused to work with my localhost test site even after following the instructions given. (code settings applied to the client.php file shown below.)

<?php

/**
 * 
 * You do not have to edit sso.php file
 * 
 * This file/code should get executed when Codoforum sends a request
 * to the path <SSO Get User Path> as defined in SSO plugin settings
 * in Codoforum backend
 * 
 * 
 */

require 'sso.php';

/**
 * 
 * The SSO client id and secret MUST be same as that set in the Codoforum
 * SSO plugin settings
 */
$settings = array(

  "client_id" => 'test',
  "secret" => 'forumx',
  "timeout" => 6000  
);

$sso = new codoforum_sso($settings);

$account = array();

/**
 * 
 * Here comes your logic to check if the user is logged in or not.
 * A simple example would be using PHP SESSION
 */
if (USER_IS_LOGGED_IN) {

    $account['uid'] = USERNAME; //Your logged in user's userid
    $account['name'] = USERNAME; //Your logged in user's username
    $account['mail'] = EMAILID; //Your logged in user's email id
    $account['avatar'] = ''; //not used as of now
}

$sso->output_jsonp($account); //output above as JSON back to Codoforum
exit();
  • No means of denying a user access to modifying his post at the backend.

  • Trying to change the category of an existing post does not work.

  • No means of creating extra specific roles like "manager" or just any chosen title by the Admin at the backend.

  • In block settings under UI Elements, selecting more than 1 role results in the following errors:

Fatal error: Uncaught exception 'Illuminate\Database\QueryException' with message 'SQLSTATE[23000]: Integrity constraint violation: 1062 Duplicate entry '1' for key 'PRIMARY' (SQL: insert into `codo_block_roles` (`bid`, `rid`) values (1, 2), (1, 3), (1, 4))' in C:\xampp\htdocs\test\forum\sys\vendor\illuminate\database\Illuminate\Database\Connection.php:555 Stack trace: #0 C:\xampp\htdocs\test\forum\sys\vendor\illuminate\database\Illuminate\Database\Connection.php(338): Illuminate\Database\Connection->run('insert into `co...', Array, Object(Closure)) #1 C:\xampp\htdocs\test\forum\sys\vendor\illuminate\database\Illuminate\Database\Connection.php(295): Illuminate\Database\Connection->statement('insert into `co...', Array) #2 C:\xampp\htdocs\test\forum\sys\vendor\illuminate\database\Illuminate\Database\Query\Builder.php(1840): Illuminate\Database\Connection->insert('insert into `co...', Array) #3 C:\xampp\htdocs\test\forum\admin\modules\ui\blocks.php(248): Illuminate\Database\Query\Builder->insert(Array) #4 C:\ in C:\xampp\htdocs\test\forum\sys\vendor\illuminate\database\Illuminate\Database\Connection.php on line 555

Solving these problems will really take Codoforum to a greater and better height. Please update me as you apply the fixes.

Thanks a lot.

Chinny

Issues I discovered so far in Codoforum v2.6 / Feature Requests ============================================================== @adesh, @admin Thanks for all your efforts in serving humanity with your awesome software which you even offer for free. Kudos to you and your team. However, below are the issues i have discovered so far while test running Codoforum on my Joomla 2.5 localhost website: ================================================================ - No means of deleting unwanted users at the backend by the admin. - SSO refused to work with my localhost test site even after following the instructions given. (code settings applied to the client.php file shown below.) ```` &amp;lt;?php /** * * You do not have to edit sso.php file * * This file/code should get executed when Codoforum sends a request * to the path &amp;lt;SSO Get User Path&amp;gt; as defined in SSO plugin settings * in Codoforum backend * * */ require &#039;sso.php&#039;; /** * * The SSO client id and secret MUST be same as that set in the Codoforum * SSO plugin settings */ $settings = array( &quot;client_id&quot; =&amp;gt; &#039;test&#039;, &quot;secret&quot; =&amp;gt; &#039;forumx&#039;, &quot;timeout&quot; =&amp;gt; 6000 ); $sso = new codoforum_sso($settings); $account = array(); /** * * Here comes your logic to check if the user is logged in or not. * A simple example would be using PHP SESSION */ if (USER_IS_LOGGED_IN) { $account[&#039;uid&#039;] = USERNAME; //Your logged in user&#039;s userid $account[&#039;name&#039;] = USERNAME; //Your logged in user&#039;s username $account[&#039;mail&#039;] = EMAILID; //Your logged in user&#039;s email id $account[&#039;avatar&#039;] = &#039;&#039;; //not used as of now } $sso-&amp;gt;output_jsonp($account); //output above as JSON back to Codoforum exit(); ```` - No means of denying a user access to modifying his post at the backend. - Trying to change the category of an existing post does not work. - No means of creating extra specific roles like &quot;manager&quot; or just any chosen title by the Admin at the backend. - In block settings under UI Elements, selecting more than 1 role results in the following errors: ```` Fatal error: Uncaught exception &#039;Illuminate\Database\QueryException&#039; with message &#039;SQLSTATE[23000]: Integrity constraint violation: 1062 Duplicate entry &#039;1&#039; for key &#039;PRIMARY&#039; (SQL: insert into `codo_block_roles` (`bid`, `rid`) values (1, 2), (1, 3), (1, 4))&#039; in C:\xampp\htdocs\test\forum\sys\vendor\illuminate\database\Illuminate\Database\Connection.php:555 Stack trace: #0 C:\xampp\htdocs\test\forum\sys\vendor\illuminate\database\Illuminate\Database\Connection.php(338): Illuminate\Database\Connection-&amp;gt;run(&#039;insert into `co...&#039;, Array, Object(Closure)) #1 C:\xampp\htdocs\test\forum\sys\vendor\illuminate\database\Illuminate\Database\Connection.php(295): Illuminate\Database\Connection-&amp;gt;statement(&#039;insert into `co...&#039;, Array) #2 C:\xampp\htdocs\test\forum\sys\vendor\illuminate\database\Illuminate\Database\Query\Builder.php(1840): Illuminate\Database\Connection-&amp;gt;insert(&#039;insert into `co...&#039;, Array) #3 C:\xampp\htdocs\test\forum\admin\modules\ui\blocks.php(248): Illuminate\Database\Query\Builder-&amp;gt;insert(Array) #4 C:\ in C:\xampp\htdocs\test\forum\sys\vendor\illuminate\database\Illuminate\Database\Connection.php on line 555 ```` Solving these problems will really take Codoforum to a greater and better height. Please update me as you apply the fixes. Thanks a lot. Chinny

Put your brain to work. Keep your hands busy. Then relax and take a nice ride on the benefits.

Hi,

No means of deleting unwanted users at the backend by the admin.

This feature will be available in the next version.

No means of denying a user access to modifying his post at the backend.

This is possible in the next version.

Trying to change the category of an existing post does not work.

That is one of the moderation features. We will add move, merge and similar features
in the next to next version.

No means of creating extra specific roles like "manager" or just any chosen title by the Admin at the backend.

This is possible in the next version.

In block settings under UI Elements, selecting more than 1 role results in the following errors:

It has been fixed and will work properly in the next version.

So, if you see almost all your features/bugs will be available in the next version.
Hope you can wait for it and then we can solve your SSO problem too.

PS: The next version will be released on January 1st 2015

Hi, &amp;gt;No means of deleting unwanted users at the backend by the admin. This feature will be available in the next version. &amp;gt;No means of denying a user access to modifying his post at the backend. This is possible in the next version. &amp;gt;Trying to change the category of an existing post does not work. That is one of the moderation features. We will add move, merge and similar features in the next to next version. &amp;gt;No means of creating extra specific roles like &quot;manager&quot; or just any chosen title by the Admin at the backend. This is possible in the next version. &amp;gt;In block settings under UI Elements, selecting more than 1 role results in the following errors: It has been fixed and will work properly in the next version. So, if you see almost all your features/bugs will be available in the next version. Hope you can wait for it and then we can solve your SSO problem too. PS: The next version will be released on January 1st 2015
edited Dec 28 '14 at 4:04 pm

I can't help but say WOW! This is really so fast. I simply love the way you guys are handling issues here.

To all users of other forum software that exist on the internet, am so sorry to say very soon all you guys will revert to Codoforum for your site forums.

Codoforum! The 2015+ Forum Software For The New Age! smile

@adesh You guys are da bomb! Kudos!

I can't wait to get my hands on the new release.

Thanks.

I can&#039;t help but say WOW! This is really so fast. I simply love the way you guys are handling issues here. To all users of other forum software that exist on the internet, am so sorry to say very soon all you guys will revert to Codoforum for your site forums. Codoforum! The 2015+ Forum Software For The New Age! ]:) @adesh You guys are da bomb! Kudos! I can&#039;t wait to get my hands on the new release. Thanks.

Put your brain to work. Keep your hands busy. Then relax and take a nice ride on the benefits.

417
2
2
live preview
enter atleast 10 characters
WARNING: You mentioned %MENTIONS%, but they cannot see this message and will not be notified
Saving...
Saved
With selected deselect posts show selected posts
All posts under this topic will be deleted ?
Pending draft ... Click to resume editing
Discard draft