By Mathias Gruber on Thursday, 09 April 2015
Replies 5
Likes 0
Views 1.6K
Votes 0
When trying to install easysocial using the launcher I am stuck at 95%. After that, nothing happens.
Hello Mathias.

It seems like your server restrict the user delete folder permission, so that when the installation process until 95% last step, this step is suppose to delete the installation folder of Easysocial, but hitting permission issues so that installation process will get stuck on this stage.

You can skip this installation process but need to tweak some code.
Here is the steps:
1. Download the full installer from our site.
2. Extract the installer.
3. Go to this file: com_easysocial_full_pro_1.3.x_joomla3.0/setup/assets/scripts/script.js.
4. Search for postInstall : function() and modify the code to this:
postInstall : function()
{
// Install the admin stuffs
//es.installation.setActive( 'data-progress-postinstall' );
console.log('postInstall skipped');
// es.installation.ajaxCall( 'installPost' , {} , function( result )
// {
// // Set the progress
// es.installation.update( 'data-progress-postinstall' , result , '100%');
// if( !result.state )
// {
// es.installation.showRetry( 'postInstall' );
// return false;
// }
$( '[data-installation-completed]' ).show();
$( '[data-installation-loading]' ).hide();
$( '[data-installation-submit]' ).show();
$( '[data-installation-submit]' ).bind( 'click' , function(){
$( '[data-installation-form]' ).submit();
});
// });

},



This modification is for skipping the postInstall().

5. Save and zip back the installer.
6. Install EasySocial through Extension Manager. At step 4, the installation will stop at 95%. Just proceed clicking Next Step.
7. Done

Hope this helps.
·
Thursday, 09 April 2015 18:17
·
0 Likes
·
0 Votes
·
0 Comments
·
Thank you!
·
Thursday, 09 July 2015 04:27
·
0 Likes
·
0 Votes
·
0 Comments
·
Hello Nils,

You're welcome.
·
Thursday, 09 July 2015 10:33
·
0 Likes
·
0 Votes
·
0 Comments
·
This worked for me as well. Thanks
·
Monday, 10 August 2015 14:56
·
0 Likes
·
0 Votes
·
0 Comments
·
Hi Fitzgerald,

You are most welcome. Glad that your issue has been resolved.
·
Monday, 10 August 2015 15:48
·
0 Likes
·
0 Votes
·
0 Comments
·
View Full Post