Trying to install Joomla on NethServer

So far very strange its going well but seems to have installed a whole bunch of add-ons into the installations into the software center, i hope i didnt break the distro… it doesnt look right to me but who am i to judge?

I am linking to some screenshots i did and tell me if that is normal as I am unfamiliar with things adding themselves suddenly with a distro like this…without it breaking…

Here is a link to the screenshots of what it added, its rather large sorry:

Nevermind: Thats the EPEL and REMI Repository coming thru! lol

I just finished apache, i did not do anything with the firewalls as of yet, and about to add Joomla to see what happens… lol

Joomla is completed on my screen end ready for install at:https://ipaddress

Does not show up in the Dashboard as I told you it would not, however it proves things can be installed without breaking the distribution. I dont know where you would want to take it from here?

Screenshot: https://www.dropbox.com/s/94phkmcsme26azu/Joomla.rtf?dl=0

I did have some issues with not breaking the distro, some things were missing like installing t1lib before upgrading php, PLEASE NOTE: I had used a CentOS 6.6 minimal install,added NethServer and did not install any add-ons to do this, i had to change the MySQLD password located at /etc/my.pwd and made no changes to the firewall as I have several here.

I did not update at all during the process, as it would have become unstable i used EPEL and REMI Repositories.

Instructions are here:

http://genetics.wustl.edu/technology/joomla-on-centos6-6/

install yum install t1lib
I had to create a new MySqld password,
PHP.ini only change the PostMax Size=30 Upload Max Size=30M
httpd.conf NO Changes.

There is nothing special here, only i did NOT break the distro, in the process, it flows like a normal install otherwise.

Webmin, has now been added to my NethServer distro and is working fine, just had to add this to IPTABLES

/etc/sysconfig/iptables

A INPUT -p tcp -m tcp --dport 10000 -j ACCEPT

This opens the door for Bacula, and other things on my distro copy, if others want to add it, it does work but you will have to update things manually as listed before.

If you need to open a port in the firewall, just follow this doc: Services — NethServer 7 documentation

1 Like

I got it open, something happened to Snort so i have to wipe and reinstall as of now, working on that currently, occurred after installing OSMA for Dell PowerEdge Servers.Snort IPS was wiped and removed directories and it is pulling back expansion errors right now, so this is a priority as i move on into more exploring, this is the first thing that broke in the distro… gave:

Undefined Variable in the String $SIP_SERVERS /etc/snort/rules/snort.rules

So can we have a clear and simple howto to install Joomla?
@AbsyntH can yo try to help @PParker?

1 Like

I fixed it on my end, i used pigsty as a module.

Hello,

I have following these steps to install joomla:

  1. On Nethserver, I create a shared folder with web acess. (http://myServer/myWebFolder)
  2. I got the mysql root password in “/root/.my.cnf”.
  3. On Terminal, install PhpMyAdmin
  4. Add a few php resources on “/etc/php.ini”.
  5. Copy the joomla structure to myWebFolder
  6. Install joomla, via web browser.

For me, these steps works fine.

Regards,
Marcelo

You have a module nethserver-phpmyadmin with all automatic configurations

Thanks for your return

That’s a fantastic news! Please, could you write down more details? Which resources did you add on php.ini?
Could you use nethserver-phpmyadmin module? Adding some screenshot?
It might be a helpful HowTo
What do you think @AbsyntH?

1 Like

Hello,

I have a brief tutorial, but is in portuguese. I will translate to english and post here.

Regards,
Marcelo

2 Likes

Wow I want this :smiley: please paste here your tutorial! So we can work on it…

Hi,

Links for howto:

English version: http://www.comdesk.com.br/downloads/tutorials/Nethserver-WebServer-English.pdf

Portuguese version: http://www.comdesk.com.br/downloads/tutorials/Nethserver-ServidorWeb.pdf

Regards,
Marcelo

1 Like

Hi marcello thank for your work.

My 2c

A.When you want to modify php values you have to use the internal command of neth database. It is completely specific to neth but really easy to manage when you will know that. By the way i’m working on a panel to modify these values directly.

For example

config setprop php MemoryLimit 250
signal-event nethserver-php-save

B. If you are root you don’t need to use ‘sudo’

C.And concerning phpmyadmin you have a module in the software center…

1 Like

I forgot to add this morning i’m also working on nethserver-phpsettings, search on the forum, a module to adjust only for the ibay specific settings to the ibay.

It is still in beta stage but for what i tested it is workable

1 Like

I am trying to integrate Joomla into Nethserver ALCs. I always find LDAP confusion and complecated, can somebody help me?

The following image contains a screenshot of Joomla’s LDAP authentication plugin.

Can somebody tell me what to add to this configuration?

Some doc http://docs.nethserver.org/projects/nethserver-devel/en/latest/directory.html

And a concret example https://github.com/stephdl/nethserver-BackupPC/blob/ns6/root/etc/e-smith/templates/etc/httpd/conf.d/BackupPC.conf/10base

In fact you use the user ‘libuser’ and the password is in /var/lib/nethserver/secret

1 Like

And another one for https://github.com/nethesis/nethserver-roundcubemail/blob/master/root/etc/e-smith/templates/etc/roundcubemail/config.inc.php/50ADDRESSBOOK_SETTINGS

1 Like

Hi Stephane,

Thanks for your tips. I am a newbie on Nethserver and I have much to learn.

I used the global “php.ini”, because, in my environment, Joomla load this file and the “/etc/php.d” folder. A management panel to php.ini will be a great tool.

I don’t found PhpMyadmin module in software center.

Yes. I have removed “sudo”…I write because this is a habit.

Regards,
Marcelo

1 Like

No problem Marcello, please read this Db command tutorial - SME Server it is not strictly related to neth but it is workable and when you want to find an event, type 'signal-event ’ (with a space after) and press the ‘Tab’ key, all available events will be printed.

A nethserver is based on a database of keys/properties and these values are used to write configuration files
if you want to see all the database configuration

[root@nethserver-dev ~]# config show |less

but in order to see only php key

[root@nethserver-dev ~]# config show php
php=configuration   <---- KEY
    AllowUrlFopen=1   <----PROPERTY
    DateTimezone=UTC <----PROPERTY
    ExposePhp=0  <----PROPERTY
    MaxExecutionTime=30  <----PROPERTY
    MemoryLimit=32  <----PROPERTY
    PostMaxSize=8  <----PROPERTY
    ShortOpenTag=0  <----PROPERTY
    UploadMaxFilesize=2  <----PROPERTY

and here for example if you want to modify a values

db configuration setprop php MemoryLimit 256
or
config setprop php MemoryLimit 256

and for multiple properties

db configuration setprop php MemoryLimit 256 MaxExecutionTime 300 PostMaxSize 225 UploadMaxFilesize 220

or

config setprop php MemoryLimit 256 MaxExecutionTime 300 PostMaxSize 225 UploadMaxFilesize 220

when you modify properties, you have to launch an event, here it is

signal-event nethserver-php-save

or

signal-event nethserver-php-update    #update is an event more complete launched every time you install or remove rpm

you have no equivalent in the linux world of that concept, or I don’t know them, once you have understood that, it is really simple.

the day where the project will decide where the wiki will be, I can have a go on this type of documentation, and other.

[root@nethserver-dev ~]# rpm -qa | grep -i phpmyad
nethserver-phpmyadmin-1.0.0-1.ns6.noarch
phpMyAdmin-3.5.8.2-1.el6.noarch

please read this http://dev.nethserver.org/projects/nethforge/wiki/NethForge

but @davidep I believed that now the software center can find nethforge directly without modifications ?

1 Like

No worries at all
We’re all here to learn something of new, every single day :wink:

NethForge repository is not part of default NethServer installation. To configure it:

yum install nethserver-nethforge-release
rpm --import  /etc/pki/rpm-gpg/RPM-GPG-KEY-NETHFORGE-6

http://dev.nethserver.org/projects/nethforge/wiki/NethForge#Enable-NethForge-repository