Jump to content

Links Directory [IP.Board 3.4]


Adriano Faria

Recommended Posts

I will likely end up adding it as a field validator.... I actually already moved check for valid url to such..... 'Valid Linkable URL' versus simply 'URL'(still an option available).... 'Valid Linkback URL'.

again, it would be a publicly exposed API, not a web-scraping.

Also, I should note, Fields allow category appearance selection, or all 'current and future', meaning you could have one category say, using one set of custom(non-title/description) fields, and another using a different set.

That is fully functional coded functionality, still wrapping up the dev cycle on 4.1.... mainly is extensions and feedback-requested items like this..... the framework is laid solid.

Link to comment
Share on other sites

  • Replies 1.2k
  • Created
  • Last Reply

That is the only thing preventing me from buying at the moment. The script looks great and is exactly what I need except for that 1thing. I understand it does create extra load on the server etc but you could make it so it only checks a couple of sites a time at random every x amount of hours or something. I would like the ability to have a links resource on my site but if they are not linking back to me then there seems less point etc. Mutual exchanges are always good. I know this probably was not designed with that in mind but it would be a nice option :)

Link to comment
Share on other sites

When trying to approve links individually this error occurs :

Warning: Missing argument 2 for linksFollow::sendNotification(),
called in
/home/forumkey/public_html/admin/applications_addon/other/links/sources/classLinks.php
on line 167 and defined in /home/forumkey/public_html/admin/applications_addon/other/links/sources/classWatchedContent.php on line 201

and an invalid link message occurs from the main approve links page - even though the links are just fine and a screenshot has been grabbed ?

For example trying to approve any / all of these results in an invalid link error when the links are clearly fine ??

post-371416-0-72441800-1360690092_thumb.

Link to comment
Share on other sites

Working on it, reopening the tracker report...... getting the feeling it is js-related.... will produce(much as I am loath to with 4.1 almost to prod) a maintenence release resolving that and the floating box will not go away.

Thanks, just discovered I've a few pages of links awaiting approval !

Link to comment
Share on other sites

No change with new files.

elaborate please....

and an invalid link message occurs from the main approve links page - even though the links are just fine and a screenshot has been grabbed ?

For example trying to approve any / all of these results in an invalid link error when the links are clearly fine ??

this should not occur, if it still is, please drop your browser cache.... the old javascript is being cached.

Warning: Missing argument 2 for linksFollow::sendNotification(), called in /home/forumkey/public_html/admin/applications_addon/other/links/sources/classLinks.php on line 167 and defined in /home/forumkey/public_html/admin/applications_addon/other/links/sources/classWatchedContent.php on line 201

$this->links->sendNotification('newlink', array_merge($link, $this->links->getCategory($link[ 'link_category_id' ])));

is the code triggering that...

swapping for:

		    $link = IPSLib::mergeArrays($link, $this->links->getCategory($link['link_category_id']));
		    $this->links->sendNotification('newlink', $link);

If that does not fix it(full re-upload of the files)... give me access details via PM please, still unable to reproduce, and until someone gives me access, I am shuffling code blind as heck.

I did get a rebuild furl cache warning in the admin. Rebuilding made no difference.

this has to do with timezone.... the last modified date of furlTemplates.php reads ‎Sunday, ‎February ‎10, ‎2013, ‏‎12:02:00 AM.

there is nothing that I can do to resolve this, you however can edit /home/forumkey/public_html/admin/applications_addon/other/links/extensions/furlTemplates.php, change nothing, save, and reupload to the site and it should allow a recache to remove the warning.

Link to comment
Share on other sites

found the issue with the access provided... reupload should resolve... thankfully I am removing that particular __call... to fix just redefined the method in the class so that __call cannot fire as the code refactor made to remove such is extremely large and already done in 4.1..... but WHAT PHP version are you running, those that hit this?

the actual error was due to __call not passing along all $arguments....... which is insane(this coming from one arguably insane.... that is a new definition of insane unseen to man), and explains my inability to reproduce.

Link to comment
Share on other sites

Hello,

I have an error with the search in the links section since I updated to the last version (a week ago more or less) and another small error with the secondary navigation. I explain more details below:

The search of the word, for example "discoteca", gives 3 results which are ok. The problem is with the link. When I click on any result it takes me to the home page instead of taking me to the link page.

post-129137-0-33499100-1360782517_thumb.

Another problem occurs when the keyword is in the title of the link, it shows a strange code:

post-129137-0-06067700-1360782515_thumb.

Finally there is another minor problem related to the words at the top of the category pages. Instead of ending in the name of the category, it ends on the name of a random link:

post-129137-0-58014100-1360782518_thumb.

Link to comment
Share on other sites

odd, this version seems to add to right side (blank really) causing a scroll bar to appear. I did fully disable promenu too to make sure was not menu issue.

this seems to only happen when actually viewing a link.

category and main page views do not do it.

I will disable hooks throughout the day to see if thats it, was not issue in prior version though.

I will test stuff and report back

this is on default skin while some custom skins do not do this.

pretty sure this is particular to my install.

Link to comment
Share on other sites

odd, this version seems to add to right side (blank really) causing a scroll bar to appear. I did fully disable promenu too to make sure was not menu issue.
this seems to only happen when actually viewing a link.
category and main page views do not do it.
I will disable hooks throughout the day to see if thats it, was not issue in prior version though.
I will test stuff and report back
this is on default skin while some custom skins do not do this.
pretty sure this is particular to my install.

share links. facebook sucks. going to end up making what I did to resolve it on one board the stock to 4.0.6 then, thought it was that specific skin(it did not occur on the stock)....
4.1 puts it in a popup for this reason.

Hello,

I have an error with the search in the links section since I updated to the last version (a week ago more or less) and another small error with the secondary navigation. I explain more details below:

The search of the word, for example "discoteca", gives 3 results which are ok. The problem is with the link. When I click on any result it takes me to the home page instead of taking me to the link page.

attachicon.gifsearcherror2.png

Another problem occurs when the keyword is in the title of the link, it shows a strange code:

attachicon.gifsearcherror1.png

Finally there is another minor problem related to the words at the top of the category pages. Instead of ending in the name of the category, it ends on the name of a random link:

attachicon.gifstrangeerror.png

looking into it... appears to be template issues re #1(missing strip_tags post-searchterm highlight in the thumbnail code, and possibly missed changing the template parse url base OFF publicWithApp base for full url including app=links with just public base ), and #2 me needing to kill the hacky code for category crumb and have it sanely in the controller(I have hated the way this was done since laying eyes on it, already killed in 4.1 dev).

http://www.marchertech.com/board/tracker/issue-39-share-links-overflow/

http://www.marchertech.com/board/tracker/issue-37-template-woes/

http://www.marchertech.com/board/tracker/issue-38-breadcrumb-on-category-view/

Link to comment
Share on other sites

had not had chance to fully check on it, disabling all hooks did not fix and (due to the one custom skin that does work) I was about to look towards the share links box.

it is a very minor issue and I still cannot say with any certainty that its actually app related, meaning I cannot prove it.

but I am suspecting its the share/fb section.

and you are more than welcome to poke around on my end if needed, have live cloned over and can pm access if it would be any help.

Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.

  • Recently Browsing   0 members

    • No registered users viewing this page.

×
×
  • Create New...