I have an error when I launch my eclipse-rcp application:
!ENTRY org.eclipse.ui 4 4 2012-02-24 17:00:14.011
!MESSAGE Invalid preference page path: Security
What is it?
My application has p2.
I see that this error is correlated with the extension: org.eclipse.ui.preferencePages
The extension in my plugin.xml doesn't have either name and ID and has three pages that are also my classes.
What can I do to solve this problem?
Thank you for your answers.
Have a look at WorkbenchPreferenceManager.addExtension(...): When you define the hierarchy of your preference pages, you must specify the parent preference page via the ID of the parent. My guess is that you have use the name of the parent page instead.
Try adding the missing dependencies, org.eclipse.wst.validation.ui, org.eclipse.wst.validation & org.eclipse.wst.common.frameworks.ui
Related
I have Two osgi bundles Bundle A and Bundle B. Bundle B is a fragment bundle of bundle A. When both components are in the osgi environment, Bundle A is in ACTIVE state but Bundle B is in RESOLVED state and it is not getting activated. Bundle B gets activated if I remove the <Fragment-Host> header.
Is there any specific way I have to define the fragment bundle? (other than adding the <Fragment-Host>? maybe add any annotations, etc)? . If there any sample resource I could use, please let me know
I'm using org.eclipse.osgi_3.11.0.v20160603-1336. Sample bundle can be found in https://github.com/chamilaadhi/sample-bundles
Thanks
Seems like the fragment bundles do not get to ACTIVE state[1][2]. Also found similar discussion related to this in Component inside a fragment never activated
[1] https://osgi.org/specification/osgi.core/7.0.0/framework.module.html#framework.module.fragmentbundles
[2]https://dzone.com/articles/osgi-fragment-bundles-dont
I'm having trouble oppening an project developed in VB6. Some controls attached with MSComctLib class are not loading.
I'm using Windows 7.
In the error analysis the following message appears (without the number of lines):
Class MSComctlLib.ImageList of control ImageList1 was not a loaded control class.
Class MSComctlLib.Toolbar of control Toolbar1 was not a loaded control class.
MSComctlLib.StatusBar class of control sbStatusBar was not a loaded control class.
and then a lot of invalid property names,
Ex:
The property name _ExtentX in ImageList1 is invalid
The property name Buttons in Toolbar1 is invalid
...
According to the guidance of microsoft support site http://support.microsoft.com/kb/896559, an update would be the solution http://www.microsoft.com/en-us/download/details.aspx?id=10019
I tried running the executable VisualBasic6-KB896559-v1-ENU
but I still have the same error when opening the project.
Could someone tell me how to solve it?
Thanks in advance!
If you don't have the common controls selected in your project, but the controls are on a form, then you'll receive these errors when you try to load the project (or add a pre-existing form to a project that doesn't have the component selected).
On the VB6 menu, select Project-Components. Scroll down to Microsoft Windows Common Controls 6.0 (if you have a service pack installed, then the SP level will usually be at the end of the library name). Select that component, click Ok. Save the project, and then reload the project.
If this is the source of your issue, you should now be able to load those forms that have a reference into the common controls.
I've installed the lfeditor extension, the backend module is registered as per below (ext_tables.php):
TYPO3\CMS\Extbase\Utility\ExtensionUtility::registerModule(
'SGalinski.lfeditor',
'user',
...
In other words, the backend module is registered as a submodule of the user main module.
I can't seem to be able to find the backend module though. Changing the second parameter to 'web' results in the link showing up under Web, but of course I don't want to change the original code.
How do I activate the user main module?
User menu was moved to the top bar, so modules added to it will be availble there ;) Right, this one should be probably be placed in other menu (System?), but I think that's an author's concept.
Try to activate one of the "User" extension, for example "User>User Settings". If you activate it, menu "USER TOOLS" should be visible.
I am using Typo3 neos version 1.0.2 Beta
When copy content element and paste it in other content area
It will not page and instead it shows error and the content element with name unstructured is created in node tree.
ExtDirect error: Uncaught exception #1301610453 (ref 20140430165908d46739) - Could not resolve a route and its corresponding URI for the given parameters. This may be due to referring to a not existing package / controller / action while building a link or URI. Refer to log and check the backtrace for more details.
PLease let me know the issue.
Thanks in advance.
There were known issues with copy/paste functionality in Neos 1.0.x.
Please use Neos 1.1 (currently 1.1.0-beta2) where this issue seems to be fixed.
In other words, I have different bundles for each of my fb apps and want to load app_id and app secret depending on the bundle being used.
I am also using FOSFacebook Bundle
My config.yml:
parameters:
# facebook
my_app_id: test
my_app_secret: test
fos_facebook:
file: %kernel.root_dir%/../vendor/facebook/src/base_facebook.php
alias: facebook
app_id: %my_app_id%
secret: %my_app_secret%
cookie: true
Trying to do:
$this->container->setParameter("my_app_id", "99999999999");
gives me the "Impossible to call set() on a frozen ParameterBag." error.
And this: http://groups.google.com/group/symfony2/browse_thread/thread/6f09df702f656874
says that I have to explicitly getParameter first for it to work or use yet another bundle.
So question is, what is the relatively simple and less time consuming way to do this?
I think parameters are frozen once the dependency injection container has been built. This means you cannot change parameters in a controller directly.
What you could possibly do is to create a bundle extension that will set the parameter. In the bundle extension, parameters can be set an changed. Check this cookbook section to learn how to create bundle extension.
Also, you may take a look at this cookbook recipe that shows how to set parameters from external source.
Good luck with your use case.
Regards,
Matt