PDA

View Full Version : Suspended Links


richrich
01-03-2007, 01:38 PM
In the admin panel, if you choose to see all links that are not reciprical, it brings the list up. If you then click an indicidual link and then choose the options box, you can choose to ban,suspend,delete etc.

If you choose suspend and hit go, it does nothing, the link stays active. If you choose ban, it works and shows the link as banned and with a red colour. Delete as well works i.e it gets deleted.

It would appear the suspend options just does not work or have any effect. I would prefer to tell a site owner they have been suspended for not linking back rather than banned.

I think being banned has the effect they then accept and leave rather than suspend which suggests they can be re-instated. Could this be fixed?

Thanks

bunny
01-03-2007, 05:35 PM
If you choose suspend and hit go, it does nothing, the link stays active. If you choose ban, it works and shows the link as banned and with a red colour. Delete as well works i.e it gets deleted.

Yes i have reported this bug before but no one seems to be around these days, wonder when their holidays will be over and someone able to help us customers :smoke:

Reported : http://www.esyndicat.com/forum/about8315.html

Greg
01-04-2007, 01:38 AM
Yes i have reported this bug before but no one seems to be around these days, wonder when their holidays will be over and someone able to help us customers :smoke:

Reported : http://www.esyndicat.com/forum/about8315.html

Hi bunny :)

They should be back shortly. (I hope) :)
http://www.esyndicat.com/forum/about8272.html

bunny
01-04-2007, 01:52 AM
Hi bunny :)

They should be back shortly. (I hope) :)
http://www.esyndicat.com/forum/about8272.html


I hope so cause i have been almost reached my patience limit, bought this on 25th and still have not got and db migrated , nor any issues resolved.

I know its holidays but come on i didnt bother any guys on 25,26 , 31,1 cause those are valid holidays but other than that well what can i say.

So i hope you guys can provide some needed support.

Greg
01-04-2007, 01:59 AM
I'm just a moderator.

bunny
01-04-2007, 04:28 AM
I'm just a moderator.

No no i didnt mean you as moderators, but the actual people behind this script and all. :sleeping:

Dave Baker
01-07-2007, 12:20 AM
@richrich
If you choose suspend and hit go, it does nothing, the link stays active.
***Open admin/manage-links.php and find following code arround line 103***

elseif ($_POST['change_status'] == 'ban') {
foreach($_POST['links'] as $key=>$value) {
$gAdminDb->updateLinkStatus($value, 'banned');
}
$msg = $gDirLang['changes_saved'];
}

***Below this code add***

elseif ($_POST['change_status'] == 'suspend') {
foreach($_POST['links'] as $key=>$value) {
$gAdminDb->updateLinkStatus($value, 'suspended');
}
$msg = $gDirLang['changes_saved'];
}

***Save file***