Error message after update - updates

With every update of ImpressPages 4 I receive the following error message:
Update has failed: rmdir(/pathtomyinstallation/tmp/update/extracted//Ip/lnternal/Vendor/Zend/I18n/Validator/PhoneNumber) [http://ch2.php.net/manual/en/function.rmdir.php'>function.rmdirphp]: Directory not empty in /pathtomyinstallation/Ip/Internal/Update/Helper/FiIeSystem.php:129{‘status':'success'}
Despite this error message the update works.

For some reason the script couldn't delete some file or folder. On Windows machines these is random but common issue. You just restart the update and second time that folder is deleted.

Related

Getting an error Unable to locate appender "jmeter-log" for logger config "root" while running and creating the html dashboard for my jmeter scripts

I am trying to create Jmeter HTML report through CSV with the help of command but getting below error in my CMD. Please help me what i need to change or enhance for getting the reults
2020-07-23 16:47:20,385 main ERROR Null object returned for File in Appenders.
2020-07-23 16:47:20,409 main ERROR Unable to locate appender "jmeter-log" for logger config "root"
An error occurred: Cannot read test results file : XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
errorlevel=1
Press any key to continue . . .
The main problem is Cannot read test results file and it occurs when you point JMeter to not-existing file or the file cannot be read (you don't have permissions to open the file in that location)
The other problem is with JMeter logging configuration, either your log4j2.xml file is broken or again you don't have proper read/write permissions to the folder where JMeter is installed. Try running the terminal with elevated rights and both should go away
I solved this problem by installing the latest version of Jmeter, 5.3. After that, no more logging/summarizer errors.

ScriptApp.getUserTriggers give server error if a manually added installed trigger exists

The call works fine normally, but if there are manually added installable triggers then it fails with this error:
We're sorry, a server error occurred. Please wait a bit and try again. (line 6, file "Code")
I tried on a blank file, in both the paid and free account. See here:
https://www.screencast.com/t/3NUvQema

Sonarqube MySQLIntegrityConstraintViolationException Duplicate Entry

I am getting the following error when running scans on several GitHub repositories. It does not seem to occur on the same repository whenever I run the scan job. I saw the other post that seemed related to this and would have added my question to that thread but was not allowed to comment on it. this error is stopping my Jenkins job from continuing so we are basically stalled with our scan progress.
Error details:
Fail to process request localhost:8081/api/ce/submit?projectKey=KEY:Name&projectName=Name&projectBranch=branch org.apache.ibatis.exceptionsPersistenceException: ###Error updating database. Cause: com.mysql.jdbc.exceptions.jdbc4.MySQLIntegrityConstraintViolationException: Duplciate entry '12-24334'admin' for key 'uniq_group_roles' ### This error may invovle org.sonar.db.user.RoleMapper.insertGroupRole-Inline ### This error occurred while setting parameters ### Cause: com.mysql.jdbc.exceptions.jdbc4.MySQL

Server Object Creation Error

I am unable to run a particular ASP page in my website. It is throwing the below error.
Server object error 'ASP 0177 : 800401f3'
Server.CreateObject Failed
/includes/conferenceRoom/init.asp, line 13
800401f3.
However my page is running well in Prod server but it is throwing error in my dev derver. I am unable to find the root cause for this error.
The line 13 is to create obj for my calender app in ASP:
set objCal= server.CreateObject("bsCal.cDate")
Any one please help me to resolve this error.
Make sure the COM object (i.e. bsCal.cDate) is registered. Find its DLL and register it using regsvr32
Assuming you copied your dll to the folder d:\objects.
In a command prompt type:
regsvr32 d:\objects\YourDll.dll

pentaho integration with mysql-5.X

When I was trying to replace the hsqldb with the mysql-5.X I get the following error with quartz error failed to initialize:-
Pentaho Initialization Exception
The following errors were detected
One or more system listeners failed. These are set in the systemListeners.xml.
PentahoSystem.ERROR_0014 - Error while trying to execute startup sequence for org.pentaho.platform.scheduler.QuartzSystemListener
Please see the server console for more details on each error detected.
Did you run the quartz scripts which setup the quartz db? they are provided in the solution repository.
Otherwise pastebin the full log, it's impossible to tell without more info. suspect somewhere you'll either have a authentication issue, or no mysql driver in your classpath.
For a clear guide on how to do this, follow here:
http://www.prashantraju.com/2010/12/pentaho-3-7-with-mysql-postgresql-oracle-and-sql-server/
I also received the error message
PentahoSystem.ERROR_0014 – Error while trying to execute startup sequence for org.pentaho.platform.scheduler.QuartzSystemListener
when trying to bring up the service. I found this solution after searching a few different threads:
Remove commented out portion of these properties (or copy and paste from here, and modify as necessary) in quartz.properties (located in pentaho-solutions/system/quartz):
org.quartz.dataSource.quartz.driver = com.mysql.jdbc.Driver
org.quartz.dataSource.quartz.URL = jdbc:mysql://localhost:3306/quartz
org.quartz.dataSource.quartz.user = pentaho_user
org.quartz.dataSource.quartz.password = password
org.quartz.dataSource.quartz.maxConnections = 5
org.quartz.dataSource.quartz.validationQuery= select 1
Also comment out the JNDI Url:
#org.quartz.dataSource.myDS.jndiURL = Quartz