![]() |
Quote:
|
Andrew, do you need further spanish translation?
Please let me know to help you with it. :) |
Quote:
Now - general question: can I install this product 2 times? One for the normal template and one for the updates template? Please forgive me, I haven;t completely explored the templating system inside this plugin yet. I'm using for a business directory. thanks! |
Quote:
|
Quote:
|
Uploaded into first post in this thread. Tests appreciated. Thanks.
|
OK, time to start testing, thanks Andrew :)
|
I read a bit but couldn't find anything definitive. Has anything been added to allow images from certain categories to be displayed on forumhome or a vbcmps?
|
Quote:
The same code is used to build both the cmps ldm_new and ldm_hot modules, as well as the patch-forumhome-newlinks extra. This code sets up a variable $linkimgshow which can be used to display the thumbnail. By default, this variable is not displayed - all you need to do is edit the links_vbalinks template and refer to $linkimgshow. |
Hello... I am LOVING LDM... I went through about 6 different downloader/gallery systems before I found LDM and it is by far the best one yet... To see how I am using LDM... http://www.crookedjester.com/local_links.php... If you are unsure on whether or not you want to try LDM out, I recommend you check out how I use them on my website. I found that the images on the Eirma website really dont reflect the diversity of this mod.
However, I ran into one problem... http://www.crookedjester.com/local_links.php?catid=61 If you download any of my videos, the hit counters dont go up! Why not? The hit counters go up for the images within LDM, but they dont go up for the videos within LDM. Ordinarily, the hits dont matter... but because the hits aren't getting picked up, the downloads aren't being recorded... in which case, if I put a download limit on a certain level of users, say 200mb in a 24 hour period, it doesnt come into effect since technically, according to the system, the user hasn't downloaded anything. |
As well... the bottom of my statistics page says:
upload_max_filesize>=post_max_size What does this mean? And how do I fix it? |
Quote:
|
Quote:
|
I installed 2.2.2 on a 3.5.4 board, and I am very happy with it.:D
- installation give no problems at all - documentation is excellent - Functionality (as far as I have tried it yet - only links) is great. One strange thing is: I installed the Dutch language xml into my second language (Dutch). After installation I wanted to also get the English xml into my first language (Am English). It says there is something not right with the English language file. Perhaps I should have started with installing in English, and then import Dutch into the second language? I will try out some more possibilities with the English xml later, and see whether I can get both languages at the right place in the end. |
Hello -
great add-on! The only question I have is how do I get the jukebox to work in Firefox? It works in IE. Am I doing something wrong? thanks |
Quote:
|
Quote:
|
Thanks Andrew -
That might be the problem... But you know what would be a great add-on to this? If somehow you have a small flash player play the selected file. OR You could upload image files and music files into different directories so Wimpy player could play the files in the music directory. I know, easier said than done, but.... Thanks again fo a great add-on edit: Yup, Itunes seems to have taken the mp3 extension. Thanks |
okay i uploaded the files and tried to install the product...says i have to uninstall the previous version because the files don't match. so if i do that will i lose everything??? i am running 3.6.0 final
oh yes i tried the release client not the beta for ldm plus i have this at the top of every my pages ($vb_version == "3.5") { define('VALID_VB_VERSION', "3.5"); } elseif ($vb_version == "3.6") { define('VALID_VB_VERSION', "3.6"); } } ?> |
Quote:
But it is always a good idea to back up your database before making changes like this. |
($vb_version == "3.5") { define('VALID_VB_VERSION', "3.5"); } elseif ($vb_version == "3.6") { define('VALID_VB_VERSION', "3.6"); } } ?> ?>override']."', '".$catrow['catid']."' ) "); } $asb = $db->query_write(" ALTER TABLE ".THIS_TABLE."linkscat DROP catinstructions "); } unset($adminrow); } } // Kill unwanted templates from previous versions function delete_links_oldtemplates() { global $db; $asb = $db->query_write(" DELETE FROM ".TABLE_PREFIX."template WHERE title LIKE 'links_%' AND styleid>0 "); } // record new version function record_links_version($version, $installed) { global $db; $asb = $db->query_read("SHOW TABLES"); $hack_table_prefix = THIS_TABLE."links"; $hack_tables = array(); while ($myrow = $db->fetch_array($asb)) { foreach ($myrow AS $table) { if (preg_match ("/^$hack_table_prefix/", $table)) { $hack_tables[] = $table; } } } if (count($hack_tables) == 0) return (0); // something badly wrong unset ($hack_tables); $db->query_write(" UPDATE ".THIS_TABLE."linksadmin SET setting='".$version."' WHERE settingname='this_version' "); $db->query_write(" UPDATE ".THIS_TABLE."linksadmin SET setting='".$installed."' WHERE settingname='version_installed' "); return(1); } // Remove tables completely function delete_links_dbtables() { global $vbulletin; $queries = array( THIS_TABLE."linksadmin", THIS_TABLE."linksdebug", THIS_TABLE."linksdownloads", THIS_TABLE."linkscat", THIS_TABLE."linksfavs", THIS_TABLE."linkskeys", THIS_TABLE."linkslink", THIS_TABLE."linksltoc", THIS_TABLE."linksltok", THIS_TABLE."linksrate", THIS_TABLE."linkssearch" ); foreach ($queries as $query) { $asb = $vbulletin->db->query_write("DROP TABLE IF EXISTS ".$query); } // Clean up the profile fields $texts = array(); $texts[0] = $vbphrase['ldm_recent_hits']; if (!$texts[0]) $texts[0] = "My Recent LDM Hits"; $texts[1] = $vbphrase['ldm_recent_entries']; if (!$texts[1]) $texts[1] = "My Recent LDM Entries"; $profile = array(); // Take care - VB version specific if (VALID_VB_VERSION=="3.5") { $asb = $vbulletin->db->query_read(" SELECT profilefieldid, title FROM ".TABLE_PREFIX."profilefield "); while ($myrow = $vbulletin->db->fetch_array($asb)) { $profile[$myrow['profilefieldid']] = $myrow['title']; } } else { $asb = $vbulletin->db->query_read(" SELECT * FROM ".TABLE_PREFIX."phrase WHERE fieldname = 'cprofilefield' AND varname LIKE 'field%_title' AND text IN ('".implode("', '", $texts)."') "); while ($myrow = $vbulletin->db->fetch_array($asb)) { $profilefieldid = preg_replace("/field(\d*)_title/", "$1", $myrow['varname']); $profile[$profilefieldid] = $myrow['text']; } $asb = $vbulletin->db->query_read(" DELETE FROM ".TABLE_PREFIX."phrase WHERE fieldname = 'cprofilefield' AND varname LIKE 'field%' AND text IN ('".implode("', '", $texts)."') "); } // Take care - VB version specific foreach ($texts as $txt) { foreach ($profile as $kprofile=>$thisprofile) { if ($thisprofile==$txt) { $vbulletin->db->query_write(" ALTER TABLE ".TABLE_PREFIX."userfield DROP field".$kprofile ); $vbulletin->db->query_write(" DELETE FROM ".TABLE_PREFIX."profilefield WHERE profilefieldid='".$kprofile."' "); break; } } } $vbulletin->db->query_write("OPTIMIZE TABLE " . TABLE_PREFIX . "userfield"); } ?>.$kprofile."' "); break; } } } $vbulletin->db->query_write("OPTIMIZE TABLE " . TABLE_PREFIX . "userfield"); } ?>
-------------------------------------------------------------------------------- Links and Downloads Manager LDM code files do not match product installer version Product installer: 2.2.5 Code files: 2.2.2 Please *uninstall* LDM, upload correct files and reinstall tried three times now ;) oops wait.....think i didn't overwrite them 3 times....let me check... |
Quote:
|
okay i restarted my ftp and uploaded now it still is doing something odd....sending you info....
|
Quote:
|
try again i will fix it right now
|
Quote:
- I can see there's a problem on your site. I've no idea what it is. I've tried uninstalling and reinstalling LDM, but I've no idea if that process is running properly, because you've patched the VB product installation process. - So I backed up your LDM database and installed it on my test machine. Everything works fine with the same version of LDM (2.2.5 rc) and VB 3.6.0. Either you've not uploaded the code correctly or there's something messed up inside your VB admin system. |
you mean i upgraded??? lol that's the only patching i did...
i will reupload the admincp folder for vb and i will reupload ldm and try .... let you know later... thanks for looking! |
okay i reran the upgrade to 3.6.0
i reran the ldm product can you cnd see if it's okay now??? please?? |
Quote:
|
Hmm... what's the best way to upgrade from 2.2.1 to 2.2.5?
Make xml backup, copy files into forums... then import new product with overwrite and that's it? o_รณ |
Quote:
Upload files Import/overwrite. |
Oh, ok... let's try. ^^
|
installed and messing around with it.. looks like a great system so far. thank you!
|
I run VB 2.5.4 and just upgraded LDM to version 2.2.5RC from 2.2.1
My forum using Vietnamese language and "HTML Character Set" set to ISO-8859-1. When creating categories in LDM I can type Vietnamese and the Category name and descritption appear well in Vietnamese in the forum view like bellow: https://vborg.vbsupport.ru/external/2006/08/19.jpg But Vietnamese doesn't show in various place: - In the Control Panel: https://vborg.vbsupport.ru/external/2006/08/20.jpg https://vborg.vbsupport.ru/external/2006/08/21.jpg and here in the forum view also: https://vborg.vbsupport.ru/external/2006/08/22.jpg Could you help show me ho to fix the issue! Thank you very much in advance! |
Quote:
Difficult! Please can you make a backup of the LDM database tables (use the VB admin/maintenance - they start with the name local_links) and email this t me at ad_rodin at noos.fr thanks |
Quote:
|
just installed and working fine so far. I like how the links are presented, and there seems to be alot of functionality, statistics etc.
I dont like much the presentation of the editing pages, and some weird fields like "Review frequency" and other strange options, which my members will sure scratch their heads. Seems a little user unfriendly, but other then that its good. 40 pages of phrases to translate makes me sad too :/ this seems the best links manager I seen on these forums yet |
Quote:
What language are you translating into? |
oh Ill do that, thanks for the reply
portuguese, if I ever finish it Ill send you the translation |
How can i upload an movie or something, keep getting an error that it's not an acceptable file format when it is.....
|
All times are GMT. The time now is 09:47 AM. |
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:
|