Share your Software Installer Packages.
- denully
- Closed
- Thread is marked as Resolved.
-
-
Sweet
Sent from my GT-I9300 using Tapatalk 2
-
-
if it validate i translate it to french
-
installing and testing it now.
-
-
if it validate i translate it to frenchOk, i have never used OsCommerce before... where should the admin login be at ? cause i cant seem to access it any where.
I noticed one little thing, in the packages xml folder in the install.xml you still have it set to fr_FR and not en_GB , also the description is in French.
-
for oscommerce admin page :
http://domain.tld/index.php?admin
i will be correct the xml soon as possible
-
-
ah got it, had to be Admin though, with a capital A.
Tested it and so far it seems to work great
You might want to clear the error log (/web/osCommerce/OM/Work/Logs/errors.txt) as well, it starts up with a error log full of errors:01/17/2012 18:36:42 PHP Warning: call_user_func() expects parameter 1 to be a v..
-
a few new updated packages, for Swedish, Danish and English.
Joomla
Joomla 2.5.9 - English : http://packages.kazi-networks.com/joomla_2_5_9_en.tar.gz
Joomla 2.5.9 - Danish : http://packages.kazi-networks.com/joomla_2_5_9_dk.tar.gz
Joomla 2.5.9 - Swedish : http://packages.kazi-networks.com/joomla_2_5_9_se.tar.gzWordpress
Wordpress 3.5.1 - English : http://packages.kazi-networks.com/wordpress_3_5_1_en.tar.gz
Wordpress 3.5.1 - Danish : http://packages.kazi-networks.com/wordpress_3_5_1_dk.tar.gz
Wordpress 3.5.1 - Swedish : http://packages.kazi-networks.com/wordpress_3_5_1_se.tar.gzosCommerce
osCommerce 3.0.2 - English : http://packages.kazi-networks.com/oscommerce_3_0_2_en.tar.gz ( Created by Krok )krok i have corrected the version number and cleared the error log.
-
-
OsCommerce 3.0.2 FR for validation
http://totalynet.fr/oscommerce_3_0_2_fr.tar.gz -
Hello ;
All software packages that require a database should be updated. The database hostname shouldn't be defined statically to 'localhost'. All current software packages doesn't work when we use a remote MySQL server.
Thanks.
I'll give an example of what should be changed and how ASAP.[hr]Edit:
Here, I give an example for the joomla_2_5_6_en-3.tar.gz package.
The file to modify is the installer (perl script). Below, a diff of the joomlaen script after needed modifications to allow it to work when using a remote MySQL server (option available in master):
Diff- root@imscp:/var/www/imscp/gui/data/softwares/2/joomla_2_5_6_en-3# diff -Nu joomlaen-ori joomlaen
- --- joomlaen-ori 2013-02-23 18:48:09.000000000 +0100
- +++ joomlaen 2013-02-23 18:51:09.000000000 +0100
- @@ -81,7 +81,7 @@
- $DBname = shift;
- $dbUser = shift;
- $dbPassword = shift;
- - $hostname = 'localhost';
- + $hostname = $main::cfg{'DATABASE_HOST'};
- @main::db_connect = ("DBI:mysql:$DBname:$hostname", $dbUser, $dbPassword);
- }
- @@ -146,7 +146,7 @@
- class JConfig {
- var \$sitename = '$domain_name';
- var \$dbtype = 'mysqli';
- - var \$host = 'localhost';
- + var \$host = '$main::cfg{'DATABASE_HOST'}';
- var \$user = '$sw_database_user';
- var \$password = '$sw_database_pass_clear';
- var \$db = '$sw_database';
- @@ -216,8 +216,8 @@
- close CONFIGFILE;
- #Dump import
- - sys_command("mysql -u".$sw_database_user." -p".$sw_database_pass_clear." ".$sw_database." < ./sql/sql.sql");
- -
- + sys_command("$main::cfg{'CMD_MYSQL'} -h $main::cfg{'DATABASE_HOST'} -u $sw_database_user -p$sw_database_pass_clear $sw_database < ./sql/sql.sql");
- +
- #Rename SQL-Tables
- open(SQL_TABLES,'<'.$db_tables) or die("Unable to open file: ".$db_tables);
- my @sql_table_data = <SQL_TABLES>;
- root@imscp:/var/www/imscp/gui/data/softwares/2/joomla_2_5_6_en-3#
BTW: When I see such script, I become crazy... Too many things are done without any check... Well, it's another story...
-