cancel
Showing results for 
Search instead for 
Did you mean: 

SmartEdit shows blank screen on UAT server (Linux Box)

former_member570877
Participant
0 Kudos

Hi,

We have installed SmartEdit Addon on linux box but it is not accessible. It shows just blank screen without any error in console logs. We followed the same steps on local windows machine and it is working fine. It is custom B2C storefront built upon yacceleratorstorefront. Please suggest if we need special permissions on linux to run SmartEdit.

Thanks, Vikram

Accepted Solutions (1)

Accepted Solutions (1)

former_member570877
Participant
0 Kudos

Hi,

The workaround is suggested in hybris Jira also.

I am able to get smartEdit up and running on UAT after a tweak in hybris. This is an issue in hybris platform during ant production where some npm dependency removed.

https://answers.sap.com/questions/12762253/issues-with-npmancillary-production-filter.html

I commented out the problematic filter in build server and re-run the build and it worked.

How I got the clue? I just noticed that few css and js files were missing due to which smart edit was failing. Then I noticed that in ant clean all npmancillary has some issue related to this. Then I found the above link and problem solved.

Thanks,
Vikram

Answers (2)

Answers (2)

Former Member
0 Kudos

Hello ,

The following solution worked for me :

For extension npmancillary buildcallbacks.xml commented the following code :

 <patternset id="extension.npmancillary.production.filter">
         <patternset refid="extension.production.filter" />
         <exclude name="resources/npm/**" />
     </patternset>


After that ant clean all and the ant production and deployed the Zip again it worked fine

Former Member
0 Kudos

Hello, I am sorry to answer this just now, just back from holidays. I would ask you to let me know of the smartedit version you are using. Anyways, I strongly suspect a case sensitivity issue in a file path Do you have any error logs in the browser debugger ?

former_member570877
Participant
0 Kudos

Hi,

Thanks for your reply.

I am able to fix the issue. Detailed fix in the comment.

Thanks, Vikram