Sponsor:

Server and Web Integrator
Link:
Kloxo-MR logo
6.5.0 or 7.0.0
Click for "How to install"
Donation/Sponsorship:
Kloxo-MR is open-source.
Donate and or Sponsorship always welcome.
Click to:
Click Here
Please login or register. 2024-05-21, 06:17:33

Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - South

Pages: 1 ... 5 6 [7] 8
91
Kloxo-MR Technical Helps / Cant create auxiliar user
« on: 2018-04-10, 07:28:34 »
Hi my steps after creating an auxiliar user is reboot server restart kloxo httpd sshd and usually auxiliar logins.aux grant me access ,but this time I just cant access server with the actual auxiliar login,I do not now know what to do please help



Im on Centos 7 Lamp 64 bits

92
Kloxo-MR Technical Helps / Re: Stopping kloxo service
« on: 2018-04-10, 07:17:37 »
Just an additional spin
sh /script/restart

93
Kloxo-MR Technical Helps / Re: Arlia successor of Kloxo-MR
« on: 2018-04-06, 21:56:40 »
Maybe that explains the sign ?
https://github.com/mustafaramadhan/arlia/issues

94
Hello hello I just installed on my Centos 7 kloxoMR7 and installation came truly smooth without dismays,first I tried on CEntos 6x but it was such a purging thing with tons of turnarounds even with ssl ,so I ended up choosing Centos 7 tough I want it to deploy php stuff from php52,I Dont know if it will make it compatible if I install php52 as well and it might appear on the mix of php pool.
However my main issue with this CEntos 7 is that commands are like not heard and services dont restart,really when people said centos 7 wasnt stable I didnt thaught that bad,actually I have a pc with centos 7 and first it was a nightmare but with tons of care its been able to do anything ,print scan,vids you name it.

Well my main error is
Failed to restart kloxo.service: Unit not found.

please provide support here my  lovely people

95
Kloxo-MR Technical Helps / Arlia successor of Kloxo-MR
« on: 2018-03-31, 01:40:26 »
Hello what can you tell about Arlia the successor of kloxo also produced by MR

96
Kloxo-MR Technical Helps / Re: About Kloxo MR7
« on: 2018-03-19, 21:17:07 »
I guess that the only one that can do that is :: Arlia - Hosting Integrator ::they say on github  Multiple php versions
example: php 5.2, 5.3, 5.4 and 5.5 installed together.Now the thing would be if Arlia can restore kloxo official backup files  and in case it does where in the world there is a forum for arlia howto install.This because you  dont sound  so sure about kloxoMR7 of being able to swithch back and forth from php versions  *2-3-4-5 back and forth on php panel

97
Kloxo-MR Technical Helps / Re: About Kloxo MR7
« on: 2018-03-17, 09:43:15 »
So perhaps we are talking about a very refreshing news,because earlier versions of kloxoMR had this php panel where you could switch to certain other php versions but indeed you could not switch to php52.Dou you think that kloxoMR7 could allow me to use php scripts that was made with php52?,well using of course CentTos 6.?

98
Kloxo-MR Technical Helps / About Kloxo MR7
« on: 2018-03-15, 11:16:52 »
Hello is this version (kloxoMR7) capable of make php  and mysql compatible with other older versions,or in other words translate the script to be compatible with php stuff made with php52 and mysql-5.0?

99
Very cheap trick azzureal you just copied and pasted from this location
https://github.com/mustafaramadhan/kloxo/blob/dev/how-to-install.txt

The whole sheet is
A. pre-install -- better for fresh install

    cd /

    # update centos to latest version
    yum update -y
    # install some packages like package-cleanup, etc
    yum install yum-utils yum-priorities vim-minimal subversion curl zip unzip -y
    yum install telnet wget -y

    cd /

B. Install Kloxo-MR
   - Install/reinstall/upgrade -- data not destroyed with this fork
     for existing Kloxo (6.1.x), run 'sh /script/update' first.

B.1. Fresh Install

    B.1.1. for version 6.5.0 (rpm naming as kloxomr-6.5.0-*.rpm)

        # move to /tmp
        cd /tmp

        # remove old rpm
        rm -f mratwork*

        # install rpm (read Warning)
        rpm -ivh https://github.com/mustafaramadhan/rpms/raw/master/mratwork/release/neutral/noarch/mratwork-release-0.0.1-1.noarch.rpm
        # move to /
        cd /

        # update
        yum clean all

        yum update mratwork-* -y

        yum install kloxomr -y

        sh /script/upcp
 
    B.1.2. for version 7.0.0 (rpm naming as kloxomr7-7.0.0-*.rpm)

        # move to /tmp
        cd /tmp

        # remove old rpm
        rm -f mratwork*

        # install rpm (read Warning)
        rpm -ivh https://github.com/mustafaramadhan/rpms/raw/master/mratwork/release/neutral/noarch/mratwork-release-0.0.1-1.noarch.rpm

        # move to /
        cd /

        # update
        yum clean all

        yum update mratwork-* -y

        yum install kloxomr7 -y

        sh /script/upcp

B.2. update from 6.5.0 to 7.0.0

    yum replace kloxomr --replace-with=kloxomr7 -y
   
    # '-y' mean force
    sh /script/upcp -y
    sh /script/mysql-optimize --select=upgrade

B.3. update from Kloxo Official 6.1.19

    ## follow step B.1.1 or B.1.2 and read 'WARNING' below before next step

    # '-y' mean force
    sh /script/upcp -y
    sh /script/mysql-optimize --select=upgrade

WARNING:

1. Need running 'sh /script/backup-patch' in Kloxo Official (6.1.12) before backup data.

    - In Kloxo offical run:

        cd /script
        wget https://github.com/mustafaramadhan/kloxo/raw/dev/kloxo/pscript/backup-patch  --no-check-certificate
        sh ./backup-patch

2. Need remove certain rpms in Kloxo Official after 6.1.12 (testing in 6.1.19)

    # remove packages from Kloxo Official
    yum remove kloxo* -y
   
3. Since 6.5.0.f-20130701, Kloxo-MR using MySQLi API instead MySQL API. Need update mysql 5.0.x to 5.1.x or above for Centos 5.

    Check mysql version with:

        mysql -V|awk '{print $5}'

    Update with:

        yum replace mysql --replace-with=mysql55' (ask to forum for update to MariaDB)

4. Make sure all MySQL databases in MyISAM storage-engine (especially upgrade to version 6.5.0) with execute:

    ## convert to MyISAM storage-engine
    sh /script/mysql-convert --engine=myisam

5. Trouble with 'rpm -Uvh':

    In CentOS 32bit may trouble with:

        # install rpm (read Warning)
        rpm -Uvh https://github.com/mustafaramadhan/rpms/raw/master/mratwork/release/neutral/noarch/mratwork-release-0.0.1-1.noarch.rpm

    and then use:

        cd /tmp
        # remove old rpm
        rm -f mratwork*

        # get rpm file
        wget https://github.com/mustafaramadhan/rpms/raw/master/mratwork/release/neutral/noarch/mratwork-release-0.0.1-1.noarch.rpm

        rpm -ivh mratwork-release-0.0.1-1.noarch.rpm

   


Now this truly means that you are compleately abscent ,or stoned or blocked mentally I retire my words it wasnt any beautifull words ,it was just artifitial meaning.

We are actually working around this issue .We have achieved a succesfull master install,there is problem with configuration issues ,dont think we wont get over it,the main trick for us in order to use kloxo official as we do is find a way to get the repos ,we only get half of them nowadays,we encourage this side guy programmer that built kloxo to get hired from us in order to give us a repo url or do a negotiation based on a clean artistic trade you know we can give him artistic design for buttons and all the design of a project of his interest with graphic art made specially on a digital frame.WE hope to hear effectively about this issue,however when we find total solution to this issue by ourselves if that gets to be the case we will post all proccedures on Github.

100
Hello I suppose now to have a succesfull master kloxo official but I still get this


~> # service kloxo restart
Could not open input file: ../init/changeport.php
sh: /script/hiawatha-off: No such file or directory
Stopping kloxo-phpcgi:                                     [FAILED]
chmod: cannot access `../sbin/kloxo-wrapper.sh': No such file or directory
Starting kloxo-phpcgi ('php54s' in 'fpm' mode): /etc/init.d/kloxo: line 159: ../sbin/kloxo-wrapper.sh: No such file or directory
[02-Mar-2018 07:12:31] ERROR: failed to open configuration file '/usr/local/lxlabs/kloxo/init/kloxo-php-fpm.conf': No such file or directory (2)
[02-Mar-2018 07:12:31] ERROR: failed to load configuration file '/usr/local/lxlabs/kloxo/init/kloxo-php-fpm.conf'
[02-Mar-2018 07:12:31] ERROR: FPM initialization failed
                                                           [FAILED]
Starting kloxo-hiawatha: Error while reading mimetype configuration.
                                                           [FAILED]

Well I feel Im closer to restore my backups anybody knows this errors?

101
Thank you very much deer for all this lovely words of help,support and relief.But this proccedures come from the perspective of having kloxo official already installed on server and for that I would need to replace the needage of
wget http://download.lxcenter.org/download/kloxo/production/kloxo-installer.sh from the installation file in order to make work the installation process of kloxo official.Would anybody give me please an installation file of kloxo official that would not require lx center for to do installation process successfull?,taking in consideration I do have the package of kloxo official on my computer,but I cant upload it to my server since installation file starts installation process but then it boicots since it require lxcenter

102
Can anybody explain more clearly

103
Dude man dude,do you mean a fresh install of kloxoMR ,then restore my files as I used to with kloxo official?

104
Hello everybody IM seeking for help so ya can explain a little bit more close and clear how to restore a backup file made with kloxo official yes that old version to MR version,if someone has achieved that I hope that you could explain to me step by step how you achieved it,Im  really appreciating your efforts

105
So it is unknown still the type of adjustment needed?

In kloxo official you just went choosed the backup file ,pushed the restore button and voila,that is not the case here ?

Pages: 1 ... 5 6 [7] 8

MRatWork Affiliates:    BIGRAF(R) Inc.    House of LMAR    EFARgrafix
Click Here

Page created in 0.043 seconds with 20 queries.

web stats analysis