Cloudron makes it easy to run web apps like WordPress, Nextcloud, GitLab on your server. Find out more or install now.


Skip to content

LAMP

124 Topics 807 Posts
  • LAMP - Package Updates

    Pinned
    36
    1 Votes
    36 Posts
    2k Views
    girishG

    [4.0.0]

    Important: Change default PHP version to 8.3 (only for new installations). PHP 8.1 is reaching EOL and only gets security updates. The php binary defaults to 8.3. Use php8.x binaries for explicitly using other versions
  • run.sh not working as expected

    Solved
    3
    1 Votes
    3 Posts
    76 Views
    E

    @joseph
    Oh, okay! That works perfectly.
    Thank you for the clarification!

  • Outdated LAMP install

    Moved
    4
    1 Votes
    4 Posts
    82 Views
    J

    @Robin my bad. The lamp.cloudronapp.php73 and lamp.cloudronapp.php74 are totally different packages! I think you are using the very old php 7.3 package. This is why you are not seeing the update. I don't know why the old one was deprecated though.

  • Connection Problems IWP

    Moved
    8
    1 Votes
    8 Posts
    354 Views
    girishG

    @chriskloss said in Connection Problems IWP:

    These should be able to connect to each other if I use the FTP and MySQL data from the staging environment, right?

    Yes, for MySQL. As long as they are in the same instance, you can use the MySQL credentials from one app into another.

    For FTP, I guess you are asking if IWP can access files of another via FTP. This is possible, yes. Just use the SFTP credentials of the app - https://docs.cloudron.io/apps/#sftp-access

  • Config Apache with domain and subdomain

    4
    1 Votes
    4 Posts
    127 Views
    girishG

    Just creating multiple VirtualHost should work. Something like below works for me.

    ServerName %{HTTP_HOST} <VirtualHost *:80> ServerName main.smartserver.io DocumentRoot /app/data/public/main LogFormat "%{X-Forwarded-For}i %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\"" proxy CustomLog "|/bin/cat" proxy ErrorLog "|/bin/cat" <Directory /app/data/public/main> Options +FollowSymLinks AllowOverride All Require all granted </Directory> # Do not remove this include. It's required for your app to see the Real IP Include "/app/code/apache/rpaf.conf" </VirtualHost> <VirtualHost *:80> ServerName update.smartserver.io DocumentRoot /app/data/public/update LogFormat "%{X-Forwarded-For}i %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\"" proxy CustomLog "|/bin/cat" proxy ErrorLog "|/bin/cat" <Directory /app/data/public/update> Options +FollowSymLinks AllowOverride All Require all granted </Directory> # Do not remove this include. It's required for your app to see the Real IP Include "/app/code/apache/rpaf.conf" </VirtualHost>
  • How to get Mariadb installed for Lamp app

    Moved
    8
    1 Votes
    8 Posts
    395 Views
    S

    Considering Turnkey Linux has a container version of LAMP with MariaDB that works great for our software, it is too much to manually setup SSL and other things, this is why we want to use the LAMP in Cloudron to setup our software, but MariaDB is needed.

  • Best practice for setting up additional subdomain

    6
    1 Votes
    6 Posts
    363 Views
    marcusquinnM

    @CRBear Screenshot of your App Location Settings may help everyone to understand what you have so far, to then help with what you're doing within the LAMP app.

  • How To Increase Max_allowed_packet Setting?

    3
    0 Votes
    3 Posts
    166 Views
    girishG

    A workaround is to edit the config in the MySQL container:

    docker exec -ti mysql /bin/bash Then, edit /run/mysql/my.cnf In the container shell itself, supervisorctl restart mysql

    Note that changes are not persistent across updates (but persists across reboots).

  • Web Based On LAMP Stuck When Backup Process

    Unsolved
    3
    0 Votes
    3 Posts
    196 Views
    I

    @nebulon I think the problem is consistent, thank you I will contact via email.

  • LAMP app Integrates OWASP ModSecurity

    Unsolved
    1
    1 Votes
    1 Posts
    49 Views
    No one has replied
  • Basic Auth in LAMP not working

    Moved Solved
    4
    1 Votes
    4 Posts
    202 Views
    matix131997M

    @shrey This is interesting. I hadn't noticed before that you had a complete different way of authorization. That's why I made an edit to the post and gave you the exact instruction, which is already implemented as standard.

  • Unable to install software (Webtrees.net) due to Php error

    Solved
    5
    0 Votes
    5 Posts
    266 Views
    S

    @girish Thanks, that helped!

  • Create cron in LAMP

    Solved
    5
    0 Votes
    5 Posts
    276 Views
    matix131997M

    Thanks, it works!

  • How to host a website on LAMP?

    Solved
    14
    0 Votes
    14 Posts
    804 Views
    S

    @timconsidine said in How to host a website on LAMP?:

    So Noodl does not require the MondoDB connection ?

    Noodl is primarily a frontend builder.

    It's just that it has first-class connectors for Parse (which is based on MongoDB), to add the data layer for your app.

    Anyway, you can bring any data source (accessible via REST/GRAPHQL/Static) to your app in Noodl.

  • Server utility paths

    5
    0 Votes
    5 Posts
    287 Views
    C

    Ah, thanks, good to know.

  • Node.js in LAMP server?

    9
    2 Votes
    9 Posts
    799 Views
    robiR

    @micmc Nice idea, maybe @girish can make it easily configurable with the FileManager (like PHP version) where LAMP/MERN/MEAN is selectable or any combination in between!

    That would be unique and slick!

  • Redirect domain root to "/site" subfolder

    Solved
    3
    0 Votes
    3 Posts
    176 Views
    girishG

    https://stackoverflow.com/questions/990392/how-can-i-use-htaccess-rewrite-to-redirect-root-url-to-subdirectory has other ideas as well. If you want /site to appear in the browser URL, you can also do RewriteRule ^$ /site [L] (no trailing slash!)

  • Try install OpnForm

    Solved
    15
    1 Votes
    15 Posts
    997 Views
    G

    Thank you so much all, for your suggestion, it solved my problem also.

  • Disable Strict Mode Mysql

    Moved Solved
    18
    0 Votes
    18 Posts
    4k Views
    osoboO

    @girish Thanks for your prompt reply. Ok I will try to contact them to inquire about this. Will keep you guys updated. Best wishes !

  • "Server connection: SSL is not being used " into phpmyadmin

    Moved Solved
    5
    1 Votes
    5 Posts
    782 Views
    D

    Noted. thank you for your responsiveness @girish