CiviCRM Community Forums (archive)

*

News:

Have a question about CiviCRM?
Get it answered quickly at the new
CiviCRM Stack Exchange Q+A site

This forum was archived on 25 November 2017. Learn more.
How to get involved.
What to do if you think you've found a bug.



  • CiviCRM Community Forums (archive) »
  • Old sections (read-only, deprecated) »
  • Support »
  • Using CiviCRM »
  • Using Profiles (Moderator: Dave Greenberg) »
  • Joomla user account registration option in profile not displaying on front page
Pages: [1]

Author Topic: Joomla user account registration option in profile not displaying on front page  (Read 1225 times)

dismi

  • I’m new here
  • *
  • Posts: 3
  • Karma: 0
  • CiviCRM version: 4.08
  • CMS version: Joomla 1.7
  • MySQL version: 5.2.17
  • PHP version: 5.0.9
Joomla user account registration option in profile not displaying on front page
February 07, 2012, 11:49:04 am
I have set up and test CiviCRM 4.08 on Joomla 1.7 and i have 2 sites that I have tested this on. When the profile has Joomla registration enabled it works on one site but not on the other site
I also disabled the Joomla registration on the first site and it worked but nothing seems to be working on the other site. One is just a test site for the live site. Is there a setting in the database that is missing?


Kurund Jalmi

  • Administrator
  • I’m (like) Lobo ;)
  • *****
  • Posts: 4169
  • Karma: 128
    • CiviCRM
  • CiviCRM version: 4.x, future
  • CMS version: Drupal 7, Joomla 3.x
  • MySQL version: 5.5.x
  • PHP version: 5.4.x
Re: Joomla user account registration option in profile not displaying on front page
February 07, 2012, 11:28:14 pm
Note that user registration option is shown only for anonymous user, i.e you need to logout from frontend / backend.

HTh
Kurund
Found this reply helpful? Support CiviCRM

dismi

  • I’m new here
  • *
  • Posts: 3
  • Karma: 0
  • CiviCRM version: 4.08
  • CMS version: Joomla 1.7
  • MySQL version: 5.2.17
  • PHP version: 5.0.9
Re: Joomla user account registration option in profile not displaying on front page
March 19, 2012, 05:21:20 am
It is an issue with the the check availability link when the create Joomla user is selected in the profile. The link doesn't work and when the form tries to calculate the total amount nothing shows up but it does in on the test server.

Kurund Jalmi

  • Administrator
  • I’m (like) Lobo ;)
  • *****
  • Posts: 4169
  • Karma: 128
    • CiviCRM
  • CiviCRM version: 4.x, future
  • CMS version: Drupal 7, Joomla 3.x
  • MySQL version: 5.5.x
  • PHP version: 5.4.x
Re: Joomla user account registration option in profile not displaying on front page
March 20, 2012, 11:03:28 am
check availability might be broken due to some notice issues.. I would recommend upgrade to latest stable 4.1.x and the try below patch:

Code: [Select]
===================================================================
--- branches/v4.1/CRM/Utils/System/Joomla.php   2012-03-14 20:21:16 UTC (rev 39066)
+++ branches/v4.1/CRM/Utils/System/Joomla.php   2012-03-14 20:56:45 UTC (rev 39067)
@@ -165,7 +165,7 @@
        $query->select( 'username, email' );
        $query->from($JUserTable->getTableName());
        $query->where('(LOWER(username) = LOWER(\''.$name.'\')) OR (LOWER(email) = LOWER(\''.$email.'\'))');
-        $db->setQuery($query, 0, $limit);
+        $db->setQuery($query, 0, 10);
        $users = $db->loadAssocList();

HTh
Kurund
Found this reply helpful? Support CiviCRM

Pages: [1]
  • CiviCRM Community Forums (archive) »
  • Old sections (read-only, deprecated) »
  • Support »
  • Using CiviCRM »
  • Using Profiles (Moderator: Dave Greenberg) »
  • Joomla user account registration option in profile not displaying on front page

This forum was archived on 2017-11-26.