How to import language pack in vtigercrm71? - vtiger

I had installed new vtigercrm71. I've new language pack as chi_ch.zip but don't know how to import it in CRM. Can anyone please help me?

You just have to simply install it from Module Manager.
If you are new in Vtiger, Follow the steps to go to Module Manager.
Click on Gear Icon (Top Right Corner) > CRM Setting > Studio (Left Navigation) > Module Manager > Click Install From Zip Button > Select your language pack zip file and Install.
Note : Make sure you have valid format of zip file otherwise it will not work.

Related

django:ModuleNotFoundError: No module named 'pure_pagination'

I used "pip install django-pure-pagination", and regiter "pure_pagination" into seetings.py.
By use "help('pure_pagination')", I can find the module.
But when I debug it on the PycharmIDE. It showes "ModuleNotFoundError: No module named 'pure_pagination' ".
enter image description here
enter image description here
I think you need to configure your pycharm to for your virtual environment.
Copy pasted from Pycharm documentation:
In the Project Interpreter page, click and select Add.
In the left-hand pane of the Add Python Interpreter dialog box, select Virtualenv Environment. The following actions depend on whether
the virtual environment existed before.
If Existing environment is selected:
Specify the required interpreter: use the drop-down list, or click Select an interpreter and find one in your file system.
Select the check-box Make available to all projects, if needed.
Click OK to complete the task.

Error Wamp when launch : The procedure entry point zend_unmangle_property_name_ex could not be located in te dynamic link library

I have a problem when i launch WampServer, the error : The procedure entry point zend_unmangle_property_name_ex could not be located in the dynamic link library C:\wamp\bin\php\php5.3.5\ext\php_soap.dll
Wamp can run after this warning, but i need php_soap.dll to install the plug-in WebService.
In the php.ini, php_soap.dll are uncommented and it is in the extension_dir = "c:/wamp/bin/php/php5.3.5/ext/" like indicated in the php.ini
There are 2 php.ini files
Us the wampmanager icon like this to edit the correct php.ini file
left click wampmanager -> PHP -> PHP Extensions -> php_soap
If the menu item php_soap is not ticked, then click it and it will enable php_soap and restart Apache to pick upi the change

How to Enable "joomla extension and apply to modules"

I installed this extension : http://extensions.joomla.org/extensions/news-display/articles-display/news-tickers-a-scrollers/6677
I installed this extension using : Extension Manager > Upload package file. It's installed successfully.
In Plug-in manager, I enabled It.
Than In Module manager, I created "Moving text" module and in "Custom output" , I entered the code :
{text =scrollig text }
But it's not working here you can visit this link and see in footer http://naadiastrology.info/
Why it's not working or how to use this extension.
please help me to find solution.
Add this tag in html mode of your joomla editor like:
It works for me.
Then,if yet the text is not moving, you have to check the properties of your text editor plugin so as to accept this kind of tags
{...}. It seems that editor filters that tag and plugin cannot render the result!

Color shemes in webstorm 7 - how to install?

How to install color scheme in webstorm 7 on windows?
There are no any folder named webide10 in my user's folder.
Theme that I want to install is here https://github.com/negativefix/zenburn
Select «File» → «Import Setting» from the main menu and follow the instructions.
After the IDE restarted go to the Preferences, expand «Editor» → «Colors and fonts» tab and choose the installed theme.
For WEbStorm7 the Zenburn.xml has to be placed into ~.WebStorm7\config\colors\ folder (where ~ is your home folder, like 'C:\Users\my.name\.WebStorm7\config\colors\Zenburn.xml'

Eclipse spelling engine does not exist

I'm using Eclipse 3.4 (Ganymede) with CDT 5 on Windows.
When the integrated spell checker doesn't know some word, it proposes (among others) the option to add the word to a user dictionary.
If the user dictionary doesn't exist yet, the spell checker offers then to help configuring it and shows the "General/Editors/Text Editors/Spelling" preference pane. This preference pane however states that "The selected spelling engine does not exist", but has no control to add or install an engine.
How can I put a spelling engine in existence?
Update: What solved my problem was to install also the JDT. This solution was brought up on 2008-09-07 and was accepted, but is now missing.
The CDT version of Ganymede apparently shipped improperly configured. After playing around for a while, I have come up with the following steps that fix the problem.
Export your Eclipse preferences (File > Export > General > Preferences).
Open the exported file in a text editor.
Find the line that says
/instance/org.eclipse.ui.editors/spellingEngine=org.eclipse.jdt.internal.ui.text.spelling.DefaultSpellingEngine
Change it to
/instance/org.eclipse.ui.editors/spellingEngine=org.eclipse.cdt.internal.ui.text.spelling.CSpellingEngine
Save the preferences file.
Import the preferences back into Eclipse (File > Import > General > Preferences).
You should now be able to access the Spelling configuration page as seen above.
Note: if you want to add a custom dictionary, Eclipse must be able to access and open the file (i.e. it must exist - an empty file will work)
Are you using the C/C++ Development Tools exclusively?The Spellcheck functionality is dependent upon the Java Development Tools being installed also.The spelling engine is scheduled to be pushed down from JDT to the Platform,so you can get rid of the Java related bloat soon enough. :)
Just a word of warning: If you follow the advice to replace the preference as above, it will affect spell checking if you also use Java. I think all I needed to do was change the "Select spelling engine to use" to the C++ engine (near the top of the preference setting on the preference page General->Editors->Text Editors->Spelling).