Welcome,
Guest
.
Please
login
or
register
.
Did you miss your
activation email
?
News:
Convert
Wordpress to Elxis
with
Elxis importer
!
Home
Help
Login
Register
Elxis CMS Forum
»
Support
»
Installation
»
Can not amend users details [solved]
« previous
next »
Print
Pages: [
1
]
Author
Topic: Can not amend users details [solved] (Read 6011 times)
empusa
Newbie
Posts: 8
Can not amend users details [solved]
«
on:
November 19, 2008, 14:48:20 »
I have recently switched to a new hosting company due to security and reliability problems with the previous host and have copied most of my sites across from the old server.
My new server uses PostGreSQL 8. I prefer to use Postgres as the servers are always quieter than the MySQL ones and should therefore be faster and more reliable
All of my new sites however have one problem. When I go into the Users Manager I get the following error:
Error: operator does not exist: character varying = interger
Line 3: INNER JOIN elx_core_acl_aro AS aro ON aro.value = a.id
Hint: No operator matches the given name and arguements types(s). You might need to add explicit casts.
All of the sites worked fine on the old server (which used Postgres 7)
This error is even occurring on a fresh install of Elxis
«
Last Edit: November 20, 2008, 00:12:31 by empusa
»
Logged
datahell
Elxis Team
Hero Member
Posts: 10356
Re: Can not amend users details
«
Reply #1 on:
November 19, 2008, 23:54:23 »
We have already solved this issue but we have nt yet released the patch.
Open administrator/components/com_users/admin.users.php
Go around line 171-180, you will find something like this:
$query = "SELECT DISTINCT a.*, g.name AS groupname FROM #__users a"
."\n INNER JOIN #__core_acl_aro aro ON aro.value = a.id"
."\n INNER JOIN #__core_acl_groups_aro_map gm ON gm.aro_id = aro.aro_id"
."\n INNER JOIN #__core_acl_aro_groups g ON g.group_id = gm.group_id";
Replace it with this:
$pg = (eregi('postgre', $database->_resource->databaseType)) ? 1 : 0;
$idjoin = ($pg) ? 'aro.value = a.id::VARCHAR' : 'aro.value = a.id';
$query = "SELECT DISTINCT a.*, g.name AS groupname FROM #__users a"
."\n INNER JOIN #__core_acl_aro aro ON ".$idjoin
."\n INNER JOIN #__core_acl_groups_aro_map gm ON gm.aro_id = aro.aro_id"
."\n INNER JOIN #__core_acl_aro_groups g ON g.group_id = gm.group_id";
Save the file, done.
Logged
Elxis Team
|
Is Open Source
|
IOS Rentals | IOS AERO
empusa
Newbie
Posts: 8
Re: Can not amend users details [solved]
«
Reply #2 on:
November 20, 2008, 00:12:04 »
Many thanks.
I can confirm that the patch works.
Pete
Logged
Print
Pages: [
1
]
« previous
next »
Elxis CMS Forum
»
Support
»
Installation
»
Can not amend users details [solved]