In Liferay how to share the content from development to test environment? - deployment

getting this warning using export and import, how to resolve this ?
Liferay file size exceeds warning

"no lorger than 100MB"
You have to enlarge upload file limit in the server configuration.

Related

Prestashop 1.7 unable to load template during import

I've got fresh Presta 1.7 installation. I'm importing my data, valid data, but I'm getting an error An exception has been thrown during the rendering of a template ("Unable to load template 'file:layout-ajax.tpl'"). I have never seen anything like this.
Any ideas please?
full error image
Please delete cache manually by deleting all folder (dev and prod) in var/cache folder.

Eclipse save error when trying to open the design view of a synapse config file in WS02 Developer Studio

I'm following the tutorials and samples of the official WSO2 ESB documentation. When I create (or load) a synapse configuration in the WSO2 Developer Studio I'm getting the error as shown below:
Save problems
Save could not be completed.
Reason:
resources\sunErrorHandler.esb_diagram (The system cannot find the path specified)
This error shows up when I want to open anything in the Design view. Even when I'm not trying to save anything.
So far I have tried to add the path specified in the error, but without success. I already found a workaround to be able to save and deploy my ESB configurations. By using "Save as" I'm able to keep the changes I made in the XML files. However the error stills shows up when I open the new version of the file.
Does anyone know a better solution to permanently resolve this error message?
I had this problem as well, running eclipse.exe as administrator fixed it.
Issue remains unresolved for my Eclipse + DevStudio 3.8.0 install on a Windows 10 environment. However since I was experiencing some other issues with the WSO2 ESB I decided to migrate to a Linux (Ubuntu) environment. This seems to work much better, the eclipse does not seem to have this issue on Linux.
Eclipse want to write in C:\Program Files\eclipse\resources. I solve problem by adding full permissions to group users on folder C:\Program Files\eclipse
If this happens in Mac you can provide the required permission to the "/Applications/IntegrationStudio.app/Contents/MacOS/resources" folder.

Trying move mamp to new mac

i had a Mac craash - but I was able to salvage the applications folder and jobs folder.
I need to move the old MAMP files on to the new mac and the new MAMP installation.
I copied the htdocs stuff and the Db folder over - and phpmyadmin can see the database.
yet when I go to the local:8888/ directory for the transferred site I get the following error:
Error displaying the error page: Application Instantiation Error: Table 'ymlddartis.mbs9i_session' doesn't exist SQL=SELECT `session_id` FROM `mbs9i_session` WHERE `session_id` = '6a99e3f7011baf6d9d29de1b7d8d69ce' LIMIT 0, 1
Can anyone help???
The error message can be misleading! I remember I had the same issue after moving my MAMP PRO to another volume due to system issues and new OSX installation. I had several websites based on Wordpress, Joomla, and also Drupal.
If everything is in the correct location(s) and you can connect to DB tables via phpMyAdmin... it is a wrong or reset environment variable. Most likely the allocated memory in the respective PHP.ini
1) I assume you have a Joomla CMS? The table info in your error message looks like this. Then you can edit the configuration.php of your website, and turn error reporting from "default" to "1":
public $error_reporting = '1';
Save file and reload the website again. Any new message about "memory allocation..." ?!
2) If you installed a new MAMP, your default setting are too low. You have to edit the correct .INI file of your chosen PHP version! It should be located here:
Example for PHP 5.4.19
Applications/MAMP/bin/php/php5.4.19/conf/php.ini
Edit the file and search for:
memory_limit = 32M
I would suggest a value of 128M instead. Save the file. Restart the server/MAMP app!!
If you use different PHP versions, you have to repeat the steps accordingly.
BTW, right above the memory settings are time related settings. I would suggest much higher values as well ;)

failed to load RSL textLayout

I just installed gentoo linux amd64.
on that I installed eclipse 4.2M5 with FD5 for flex development.
after compiling my project, when I execute it i get the following in the log file:
Error #2046: The loaded file did not have a valid signature.
Failed to load RSL http://fpdownload.adobe.com/pub/swz/tlf/1.1.0.604/textLayout_1.1.0.604.swz
Failing over to RSL textLayout_1.1.0.604.swz
Error #2046: The loaded file did not have a valid signature.
i use FD5 with Flex 4.1A.
any ideas why it happens ?
update:
it seems that when I close and open my project I am able to execute my project once. the 2nd time that I execute the project on my browser I get the error and I need to close and reopen the browser to execute it again.
First of all thank you for all of your comments.
I finally was able to properly resolve the issue.
it seems that flash saves cache info at ~/.macromedia
(~ for home dir, for example if the user is ufk so it translates to /homeukf)
all I need to do is to delete that folder, since then I am able to refresh my app on the browser without any problems.

CKeditor plugin not working

I tried to setup the media Plugin from
http://forge.clermont-universite.fr/wiki/ckmedia and http://forge.clermont-universite.fr/projects/ckmedia/files
When including
CKEDITOR.config.extraPlugins = 'media';
in my page I get an error
Error: uncaught exception: [CKEDITOR.resourceManager.load] Resource name "media" was not found at "http://localhost:8080/fileupload/ckeditor/plugins/media/plugin.js?t=B49E5BQ".
Please check, the directory name. It should be 'Media' or 'media' according to your media plugin file. On unix/linux systems... it matters. I was also facing problem on godaddy hosting but after looking at MediaEmbed plugin file, i find out that it was MediaEmbed not mediaembed.
There was a file not found error for that file.
Right click on the Tomcat server in Eclipse and choosing "Clean..." solved the problem.
We were getting this error because our node add/edit forms were being rendered within the website's theme, which may include a lot of unnecessary and/or incompatible javascript. For reliability, we switched to using the administration theme (in our case bartik), and then the javascript error disappeared. Hope this can help someone else out there.
you should keep your plugin files(plugin.js, css, images) under <plugin-name> along with all plugins of ckeditor. See how core plugins are organised.