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

144 Topics 1.0k Posts
  • Lamp Stack Sendmail

    Moved
    3
    0 Votes
    3 Posts
    1k Views
    girishG
    @savity Please see https://docs.cloudron.io/apps/lamp/#email on how to use it with PHPMailer. As @robi mentioned, you don't need sendmail. sendmail is just a binary to send mail. If you really want to use a binary, you can use swaks. swaks usage is documented here - https://docs.cloudron.io/packaging/addons/#sendmail
  • SFTP access for LAMP app

    sftp
    10
    0 Votes
    10 Posts
    4k Views
    girishG
    @3246 Strange indeed. I can't quite make out what the issue is. Can you drop a mail to support@cloudron.io with SSH access and I can try to debug?
  • Mime type for webp images

    3
    0 Votes
    3 Posts
    8k Views
    girishG
    I guess something like : <Files *.webp> AddType image/webp .webp </Files> Many examples here : https://www.keycdn.com/support/optimus/configuration-to-deliver-webp
  • phpMyAdmin has a new version

    Solved
    3
    0 Votes
    3 Posts
    594 Views
    girishG
    Turn out I wasn't subscribed to https://github.com/phpmyadmin/phpmyadmin . I am now.
  • LAMP : phpmyadmin dont have a Users tab so I can't add DB

    Moved
    2
    0 Votes
    2 Posts
    779 Views
    girishG
    @levisadm the database is already added. If you go to the app's Web Terminal , if you run env | grep CLOUDRON_MYSQL_ you will get the values to use in your app. It's actually better if you just use the env variables directly in your app like getenv('CLOUDRON_MYSQL_USERNAME') etc
  • Installing Attendize on LAMP - Need help

    Moved
    5
    0 Votes
    5 Posts
    2k Views
    micmcM
    @girish said in Installing Attendize on LAMP - Need help: @micmc said in Installing Attendize on LAMP - Need help: You cannot install composer nor run docker in a LAMP under Cloudron. You are correct about docker but composer is actually already installed. In fact, you can also use a new composer since composer itself is just php, so you can download it in any directory and run it. Yep, thanks for the reminder. I think I've mixed composer with compose here loll Cheers!
  • Owncast in LAMP failed

    Moved
    4
    2 Votes
    4 Posts
    2k Views
    jdaviescoatesJ
    @loudlemur said in Owncast in LAMP failed: Shall I create an AppWish? No, upvote the existing one as per the OP https://forum.cloudron.io/post/22108
  • Setting the Correct File Owner

    Solved
    10
    1 Votes
    10 Posts
    4k Views
    micmcM
    @girish Useful info mate!
  • Redirect document root to a subfolder?

    Solved
    3
    0 Votes
    3 Posts
    707 Views
    micmcM
    Good work @humptydumpty
  • SphinxSearch

    1
    0 Votes
    1 Posts
    273 Views
    No one has replied
  • what if I need 2 databases ?

    Solved
    3
    1
    1 Votes
    3 Posts
    1k Views
    nebulonN
    @jodumont said in what if I need 2 databases ?: BTW: I found a typo: CLUODRON_MYSQL_DATABASE_PREFIX thanks for reporting! I've fixed it now in the docs.
  • LAMP PHP Set to 8.0. Doesn't update

    Moved
    7
    0 Votes
    7 Posts
    3k Views
    girishG
    @ghodgeon said in LAMP PHP Set to 8.0. Doesn't update: COMPOSER_MEMORY_LIMIT=-1 composer create-project pimcore/demo my-project Can you try: COMPOSER_MEMORY_LIMIT=-1 php8.0 /usr/bin/composer create-project pimcore/demo my-project
  • apache not allow authorization header ?

    5
    0 Votes
    5 Posts
    5k Views
    girishG
    @freetommy mm, I assumed what you tried didn't work. It works for me. I put the below in /app/data/.htaccess (placing this in /app/data/apache/app.conf inside VirtualHost also works: SetEnvIf Authorization "(.*)" HTTP_AUTHORIZATION=$1 Restart the app. Then, I see the header passed on to PHP: [HTTP_AUTHORIZATION] => Bearer YWxhZGRpbjpvcGVuc2VzYW1l For future reference, this also worked (in apache config): RewriteEngine On RewriteCond %{HTTP:Authorization} ^(.*) RewriteRule .* - [e=HTTP_AUTHORIZATION:%1]
  • Disable phpMyAdmin

    Solved
    5
    1 Votes
    5 Posts
    2k Views
    J
    @girish Thank you!
  • Web app installer on LAMP Cloudron cannot connect to server.

    Solved
    9
    0 Votes
    9 Posts
    3k Views
    scookeS
    @shai Glad to hear it, I was going to give it a try this weekend, so this saves me a bit of time. Congrats.
  • installing Drupal 9 fails

    Solved
    7
    0 Votes
    7 Posts
    2k Views
    L
    @shai What is the latest on deploying Drupal using Cloudron everybody?
  • SQL modes

    5
    0 Votes
    5 Posts
    2k Views
    C
    @nebulon I also think plain database apps would be the way to go here. Patching the app code is complicated in this particular case, so for now I I will just go with an external database.
  • Scalar - a PHP/MySQL program - Need Installation Troubleshooting Help

    Moved Solved
    3
    0 Votes
    3 Posts
    1k Views
    nebulonN
    @jagan thanks for sharing the solution!
  • Mysql "loading local data disabled" error

    Solved
    3
    0 Votes
    3 Posts
    2k Views
    ShaiS
    @girish the local_infile is the approach the app uses to load data sets for optional functionality. I'll go to the forum for OpenEMR and see if there is a way for me to manually upload the data instead of being done through the webapp UI.
  • 0 Votes
    4 Posts
    1k Views
    ShaiS
    @girish Thank you!