Magento 2.4.5 "Page builder was rendering for 5 seconds without releasing locks" - magento2

When I try to save a product in the Magento admin panel, the page stays on the saving screen. In the Javascript console, I see an error with "Page builder was rendering for 5 seconds without releasing locks". This seems to only occur when multiple instances of the pagebuilder are loaded on a single page. I've tried saving on other pages with just one pagebuilder instance, and saving works correctly. Any advice? This is on 2.4.5 Enterprise Edition.

Related

IBM Worklight 6.0.0.1 - Rich Page Editor blocks

Problem - As the project was growing from some point on I cannot use anymore Worklight's Rich Page Editor. It looks as on the picture.
Configuration:
Eclipse Juno EE
Worklight 6.0.0.1
Project details - All pages are packed in the same HTML file. At the moment HTML file contains 6-7 pages in about 1100 lines. Compiling and all the rest works.
There should be no problems at all with that page size or number of views, so the appearance is likely tied to recent changes in the application logic itself. In your screenshot the editor has already finished loading the page into the embedded browser (otherwise you would still see a "Loading..." message in the editor's toolbar). The circular icon in the middle does not come from the editor itself but from something in that page or an associated script. In fact it looks a bit like a jQuery Mobile loading indicator to me.
One thing that may be happening here is something in the application's startup code has been added to call out to server-side logic (ex. a Worklight adapter call). Within the editor, the full preview server is not available so generally only the browser-side resources of an application will be functional. This allows you to use the editor for UI design work and then once you start hooking up to server-side features, previewing of the app would typically switch over to the Mobile Browser Simulator (Run As->Preview) or even native browser testing.
The best recommendation is to look for something in your app initialization process that's expecting data back and put in some temporary development-time mockups for such data. As an example, instead of making a service call to retrieve some JSON data just point to a test .json file in your project instead.
Could be related to this: Worklight Studio Rich Page Editor fails of WL.* call in page load
The short answer is that if you put just about any WL.* calls (even WL.Logger.*) in a page loading handler, it causes the Rich Page Editor to lock up.
If the problem is that you are calling backend resources that aren't available, then the normal timeouts and error handling in your code should keep the editor from locking up. You do have timeouts and error handling in your code, right? ;-)
If this problem can't be debugged easily, weinre (http://people.apache.org/~pmuellr/weinre/docs/latest/) works in the Rich Page Editor. You can see what is in the JavaScript console and if there are any exceptions thrown when it locks up.

Crystal Reports 2011 viewer scrolling issue

Background:
Crystal reports 2008 prior. Now upgraded to crystal reports 2011
We have crystal reports version 14.0.2.364 installed to delivery reports to clients.
This problem appeared after the upgrade where someone gets a report delivered and the browser\crystal report viewer attempts to "auto-scroll" to a page automatically for you. Then some kind of issue causes it to scroll back to the previous page.
It continues to do this in a infinte loop where the browser\viewer never holds still long enough to do anything with the report.
Does anyone know how this has happened? (Again we have service pack 1 and 2 for the crystal reports 2011 package but I can find NOTHING on this problem anywhere).
Anyone else familiar with this problem or have seen this issue? (Happens in IE and Chrome btw)
UPDATE: It appears this problem is related purely to view size. If the view is set to 100 percent and with that view you can see the 2nd page, it starts to auto process the next page to display. So I tried a report that worked, and changed to view to 75% and the problem started up because that brought the 2nd page into view on the browser. This cannot possibly be how this is going to have to work (purely based on whether or not the second page is viewable based on local settings determines whether or not the browser\viewer goes into an infinite loop back and forth)
FINAL UPDATE (Resolution) : A setting in a web.xml file in the reporting services folder that instructs crystal report viewer to pre-render ALL pages of a report before viewing was the solution. Before this it was rendering ONLY the page the user was trying to view, hence if you have 2 pages in view it would infinitely loop in an attempt to display both pages. This setting was unfortunately buried in folders that are related to websphere which powers the application that runs our reports. It was called crystal_use_asynchronous_requests and we had to set it to true. Restarted websphere, and this resolved the issue
FINAL UPDATE (Resolution) : A setting in a web.xml file in the reporting services folder that instructs crystal report viewer to pre-render ALL pages of a report before viewing was the solution. Before this it was rendering ONLY the page the user was trying to view, hence if you have 2 pages in view it would infinitely loop in an attempt to display both pages. This setting was unfortunately buried in folders that are related to websphere which powers the application that runs our reports. It was called crystal_use_asynchronous_requests and we had to set it to true. Restarted websphere, and this resolved the issue

Magento extension

I have created magento module as per the
Custom Module with Custom Database Table
I have replace with proper variable, but I am not able to see, on able to create.
And I am using 1.7 community edition.
but on the admin panel two blocks are displayed.
how to display only single block
and also have problem that after saving and refreshing page title get change automatically
How to we debug if any error occur in processing request
try to install module with module creator its very simple and easy,,,

Repeater User Control and Viewstate

I maintain an ASP.NET Web Forms application on framework 3.5. Essentially it is a list of items and a checkbox to signify the state of the item. The users can sort the items by any of a number of columns. New items are added and removed between postbacks. This list is hosted in a Repeater and the item template is a usercontrol. The page has no master page as it is an application that was upgraded from framework 1.0 to 1.1 to 2.0 to 3.5. The application does this if it is hosted by IIS6.1 and 7.5, 32 bit and 64 bit. It is in it's own application pool and the pool has 4 threads.
Now the problem: If a checkbox is checked in the thrid row and the item in position 1 is removed in the database, then it should move up to position 2. It does move up, but the checked check box stays in position 3. If the rows are sorted, then all the checked checkboxes stay in their position, but the rest of the information is sorted and displayed correctly, including the title on the parent tag.
Viewstate is disabled on the user control, and on the checkbox within the user control. Caching of the page is disabled in a page directive. The repeater is bound in page load.
I've checked the state of the controls in the repeater that should be checked right after repeater.DataBind and the state of the check boxes is correct. This is the last line in the page load event. Using fiddler I have verified that the rendered HTML is not correct. So it seems that the problem is somewhere in the render.
This is as far as I've been able to take this. The application is mission critical, yet this bug has existed for a very long time. Obviously the state of this checkbox wasn't that important, but due to evolving business requirements it is becoming an issue.
No searches come up with any bugs. I can post the code, but it is extremely long since it is part of a large applicaon, so I have not.
It appears that viewstate is being loaded between Page_Load and LoadComplete. Checking the values after databinding and LoadComplete shows this. What would cause viewstate to load at the wrong time like this. Feels like a bug. It only affects one page in the applicaon. I know that viewstate is populated after init and that all controls should be loaded during OnInit, but I don't want viewstate so it is ok that this doesn't function.
It has nothing to do with the type of control. I just exchanged the asp:checkbox for a htmlinputcheckbox and the behavior persisted.
EDIT: Would control state have anything to do with this? It can't be disabled so far as I know.
After removing the asp:checkbox for an HtmlInputCheckBox and suffering the same problem. I determined that the probelm is with the check box in particular and exchanged it for an asp:ImageButton with fake check box image.
I believe, though I do not know for sure, that the check box state is a part of conrol state and not view state. Seems like a Microsoft Bug to me, but perhaps that is the way this control was designed.

while using Tiny mce pages take for ever to load

I have a few forms that use tiny mce. I have noticed recently that the page takes for ever to load (over 2 minutes), as soon as I comment out the text area that uses tiny mce the page loads just fine (under 5 seconds). I have no clue what is going on since it was working just fine in my local machine until last week. I'm using apache2, php 5, mysql and xajax.
I have been using xdebug to find out what is wrong and all the code finishes running in the server side, but the browser keeps waiting for the page to finish loading, making the navigation and the form impossible to use.
Any leads on what could be going on will be of great help.
Have you taken a look at Firebug on the Net tab to see wether some file is being loaded too long?