How to rename Leads tab to something else in bitrix24 in free version - tags

I am using bitrix24 free version for managing CRM tasks. But we use Enquiry instead of Leads. Is there any possibility to rename "Leads" tab in bitrix24.

You can't rename tab in cloud version of Bitrix24.

Related

restore published agent version back to dialogflow

My production agent/action version differs from my draft version in dialogflow. I want to restore my published production version back to dialogflow - I didn't export the zip at the time. Is there a way to get the production version back to current version in dialogflow?
thanks
Fiona
Not sure if you have tackled this but you can probably try this (i haven't personally tried it myself). Go to the gear icon in dialogflow. Under general, turn on enable beta features and api. You will now see an environment tab on top. Click that and there is a link to view all versions. Then for the production version, there is 3 vertical dots link beside it.. click it and select Load to draft.
Hope that helps!

How to keep Folder/Files of extension in the uninstall process

I want to keep the all the file structure of extension when we uninstall any extension from the site.
In the uninstall process I want to remove DB tables only and want to keep all Files/Folders.
Can you please guide me if there is any solution.
Thanks
The manifest file for the extension includes a list of the relevant files that are installed for the extension. These can be copied from the website and zipped to recreate the install file for the extension.
Some extensions may also create associated data which you can back up by exporting relevant database tables and/or files (e.g. in the media or images folders).
A normal uninstall process (via Joomla! manage form) removes everything unless the extension has bug in its uninstall schedule. So, if you need to keep the files, uninstalling the extension won't be a good idea. I suggest you drop tables via phpMyAdmin instead.
To do that, go to your web hosting control panel (cPanel, DirectAdmin etc.) and look for the link to phpMyAdmin. Then select the database that contains your website data (if you got multiple databases and are not sure which one is the right one, you can check it via Joomla! admin > Global Configuration). When you found the database in phpMyAdmin, click on its name to go to its tables. Then select the table(s) of that specific extension by checking the checkbox(es) beside them. Then at the bottom of the all tables click "Drop". In the popup window click "OK" and the table(s) will be removed without effecting your folders/files.
I suggest you get a backup of your whole website first, if you're new to phpMyAdmin.
Be careful!

Install App in Office 365 online

I'm trying to install an App from the Office Store in Office 365 Home Premium, specifically the online version accessed via OneDrive. Example of such an App would be Modern Trend for Excel. The documentation says click Insert > My Apps, but I don't find this menu option in the online Excel.
Can Apps be installed in the online version of Office? If so, how?
I doubt your question is suitable for SO as it seems you're asking about how to install an already made application as opposed to developing said applications.
In the event I'm incorrect...
Apparently not; that doesn't surprise me though. Also, notice the link you provided doesn't specify that it pertains to any of the online versions of mentioned programs.
I opened my account, created a blank worksheet, and tried to add an app. First thing to notice is that the ribbon is limited online. It doesn't even have the "Apps" section as shown in the link. So I proceeded to "open in Excel", which will open the file on your local machine. Yahtzee, I'm able to add the app.
Perhaps you should try adding the app at "home" and after opening the file online and see if the app is functional. Problem would be solved.
It looks like Microsoft currently has this feature on their development roadmap:
http://office.microsoft.com/en-us/products/office-365-roadmap-FX104343353.aspx

DreamWeaver CS4: Which Version Control System (VCS) does it use?

In DreamWeaver CS4 When I go to Site -> New Site... and go through
the various screens I get to a screen named
Site Definition -> Sharing Files
which asks me:
Do you want to enable checking in and checking out files,
to ensure that you and your co-workers cannot edit the
same file at the same time?
If I opt for Yes, it asks me for my name and email address,
AND NOTHING ELSE it seems.
What I would like to know is, what Version Control System (VCS)
is employed to implement the options on this screen? Is it DW's
propriety VCS system, or some other. I know CS4 supports Perforce,
but have no idea if this screen was to configure Perforce options
then why is this not mentioned? Which other VCS systems does DW CS4
support besides P4 (CVS, SVN, GIT, Mercurial (Hg), etc..)?
Thanks for sharing your knowledge,
John Goche
For the screen that you're talking about, the basic checkin/checkout functionality is not a version control system, it is an attempt to prevent multiple people from editing the same file at the same time. It merely adds a .lck file to the server for the file you checked out. If someone else with Dreamweaver tries to open the file (assuming they also have checkin/checkout turned on) they won't be able to edit the file (well, they can edit anyway and override the lock if they want to). The name and email address are only used to present that info to others editing the site, they can see who has a what file checked out. I think that you can also search through the site to see all files checked out by a specific person (Files panel option menu {top right of the panel) -> Site -> Show Checked out by.
See page 88 of this PDF for info on checkin/checkout, and page 91 for Subversion info: http://help.adobe.com/archive/en_US/dreamweaver/cs4/dreamweaver_cs4_help.pdf
And additional help for SVN and Dreamweaver here:
http://helpx.adobe.com/dreamweaver/kb/subversion-resources-dreamweaver-cs4-cs5.html
Edit: There is also an extension for using GIT: https://github.com/ChrisMcKee/gitweaver
You can of course use any version control you want on a site, if you use an external version control client. I've done this for years, and it works quite well, as you don't have to rely on an individual editing application to support version control.
Perforce is supported via the P4GT plugin: http://www.perforce.com/product/components/perforce_plugin_graphical_tools

Is it possible to change the merge engine in TFS 2008?

Where I'm working now we use TFS2008, and people are generally unhappy with the auto-merging capabilities.
I was wondering, is it possible to change the merge engine? I know you can change the merge tool used by VS, but I'm not clear if this gets used when you do a local automatic merge, or what the deal is for merging branches.
(Before you say anything, I realise doing it manually is safer!)
Yes, upgrade to 2010 and you'll be MUCH happier. Significantly.
(I know it's not quite the answer you were looking for, but it's easy and it's true)
I never used it myself, but in a quest to be able to merge binary files, I encountered posts like http://www.neovolve.com/post/2007/06/19/using-winmerge-with-tfs.aspx
Visual Studio will use the configured tool to perform merging. Here's an useful post.
In visual studio 2008 you can do the following:
1) Tools->Options
2) Source Control->Visual Studio Team Foundation Server
3) Click the "Configure User Tools..." button
4) in pop-up click "Add"
5) in pop-up select the extensions you want to use your other merge engine with and select "Merge" in the Operation drop-down
You will need to know what your engine is expecting as passed in parameters but I would think the default of file 1 file 2 would fit most of them.