LxCenter HyperVM & Kloxo Support

Forum



Members   Search      Help    Register    Login    Home
Home » Kloxo Community Support » InstallApp & Permalink » Old versions of apps - Upgrade?(Upgrade possibilities for the apps)
Old versions of apps - Upgrade? [message #74475] Mon, 10 May 2010 10:22 Go to next message
michelcannu is currently offline michelcannu  Romania
Messages: 2
Registered: May 2010
Member
Hi,

I've noticed that most of the applications in the list have outdated versions; how could they be brought to most recent versions?

I have done /script/installapp-update - with no noticeable result.

Thanks,
Michel
Re: Old versions of apps - Upgrade? [message #74480 is a reply to message #74475] Mon, 10 May 2010 15:49 Go to previous messageGo to next message
Peter is currently offline Peter  Denmark
Messages: 149
Registered: August 2007
Valuable Member
LxCenter Advisor
There aren't anyone doing updates for the apps

I know they have been checked into SVN just a few days back, so perhaps in a not so distant future.

But I don't think any devs have looked at it yet.
Re: Old versions of apps - Upgrade? [message #74485 is a reply to message #74480] Mon, 10 May 2010 18:08 Go to previous messageGo to next message
LxCenter_Danny is currently offline LxCenter_Danny  Netherlands
Messages: 2068
Registered: July 2007
Location: Netherlands
Grandmaster
LxCenter Core Team Member
LxCenter Representative

I got a SVN apply from someone that wanted to maintain it.
Then i created the installapp svn and mailed him the information. But not any reply back.

Information:
How to get the SVN installapp software?
svn checkout http://svn.lxcenter.org/svn/installapp

What do you get?
2,5GB data! So be care full...

Getting a single application (wordpress example):svn checkout http://svn.lxcenter.org/svn/installapp/wordpress

More information is unknown. Much has to be figured out by yourself and document it for example on wiki.lxcenter.org website.






LxCenter - System Operations
Re: Old versions of apps - Upgrade? [message #74486 is a reply to message #74485] Mon, 10 May 2010 18:10 Go to previous messageGo to next message
LxCenter_Danny is currently offline LxCenter_Danny  Netherlands
Messages: 2068
Registered: July 2007
Location: Netherlands
Grandmaster
LxCenter Core Team Member
LxCenter Representative

If you have an updated application, pack it and email to me.
Be sure it is working and tested.

It is possible that we can create a test server for it.





LxCenter - System Operations
Re: Old versions of apps - Upgrade? [message #74723 is a reply to message #74475] Mon, 24 May 2010 07:49 Go to previous messageGo to next message
lego is currently offline lego  Canada
Messages: 71
Registered: June 2009
Valuable Member
I was able to update Wordpress to version 2.9.2.

I downloaded the latest release from wordpress.org and extracted to /home/kloxo/httpd/installsoft/wordpress.

in the same folder look for __kloxo and find the file lxinstaller.inc.

search for the following lines inside lxinstaller.inc:
appvault_dbfilter("__lxadmin/lx_template.config.php", "wp-config.php", $var);
system("rm -r ../__lxadmin");


and change to the following:
appvault_dbfilter("__kloxo/lx_template.config.php", "wp-config.php", $var);
system("rm -r ../__kloxo");


before this mod I would always get a blank page every time I installed WP. Also I did not test this for the long run.. so do try at your own risk.


[Updated on: Mon, 24 May 2010 07:55]

Report message to a moderator

Re: Old versions of apps - Upgrade? [message #74724 is a reply to message #74723] Mon, 24 May 2010 09:01 Go to previous messageGo to next message
LxCenter_Danny is currently offline LxCenter_Danny  Netherlands
Messages: 2068
Registered: July 2007
Location: Netherlands
Grandmaster
LxCenter Core Team Member
LxCenter Representative

Thank you!
Will add this to the InstallApp SVN and testing it on a test server.




LxCenter - System Operations
Re: Old versions of apps - Upgrade? [message #74737 is a reply to message #74724] Mon, 24 May 2010 20:54 Go to previous messageGo to next message
lego is currently offline lego  Canada
Messages: 71
Registered: June 2009
Valuable Member
Okay I've modified it some more.. this will do a complete install without having to input your email and blog title in the WP installer (since you have already provided the info in the "installapp" installer). Your login details for your new WP blog will be emailed to you. If you don't have working email you can check your "Mail queue" to retrieve your Login details.

Please create a backup of the following file "lxinstaller.inc" and "install.php" in case you need to reference the original files.


Find the following:

/home/kloxo/httpd/installsoft/wordpress/__kloxo/lxinstaller. inc
appvault_dbfilter("__lxadmin/lx_template.config.php", "wp-config.php", $var);
appvault_dbfilter("__lxadmin/lx_template.myfile.php", "__lxadmin/lx_myfile.php", $var);
appvault_dbfilter("__path_installsoft_servervar", "__lxadmin/lx_servervars.php", $var);
system("rm -r ../__lxadmin");


and change to the following:
appvault_dbfilter("__kloxo/lx_template.config.php", "wp-config.php", $var);
appvault_dbfilter("__kloxo/lx_template.myfile.php", "__kloxo/lx_myfile.php", $var);
appvault_dbfilter("__path_installsoft_servervar", "__kloxo/lx_servervars.php", $var);
system("rm -r ../__kloxo");


Add the following line below "<?php" in:

/home/kloxo/httpd/installsoft/wordpress/wp-admin/install.php
include_once "../__kloxo/lx_myfile.php";


so the first few lines of your "install.php" should look similar to the following:
<?php
include_once "../__kloxo/lx_myfile.php";
/**
 * WordPress Installer


Also if you wanted to update the description for the wordpress install you could modify the following files..

find:
/home/kloxo/httpd/installappdata/description/wordpress.info

and replace the text "version 2.6.3" to your current version.

Okay good luck!


[Updated on: Mon, 24 May 2010 21:39]

Report message to a moderator

Re: Old versions of apps - Upgrade? [message #74741 is a reply to message #74737] Tue, 25 May 2010 01:05 Go to previous messageGo to next message
LxCenter_Danny is currently offline LxCenter_Danny  Netherlands
Messages: 2068
Registered: July 2007
Location: Netherlands
Grandmaster
LxCenter Core Team Member
LxCenter Representative

Thanx again. Added it also to the InstallApp SVN repo (with your credit)




LxCenter - System Operations
Re: Old versions of apps - Upgrade? [message #74742 is a reply to message #74741] Tue, 25 May 2010 01:59 Go to previous messageGo to next message
lego is currently offline lego  Canada
Messages: 71
Registered: June 2009
Valuable Member
Much appreciated NetTuningGroup, hopefully more people will help out so at least we can have a few of the popular scripts working/updated.

Thanks..
Re: Old versions of apps - Upgrade? [message #74782 is a reply to message #74475] Wed, 26 May 2010 11:07 Go to previous messageGo to next message
lego is currently offline lego  Canada
Messages: 71
Registered: June 2009
Valuable Member
If anyone is interested in getting Joomla (v 1.0.13.1) in Installapp to work..

Find and replace all instance of "__lxadmin" to "__kloxo" in:

/home/kloxo/httpd/installsoft/joomla/__kloxo/lxinstaller.inc

appvault_dbfilter("__path_installsoft_servervar", "__kloxo]/lx_servervars.php", $var);
appvault_dbfilter("__kloxo/lx_template.myfile.php", "__kloxo/lx_myfile.php", $var);
system("rm -r ../installation ../__kloxo");


Find and replace "__lxadmin" to "__kloxo" in:

/home/kloxo/httpd/installsoft/joomla/installation/ install2.php,
/home/kloxo/httpd/installsoft/joomla/installation/ install3.php
/home/kloxo/httpd/installsoft/joomla/installation/ install4.php

include_once "../__kloxo/lx_myfile.php";


Re: Old versions of apps - Upgrade? [message #74783 is a reply to message #74475] Wed, 26 May 2010 11:28 Go to previous messageGo to next message
lego is currently offline lego  Canada
Messages: 71
Registered: June 2009
Valuable Member
If you are getting "unsupported database" error when trying to install Drupal (v 5.12.0) in Installapp. Try the following..

Find and replace all instance of "__lxadmin" to "__kloxo" in:

/home/kloxo/httpd/installsoft/drupal/__kloxo/lxinstaller.inc

appvault_dbfilter("__kloxo/lx_template.settings.php","sites/default/settings.php",$var);
appvault_dbfilter("__kloxo/lx_template.myfile.php","__kloxo/lx_myfile.php",$var);
appvault_dbfilter("__path_installsoft_servervar", "__kloxo/lx_servervars.php", $var);
appvault_dbfilter("__kloxo/lx_template.myfile.php","__kloxo/lx_myfile.php",$var);	appvault_dbfilter("__kloxo/lx_include_myfile.php","__kloxo/lx_include.php",$var);
system("mv __kloxo/lx_index.php index.php");
system("rm -r __kloxo");


Find and replace "__lxadmin" to "__kloxo" in:

/home/kloxo/httpd/installsoft/drupal/install.php

include_once '__kloxo/lx_myfile.php';


Re: Old versions of apps - Upgrade? [message #74784 is a reply to message #74475] Wed, 26 May 2010 11:29 Go to previous messageGo to next message
itanium is currently offline itanium  France
Messages: 10
Registered: May 2010
Member
Thank's for the tip Smile

I think it's the same for all package.
Re: Old versions of apps - Upgrade? [message #74785 is a reply to message #74784] Wed, 26 May 2010 11:48 Go to previous messageGo to next message
lego is currently offline lego  Canada
Messages: 71
Registered: June 2009
Valuable Member
itanium wrote on Wed, 26 May 2010 11:29
Thank's for the tip Smile

I think it's the same for all package.


You're very welcome, and yes, it's pretty much the same.. I'm just trying to get the ball rolling so more people will hopefully participate and contribute into developing Installapp.

There seems to be a lot of demand for this feature, but there does not seem to be too much progress.


Re: Old versions of apps - Upgrade? [message #74786 is a reply to message #74475] Wed, 26 May 2010 11:53 Go to previous messageGo to next message
itanium is currently offline itanium  France
Messages: 10
Registered: May 2010
Member
Quote:
but there does not seem to be too much progress.

Yes it's true.

I think it's better to start to create some new package from new source (joomla 1.0.13 -> joomla 1.5.17). Now i work for 64 bits compatibility and after i can help you Wink

[Updated on: Wed, 26 May 2010 11:54]

Report message to a moderator

Re: Old versions of apps - Upgrade? [message #74787 is a reply to message #74786] Wed, 26 May 2010 12:17 Go to previous messageGo to next message
lego is currently offline lego  Canada
Messages: 71
Registered: June 2009
Valuable Member
Updating all the packages would be great!!.. Also if anyone is interested in revamping the actual installapp script, A request to turn off "password will be emailed" feature would be good..

Unfortunately I'm not a programmer so my ability to help is very limited, but at least Wordpress is currrent!!(v 2.9.2) so I'm happy about that..

Even if we could get all the current scripts in installapp to install properly.. that would be a good start!

[Updated on: Wed, 26 May 2010 12:22]

Report message to a moderator

Re: Old versions of apps - Upgrade? [message #74819 is a reply to message #74787] Fri, 28 May 2010 10:45 Go to previous messageGo to next message
LxCenter_Danny is currently offline LxCenter_Danny  Netherlands
Messages: 2068
Registered: July 2007
Location: Netherlands
Grandmaster
LxCenter Core Team Member
LxCenter Representative

lego do you know how to use SVN ?

Want to commit the changes/updates yourself and use project.lxcenter.org to update the InstallApp issues?

For now i do the joomla also.

Danny.




LxCenter - System Operations
Re: Old versions of apps - Upgrade? [message #74823 is a reply to message #74819] Fri, 28 May 2010 15:44 Go to previous messageGo to next message
lego is currently offline lego  Canada
Messages: 71
Registered: June 2009
Valuable Member
Hi Danny, I sent you a PM..
Re: Old versions of apps - Upgrade? [message #74835 is a reply to message #74823] Sat, 29 May 2010 00:39 Go to previous messageGo to next message
lego is currently offline lego  Canada
Messages: 71
Registered: June 2009
Valuable Member
Well I have ZenCart up-dated to V1.3.9c, I changed the login info as well, so it's fully working now!
Re: Old versions of apps - Upgrade? [message #74855 is a reply to message #74835] Sun, 30 May 2010 04:56 Go to previous messageGo to next message
troylight is currently offline troylight  United States
Messages: 270
Registered: June 2009
Location: Tampa Florida - Vienna Au...
Senior Member

I can help with this Danny. Please PM me on how to help. Im not a great programmer but i do have 2 programmers that work for me.

[Updated on: Sun, 30 May 2010 04:58]

Report message to a moderator

Re: Old versions of apps - Upgrade? [message #74860 is a reply to message #74855] Sun, 30 May 2010 08:56 Go to previous messageGo to next message
LxCenter_Danny is currently offline LxCenter_Danny  Netherlands
Messages: 2068
Registered: July 2007
Location: Netherlands
Grandmaster
LxCenter Core Team Member
LxCenter Representative

troylight wrote on Sun, 30 May 2010 10:56
I can help with this Danny. Please PM me on how to help. Im not a great programmer but i do have 2 programmers that work for me.


You/they need to be familar with SVN (Subversion).
But for first time users, its looks like difficult but it is quite simple.

You can maintain one or some more apps if you dont like to to all of them.

I shall create a little tutorial for InstallApp updaters.

Be back asap here Smile




LxCenter - System Operations
Re: Old versions of apps - Upgrade? [message #74867 is a reply to message #74860] Sun, 30 May 2010 14:37 Go to previous messageGo to next message
troylight is currently offline troylight  United States
Messages: 270
Registered: June 2009
Location: Tampa Florida - Vienna Au...
Senior Member

Im checking them out now, we will work on this over the next week.
Re: Old versions of apps - Upgrade? [message #74869 is a reply to message #74867] Sun, 30 May 2010 15:38 Go to previous messageGo to next message
lego is currently offline lego  Canada
Messages: 71
Registered: June 2009
Valuable Member
Hey Troylight, good to have you on board.. just want to mention if your on windows checkout RapidSVN it's a GUI client for SVN..

also a little tutorial I found

http://www.viddler.com/explore/bvanaski/videos/12/
icon14.gif  Re: Old versions of apps - Upgrade? [message #74870 is a reply to message #74860] Sun, 30 May 2010 15:46 Go to previous messageGo to next message
webguy is currently offline webguy  United States
Messages: 45
Registered: April 2010
Location: Dallas, TX
Member
NetTuningGroup wrote on Sun, 30 May 2010 08:56


I shall create a little tutorial for InstallApp updaters.

Be back asap here Smile


I think this would be great for non-programmers who are willing to contribute to help make kloxo successful. Pretty daunting trying to understand the SVN stuff unless you deal with it all the time.

The easier the better! Nod
Re: Old versions of apps - Upgrade? [message #74872 is a reply to message #74870] Sun, 30 May 2010 16:04 Go to previous messageGo to next message
troylight is currently offline troylight  United States
Messages: 270
Registered: June 2009
Location: Tampa Florida - Vienna Au...
Senior Member

Thanks for the welcome Lego and for the info, I already use tortoise for SVN on my PC. I am currently downloading the SVN files now but as you know it takes some time.

My big one I want changed is Joomla but I see danny said he is working on it so i will start some where else.

So i ask the question as to a prioritize list as to what people want?

Re: Old versions of apps - Upgrade? [message #74877 is a reply to message #74872] Sun, 30 May 2010 22:31 Go to previous messageGo to next message
lego is currently offline lego  Canada
Messages: 71
Registered: June 2009
Valuable Member
I think when Danny mentioned he was doing Joomla he was referring to my post of updating the the changes to the SVN so that version 1.0.13.1 that is currently in installapp will at least install correctly.

So Troylight, if you are interested in updating Joomla to the latest version, that would be a great start, as I would Image Joomla is quite popular.
Re: Old versions of apps - Upgrade? [message #74880 is a reply to message #74877] Mon, 31 May 2010 00:06 Go to previous messageGo to next message
troylight is currently offline troylight  United States
Messages: 270
Registered: June 2009
Location: Tampa Florida - Vienna Au...
Senior Member

i will work on joomla then this week.
Re: Old versions of apps - Upgrade? [message #74931 is a reply to message #74880] Wed, 02 June 2010 03:42 Go to previous messageGo to next message
troylight is currently offline troylight  United States
Messages: 270
Registered: June 2009
Location: Tampa Florida - Vienna Au...
Senior Member

I have setup a test server and will start working on this tomorrow. If any one would like to help PM me and i will give you access to the test server.
Re: Old versions of apps - Upgrade? [message #74932 is a reply to message #74475] Wed, 02 June 2010 11:29 Go to previous messageGo to next message
lego is currently offline lego  Canada
Messages: 71
Registered: June 2009
Valuable Member
Oscommerce is fixed. the version in installapp is still current so no need to update, but I changed the install location from /catalog to /.

Will update the changes to SVN soon..
Re: Old versions of apps - Upgrade? [message #74939 is a reply to message #74932] Thu, 03 June 2010 01:44 Go to previous messageGo to next message
troylight is currently offline troylight  United States
Messages: 270
Registered: June 2009
Location: Tampa Florida - Vienna Au...
Senior Member

Since joomla was changed to 1.5 the install is very different and will take a few days for me to understand the install method that needs to be updated.

How do i get access to be able to upload the changes to the svn?
Re: Old versions of apps - Upgrade? [message #74948 is a reply to message #74939] Thu, 03 June 2010 22:38 Go to previous messageGo to next message
lego is currently offline lego  Canada
Messages: 71
Registered: June 2009
Valuable Member
troylight wrote on Thu, 03 June 2010 01:44
Since joomla was changed to 1.5 the install is very different and will take a few days for me to understand the install method that needs to be updated.

How do i get access to be able to upload the changes to the svn?



You would need to ask Danny to create an account for you.. but he might be kinda busy for next few days..
Re: Old versions of apps - Upgrade? [message #74949 is a reply to message #74948] Thu, 03 June 2010 22:40 Go to previous messageGo to next message
troylight is currently offline troylight  United States
Messages: 270
Registered: June 2009
Location: Tampa Florida - Vienna Au...
Senior Member

Ok I will PM him.
Re: Old versions of apps - Upgrade? [message #75152 is a reply to message #74949] Fri, 18 June 2010 09:21 Go to previous messageGo to next message
LxCenter_Danny is currently offline LxCenter_Danny  Netherlands
Messages: 2068
Registered: July 2007
Location: Netherlands
Grandmaster
LxCenter Core Team Member
LxCenter Representative

Status Tutorial: 0%

And if you or other ppl does not understand SVN, just attach the translation file as zip at http://project.lxcenter.org/ Other devs then commit them into the SVN.




LxCenter - System Operations
Re: Old versions of apps - Upgrade? [message #88299 is a reply to message #75152] Wed, 24 August 2011 11:52 Go to previous messageGo to next message
umadbro is currently offline umadbro  United Kingdom
Messages: 16
Registered: August 2011
Location: CELR
Member
Any update on thread? Many of installapp apps are old versions e.g drupal 5 when latest is 7
Re: Old versions of apps - Upgrade? [message #94014 is a reply to message #88299] Wed, 11 January 2012 19:19 Go to previous message
adi1942 is currently offline adi1942  Romania
Messages: 19
Registered: May 2011
Location: ROMANIA
Member

Any update for Joomla 1.5 or 1.7 was made?or is ready ?
Previous Topic:Disable and Remove installapp for real
Next Topic:Call to undefined function execinstallappphp()
Goto Forum:
  


Current Time: Sun May 19 19:39:43 EDT 2013

Total time taken to generate the page: 0.01692 seconds
.:: Contact :: Home :: Privacy ::.

Click here to lend your support to: LxCenter and make a donation at www.pledgie.com !

Powered by: FUDforum 3.0.2.
Copyright ©2001-2010 FUDforum Bulletin Board Software