PDA

View Full Version : axcount address on map selextion and incomplete listing



autocy
February 14, 2018, 09:42 AM
If a user adds a listing and selects 'account address on map' and leaves the listing in incomplete state then he can't continue by clicking 'incomplete' under 'my listings' page.
He gets error 404. Can you please check it?

autocy
February 14, 2018, 09:46 AM
I can confirm that the problem is 'account on the map' selection..I have just tried it on your demo site (autos)

Rudi
February 14, 2018, 04:29 PM
Hello,

it's caused by a 'smooth' bug on this page
you can fix it yourself:

go to your ftp > includes > classes > rlListings.class.php > find 'function edit'

then find a code below:


$account_info = $GLOBALS['rlAccount']->getProfile((int)$account_id);


and change to:


if ( empty($account_info) ) {
$account_info = $GLOBALS['rlAccount']->getProfile((int)$account_id);
}

autocy
February 14, 2018, 07:57 PM
Thanks Rudi