Elxis CMS Forum

Extensions => Components => Topic started by: mmarch on December 11, 2007, 17:30:52

Title: Problems with 3d party
Post by: mmarch on December 11, 2007, 17:30:52
Installed few 3d party modules and components on WinXP+XAMPP localhost, everything worked fine, shoved my customer everything on localhost, he was happy. After that today i uploaded all content with modules and component to C-Panel host and was surprised - it's not working. I searched all day for sollution and contacted my hosting provider, he send me error log in which was stated that i have a problem with php.ini and adviced me that i should check why the config.php is being used for the variable passing in the script. Of course i didn't found anything related to this in config.php (maybue he meaned another configuration.php?).
All components and modules was just for one - flash galeries or related to that. I istalled few another components and modules and problem was the same - 0.
Then i looked in files permissions and found that modules and components was with 644 perm, i changed to 755 and i get module working, did same thing for component and nothing.

What you can advice me???
Title: Re: Problems with 3d party
Post by: Ivan Trebješanin on December 11, 2007, 18:20:15
That is no problem at all... (I presume that you have imported DB to hosting server)
Go to your root site dir (public_html, www, or whatever), find configuration.php, and change the following:

$mosConfig_absolute_path = '/home/YourUsername/public_html';
$mosConfig_live_site = 'http://www.YourDomain.com';
$mosConfig_cachepath = '/home/YourUsername/public_html/cache';

If you are using FTP change this also:
$mosConfig_ftp_host = 'ftp.YourDomain.org';
$mosConfig_ftp_user = 'YourUsername';
$mosConfig_ftp_pass = 'YourPassword';
$mosConfig_ftp_port = '21';
$mosConfig_ftp_root = '/public_html'; (most probably, might be www, or something)

Hope you'll get trough...