Webcenter Sites - JSK Installation - wcs

I am trying to install JSK 11.1.1.8 on mac x yosemite with Java 1.8.
After installation; while trying to run jsk, i am getting the following error,
Error: Could not find or load main class
oracle.fatwire.sites.jsk.Execute
I tried the solution provided in the blog, still not working..
Any help would be greatly appreciated..

I never install JSK on Mac but installed several times on Windows. That error seems that you donĀ“t have the jar that contains that class.
Verify what is the name of the jar and if you have it on App_Server\apache-tomcat-7.0.42\Sites\webapps\cs\WEB-INF\lib

Related

"NLS missing message" Error for Eclipse while installing it

I downloaded the latest eclipse setup and tried to install it in my PC, but I get this error
NLS missing message: ECLIPSE_STARTUP_ERROR_CHECK_LOG in: org.eclipse.osgi.internal.messages.ExternalMessages
But when I used the same setup file in another PC, it got installed. Here both the PCs are installed with the same version of the Windows 10 and the Hardware is identical.
Now what am I missing here that I am unable to install it.
Before I posted this question I saw a lot of similar question related to the same error with Eclipse. But for those all problems the error occurred after installing the Eclipse while opening the workspace. Hence the solution given to them don't work much for me.
For me I get this error the moment I run the setup.
I faced the same issue. I found that the zip was not correctly extracted. Try to unzip with any uncompressing software like 7zip
Delete the previous eclipse folder. Open eclipse again. It will immediately work.

Installing MATLAB Runtime on CentOS 7

I am trying to install the MATLAB Runtime (see www.mathworks.com/products/compiler/mcr) on Cent0S 7. I think I have installed MCR correctly because the install finishes through saying it completed after running
sudo ./install -mode silent -agreeToLicense yes
However, I am currently getting a error of:
Fatal error loading library /usr/local/MATLAB/MATLAB_Compiler_Runtime/v80/bin/glnxa64/libmwmclmcr.so Error: libXmu.so.6: cannot open shared object file
I have searched around on the forums and found a couple of post that indicate this may be an issue with either 32-bit vs. 64-bit libraries and/or X Windows. Also, I am pretty sure I am setting the following environment LD_LIBRARY_PATH and XAPPLRESDIR set variables correctly.
Has anyone out there successfully installed MATLAB Runtime on CentOS 7? Any help would be appreciated.
Thanks,
Derek
In case anyone else has this issue the following library install fixed the issue for me:
sudo yum install libXmu.x86_64

PHP5 - pgsql Module not loaded

I am trying to get work PostgresSQL with PHP, but i stuck on that apache error:
Call to undefined function pg_connect().
When i run phpinfo() i cannot see that my module is loaded, but i do not know why. The pgsql.ini files were loaded. And when i open them, i can see, that the extension is enabled extension=pgsql.so. Under /usr/lib64/php5/extensions there is the .so file. Even the permission are same like the other modules.
Any idea what am I doing wrong?
It would help if you could describe what operating system you are using. I'm assume Linux, but which distribution? One package that is often forgotten when installing postgresql and php is php5-pgsql. This is the connection between the two. For some reason I cannot explain, it is best if all three are installed together. So I suggest uninstalling postgresql and php and then installing postgresql, php5 and php5-pgsql. I hope this works for you!
I found it out. Some libraries where not found.
1.) First of all run php -version
2.) If there is an error where it described that some libraries are missing, you can solve it like me
3.) Search for the files on your system find / -name {LIBRARY NAME}
3a.) If you found them, just create a symlink to /usr/lib64
3b.) If not, find a way to get them and 3 3a

opening Omnet from ubuntu 11.10

I am new to Omnet++. I installed Omnetpp-3.3p1 and am having trouble opening it. I tried creating a makefile within the project which has simulation codes with command opp_makemake -f -N, but I am getting command opp_makemake not found error. Am I missing something here?
The error might raise if OMNeT++ is not properly installed or the lib is not properly linked. This PDF should be what you are looking for, since it explains how to properly install version 3.3p1. - Hope to help!

Intel Performance Primitive IPP installation

I have installed Intel IPP on my machine, I followed specific steps where you can find it here :
http://software.intel.com/en-us/articles/intel-integrated-performance-primitives-intel-ipp-for-linux-how-to-install-intel-ipp-for-linux/
and linked the library to my IDE which is Eclipse , it compiles perfectly but when I run the code I got this error :
error while loading shared libraries: libippcv.so.7.0: cannot open shared object file: No such file or directory
any idea what might be the problem ?
Thank you
You probably need to add the IPP library path to your ld.so.conf, and then run sudo ldconfig. You can check that the application is properly linked by running the following:
ldd <your_app_name>
Hope that helps!