Login or create new account.

By registering on joomprod.com, you will have immediate access to all our free products and to the public side of our support forum.

Enjoy our subscriptions.

Each of our subscriptions allow you to enjoy the private side of the support forum and all the update of our products for a period ranging from 3 months to 1 year.

Payment And immediate download.

After subscribing to one of our subscription, the products are immediately downloadable.

Login

Or Register
Accueil / forum / Support / Bruce Support / [RESOLVED] Reordering

Support Availability Because we must sleep sometimes

Working days: Monday to Friday.
Reply time: Depending on the complexity of your support issue it's usually between a few hours to 48 hours.

Support is only guaranteed to paid subscribers

AdsManager - End of life

It is with great regrets that we have chosen to end the developpement of Adsmanager and its other associated components.

AdsManager is born 10 years ago and, as of today, the number of new subscriptions and downloads have fallen and we cannot maintain the component anymore.

All active subscribers will be able to continue enjoying support until the end of their subscription.

The components will be free and no support will be provided anymore for the other users.

×

Notice

The forum is in read only mode.

[RESOLVED] Reordering

More
10 years 2 weeks ago - 10 years 1 week ago #10926 by pauloneal
[RESOLVED] Reordering was created by pauloneal
When we reorder any banner, it clears all the parameters in the DB.

Please can you test and update scripts or tell me how to fix it!

Luckily i had a BU from yesterday!
Last edit: 10 years 1 week ago by loic.
More
10 years 2 weeks ago #10939 by loic
Replied by loic on topic Reordering
Hello,

We will run some test.

Sorry for the inconvenience.

Best regards.
More
10 years 2 weeks ago #10988 by pauloneal
Replied by pauloneal on topic Reordering
Any news please??? Ive paid for this and it is not working correctly!
More
10 years 2 weeks ago #10995 by tompap
Replied by tompap on topic Reordering
Ok I am able to reproduce the issue on a server on our side.
Will now try to find the bug and fix it. Will be back to you soon
More
10 years 2 weeks ago #10999 by tompap
Replied by tompap on topic Reordering
Bug found

To fix it open administrator/components/com_bruce/models/banners.php

replace function onBeforeSave by this new one:
public function onBeforeSave(&$data,&$table) {
		if (isset($data['params'])&&(is_object($data['params']))) {
			$data['params'] = json_encode($data['params']);
		} else {
			$tmp_params = array();
			foreach($data as $key => $d) {
 
				if (strpos($key,"params_") === 0) {
					$k = substr($key,7);
					$tmp_params[$k] = $d;
				}
			}
			$data['params'] = json_encode($tmp_params);	
		}
		return true;
	}
More
10 years 2 weeks ago #11001 by pauloneal
Replied by pauloneal on topic Reordering
That looks like it worked.

Thanks
Time to create page: 0.161 seconds
Powered by Kunena Forum