![]() |
Quote:
Quote:
|
Quote:
|
updated without any problems
will do some tests and report if there were any issues thanks Andrew |
I've updated without any problem. Also I have updated the chinese translation. Now this time is 100% completed. :D
|
Andrew, thanks for RC2! *installing*
|
RC2 downloaded .. I'll install later tonight and report any issues I find :)
|
Quote:
I think this will quickly show you how it works and what is needed: https://vborg.vbsupport.ru/showthread.php?p=1276144 Something similar to the last option would be needed. BTW: what do you need to have translated to Dutch? Please send it to me and I'll try to whip it up before my vacation. Edit: I just upgraded to 2.2.8 RC2 and got this message: Quote:
|
Quote:
Quote:
Code:
<phrase name="ldm_cp_categories" date="0" username="" version=""><![CDATA[Categorieen]]></phrase> Some of the phrases include codes like "{1}" "{2}", etc. These indicate a place where something else will be filled in by LDM. You need to make sure that the word order in Dutch makes sense, so you may need to move the codes around in the phrase. However, they must be in the "right" places - so "{1}" can appear after "{2}". Quote:
|
Quote:
|
Quote:
PS: Some phrases such as "bytes", "url" or "Mimetypes" are don't need to translate into chinese, cause we use them as normal. |
Hi Andrew, im just tryin Hack/Modify LDM
and i've one question why u seprated the catid and keywordid from _linkslink table into _linksltok and linksltoc instead of a field inside _linkslink table? whats this kind of relationship? is that standard? im creating my own artist and track tables but donno how to make its relationship into _linkslink table i can add fields called artistid and trackid into _linkslinks structure, and also can use ur method, creating another tables named _linksltoa and _linksltot but which one is better? im newbie in MySQL database designin Special thanks for this AWESOME Mod, LDM, even u dont reply this post PS: sorry if my grammar sux:P PS2: sorry misspelling, its 10:36 AM here and im still awake:D |
Quote:
So in LDM the table structure reflects the fundamental data types - a category, an entry, a keyword, a hit, etc, and the 'XtoY' tables allow you join these together - find all the keywords associated with an entry and vice-versa, all the entries associated with a category, etc. What you are trying to do is add a feature to LDM that people have suggested for some time (and I haven't had time to deal with), i.e. add extra data to the system. There are pros and cons to doing it in different ways: - If you add one new column to the 'entries' table (links), then the logic is easy to implement but very inflexible. There are ways of forcing several different data items into the one columns (use the php serialize function, for example), but it becomes a mess. - If you add a new column for each new datatype, it become a mess very quickly. - If you handle it in a different table, then the logic is much cleaner, but it can become quite tricky to construct efficient SQL queries. In LDM, the hairiest piece of code are the routine that build the linkbits (the individual rows which show each entry) [get_linklistbit] and the routine that works out the required SQL query [get_mainsql]. get_mainsql constructs the required 'joins' on tables to pull in the required information. Unfortunately, joins can easily get very expensive, and you can end up killing your server if you are not careful. For your purposes, I think it would be easiest to create new tables which have this form: 1) artistid, artistname, etc and 2) linkid, artistid or 1) trackid, trackname, etc and 2) linkid Hope that helps! |
Quote:
Yeah, got ya:) Special Thanks to you Andrew, |
Andrew, I have a question about vba_moudule ldm_tot.module.
It seems that the "served" option only display with a integer number. But think about that when we have number end with Gbytes, it will probably not so suitable. I hope it can display the resulat like this: "served 2.xx Gbytes". Is it thinkable? |
Quote:
|
I don't know if this question has already been answered and I'm sorry if it is, but can you also set permissions based on user's post count and title/ranks?
|
Quote:
|
Quote:
|
Quote:
I'm always complaining. :p Installing RC2 and testing, did i say thanks? ;) |
Quote:
|
:confused:I uploaded the files. When I go to the admin and click on
links and downloads>settings> or links and downloads>permissions> I get - Fatal error: Allowed memory size of 8388608 bytes exhausted (tried to allocate 737280 bytes) in /../forums/local_links_admin.php(1693) : eval()'d code on line 386 what do I do? Where do i even begin to check out the problem? |
Quote:
Go to vbulletin->admincp->maintenance->phpinfo. Look for the memory_limit and safe_mode settings. I imagine you'll find that memory_limit is 8M. You should ideally get your site admin to increase that to (e.g.) 12M - it's set in the server's php.ini file. If you can't do that, and provided safe_mode is off, I can probably give you a patch that will get round the problem. |
I tried upgrading to php 5, and vBulletin itself was giving this type of error. I needed to move back to php4. My host is currently set at 8MB, and will be updating that soon so I can move back to php5.
|
Quote:
|
Hi Andrew, is that possible to let the keyword have more than 1 word? I mean, key phrases, like amazon did. For some phrases, such as "fairy tales", I don't know how to appoint the keyword with only one word.
|
Quote:
|
Members often put keyphrases in anyway. This now causes a mass of unwanted keywords, as every word in the phrase is handled as a keyword. These need to be cleaned up regularly. I have about 600 keywords I need to delete per month.
I did add keywords with dashes, like 'fairy-tales', but members will enter 'fairy tales' non the less and leave 'fairy-tailes' untouched. |
Quote:
|
You've created a monster Andrew. It's so good that the end is near the end of the rainbow. I mean this. You can expand this to be an advanced photo / image gallery, a advanced multimedia player( wimpy only plays a few formats), reciprocal links manager, expand vb integration, add design options, etc. etc.
I do believe that your software is no less valuable than vbulletin itself and therefor to fully develop it to full potential, you'll need either a lot of time or a team of coders. |
How has this escaped being mod of the month? It should be mod of the year!!
|
Hi,
I encouter a problem, if I try to download a file via LDM. Quote:
TIA SF |
Quote:
|
Is there any way to upload the files on another server (different IP etc.) ?
|
Quote:
|
Hi AndrewD,
Currently only admins get an email when a link is reported. is there a possibility to change this, so that admins and member of another group ("ldm-mods") get an email? thank you! |
Quote:
|
Quote:
|
Quote:
The moderators are anyone who has LDM's *can_moderate_link* permission in the category in question, and anyone who is a vbulletin moderator for the forum that is associated with that category (if any). |
DarkRyda asked for help with this new 'extra', which patches the VB similar threads feature to display similar entries from LDM.
It works (I hope) with version 2.2.8, and will not work with 2.2.7. It's installed in the normal way (VB/admin/products and plugins/upload plugins). Will appreciate reports. If ok, it will be included with the final release of 2.2.8 next month. |
Quote:
|
All times are GMT. The time now is 02:04 PM. |
Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
![]() |
|
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|