Announcement

Collapse
No announcement yet.

Permission denied when installing real estate extension

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • espcrm
    commented on 's reply
    Let hopes that I don't have to rely on this workaround but other may not be lucky as me. They might not be able to Whitelist it like I did.

    Thanks.

  • tothewine
    replied
    Sorry for the delay I am full of notifications I was thinking there would be apage on github about that. Glad you solved... mod_security is always a PITA.

    For info on entrypoints see this post, it has an example: https://forum.espocrm.com/forum/deve...2652#post22652
    Only thing to do different is you don't need to create a module so you can put the file in custom/Espo/Custom/EntryPoints/<your class name>.php (example name)

    What I was saying is to copy the run() code from the install script and put it as the body of youe entrypoint class's run method, then visit the entrypoint once and to do further (die-based) debugging in case of errors.

    Actually I just figured now that you could probably have taken the extension zip file, change the script, remove all files and edit manifest accordingly to do a quick retry if the install code...
    Last edited by tothewine; 01-22-2020, 03:22 PM.

    Leave a comment:


  • espcrm
    commented on 's reply
    Rejoice! I decided to do a little more research into this issue and finally manage to resolve it.

    As my host is shared hosting they enable this feature to protect your website and their server. I talked to my Host and asked them about it and at the end of the day they add a doamin Whitelist rules to it. Basically now I don't get that error anymore.

    Installation finally worked and I can now start to use it without fear.

    The issue right now is, since it is whitelist, I no longer receive the protection of mod_security so that post a risk to my server.

  • espcrm
    commented on 's reply
    Just noticed this when my tab browser crashed:

    EspoCRM is an Open Source CRM (Customer Relationship Management) software that allows you to see, enter and evaluate all your company relationships regardless of the type. People, companies, projects or opportunities - all in an easy and intuitive interface. Try for Free.


    Which point to a PDF file I was download from an attachment. So that how the ?entrypoint command work, but how do I get it to activate the extension installation? Maybe like this?

    https://espocrm.com/?entryPoint=extensions&id={extensionname?}

    Just bunch page 404 pages as I tested.

  • espcrm
    replied
    Originally posted by tothewine View Post
    You can refer to github documentation on how to use entrypoints, basically it's some code that gets run over http requests to index.php ?entryPoint=<name> : a way to run code in a very similar environment that may expected during extension install (within espo app context). The manifest is not to be copied anywhere. You only copy the content of the 'files' directory of the zip over espo directory.
    Then run the entrypoint and you should have simulated extension install. From a quick glance most of the install script can be done within the GUI except dome dashboard modding.
    Do rebuild in the end
    Thank you. I tried searching for it but couldn't find anything about "entry" "entrypoint" "point": https://github.com/espocrm/documentation

    I tried to install it on the demo and see if I can figure it out but Demo (https://demo.espocrm.com/?lang=en_US#Admin/extensions) disabled installation.

    The extension documents doesn't mention anything: https://github.com/espocrm/documenta.../extensions.md

    Can you give a specific example? I did tried opening the file (note the domain is an example)



    script.php being the file I extracted from the Real Estate extension but all I get is a 403 error.

    Is the entrypoint something like this?

    https://demo.espocrm.com/?lang=en_US#Admin/extensions/?entryPoint=<scripts.php>
    or maybe


    ---

    I already extract all the files, rebuild my file. And it seem to be available to be use on my EspoCRM, but I don't dare to touch it yet because it might break the whole system and I have to restart again (haven't learn how to make backup yet).

    But those "script.php" installation is what worries me, I need it to run before I start using it.

    Leave a comment:


  • tothewine
    replied
    You can refer to github documentation on how to use entrypoints, basically it's some code that gets run over http requests to index.php ?entryPoint=<name> : a way to run code in a very similar environment that may expected during extension install (within espo app context). The manifest is not to be copied anywhere. You only copy the content of the 'files' directory of the zip over espo directory.
    Then run the entrypoint and you should have simulated extension install. From a quick glance most of the install script can be done within the GUI except dome dashboard modding.
    Do rebuild in the end

    Leave a comment:


  • espcrm
    commented on 's reply
    Thank you tothewine. Bit confused with the "Entrypoint" and run it once, how do I do that?

    Also, do you know where to extract the manifest.json file to?

    Not sure where to put the "scripts" folder either. There two file in there.
    Last edited by espcrm; 01-13-2020, 10:22 PM.

  • tothewine
    commented on 's reply
    Well in that case you extract the content of files directory to the espocrm directory. Then put the content of the scripts/afterinstall.php run method in an entrypoint and run it once. Then remove the entrypoint. Do this in a test environment with backups.

  • espcrm
    commented on 's reply
    Downloaded the extension enhanced-dynamic-logic-for-espocrm to see if it every file that have issue or just the real estate one. I still got the error so it is due to my server.

    Looking at the file structure it look simply enough. Will just extracting the file manually to those folder and if require edit the permission work?

    The manifest file is also very simple with pretty much text description and no coding at all. I will give it a try and pray my luck.

    My guess, somehow it can't extract the zip file and require modsecurity to do that. But I have access via FTP and Cpanel & file manager so I can make change through that way.

  • espcrm
    replied
    Originally posted by Maximus View Post
    Your EspoCRM instance should have permissions as provided here https://www.espocrm.com/documentatio...nt-permissions. If the permissions are ok, there shouldn't be any problem with the extension installation process.
    Please set permissions with the command scripts provided in the manual and try to install the extension again. If you will get some error, please provide the error description from the log file in the data/logs directory. Describe the steps you did to make extension installation.
    Also, all .htaccess files should be with default configs.
    Already describe what I can here: https://forum.espocrm.com/forum/exte...4645#post54645

    I can post the log but like I said, nothing useful information in there but I might have misread.

    Permission is OK based on during installation, administration panel and manual check for File Permission #.

    Default htaccess is being use, just testing way to be able to temporary install the extension or "fix the error" but it didn't work so I revert back the changes.

    Will post the log sometime tomorrow.

    ---

    data\logs\
    Code:
     Espo.ERROR: (403) GET /api/v1/Extension/action/upload; line: 47, file: /home4/{filter}/public_html/crm.{filter}.com/application/Espo/Controllers/Extension.php [] []
    Here is the system environment:


    Click image for larger version  Name:	Screenshot_2020-01-14 Server Requirements filter.jpg Views:	0 Size:	61.9 KB ID:	54815
    Last edited by espcrm; 01-13-2020, 10:32 PM.

    Leave a comment:


  • espcrm
    commented on 's reply
    It a free extension by EspoCRM developer. Can grab it here: https://www.espocrm.com/extensions/real-estate/

  • tothewine
    commented on 's reply
    start by reading the manifest file there should be information in there. since i do not have real estate pack i don't know precisely what is in there.

  • Maximus
    replied
    Your EspoCRM instance should have permissions as provided here https://www.espocrm.com/documentatio...nt-permissions. If the permissions are ok, there shouldn't be any problem with the extension installation process.
    Please set permissions with the command scripts provided in the manual and try to install the extension again. If you will get some error, please provide the error description from the log file in the data/logs directory. Describe the steps you did to make extension installation.
    Also, all .htaccess files should be with default configs.

    Leave a comment:


  • espcrm
    replied
    That a bit odd, EspoCRM installed fine but why is the Extension designed in a way that it require additional permission.

    Is there no way to do a manual "extract" to folder method?

    Leave a comment:


  • Maximus
    replied
    Hello,
    if you are using a host solution and faced with this issue, a better way is to contact a host support service. This issue as you mentioned above is up to the server configs.

    Leave a comment:

Working...
X