Quote:
Originally Posted by Majed37
1- My language is Arabic, and i didn't find a complete translation for it. And I can do the translation proccess easly but I don't know how !!
|
Look in the zip file that you downloaded in the directory development/phrases. You will find a file phrases-ar.xml. This has the start of the Arabic translation. Basically you have to edit everything in the CDATA tags, for example:
Code:
<phrase name="ldm_homepage"><![CDATA[Home Page]]></phrase>
Here you replace "Home Page" by whatever it should be.
When you have finished, you can import the phrases into your own boad using the VBulletin admin languages section. Please post the file here, and I will include it in the main release in future.
Quote:
Originally Posted by Majed37
2- Can I choose to upload files to another place ( not my forums folder) ? I meant the files/entries which users will upload.
|
Yes. Go to the LDM admin/settings page. You will find a series of settings for file uploads. One of these, uploads_dir, tells LDM the base directory for storing the uploads.
There are two other settings, local_file_root and local_file_root_prefix, that you can to control more precisely where on your server this directory is placed. This is explained in the on-line user manual. Be careful with these settings unless you understand what you are doing.
Quote:
Originally Posted by Majed37
3- Can I show the real link for uploaded files to the user who uploaded it. so he/ she can use this link in his posts in the forums. if so , how ?
|
The real link to display the entry is always of the form
local_links.php?linkid=NN&catid=MM and the real link to access that link id always
local_links.php?action=jump&id=NN&catid=MM (sorry about the inconsistency), with local_links.php in your forum directory.
At the time the linkbit is being built inside LDM (i.e. when the display pages are being constructed, NN and MM are held in two variables called $linkid and $catid. So you could modify the linkbit template to display this informatioin if you wish.