I'm pleased to announce that the Linux 2.6 kernel has been ported to Apple's iPhone platform,
... read more
Read more...
I'm pleased to announce that the Linux 2.6 kernel has been ported to Apple's iPhone platform,
change the config.php.ini file in \joomla\mambots\editors\tmedit\popups\ImageManager\ ...
either the entry for $BASE_ROOT or the entry for $BASE_DIR is not correct ...
i had to change the $BASE_DIR because it seems like $_SERVER['DOCUMENT_ROOT']; doesn't really return the correct directory
beforeif your user-directory isn't the same like the $_SERVER['DOCUMENT_ROOT']; you probably also have to change the show_image - function in image.php file (same directory) to make everything working
$BASE_DIR = $_SERVER['DOCUMENT_ROOT'];
after
$BASE_DIR = "E:/FTP/User/www/test/";
beforegood luck ;)
$img_url = $BASE_URL.$img_path.'/'.$img_file;
after
$img_url = '/user/test.$BASE_URL.$img_path.'/'.$img_file;
after the port of my joomla site i had the same problem with the g2 picturebridge like i had when i implemented it the first time ... the user synchronization just stopped without any further progress and without any error message
if you have the same problem try to setup all of the users you see in the user management dialog of the gallery2 component in gallery2 manually - then try to do the sync - now the problem should be gone ...
Read more...
Fatal error: Undefined class name 'galleryembed' in xyz\mod_g2bridge_image.php on line 71if that seems familiar to you you have to change the gallery2 module settings in your joomla-administration (thx to joomlaportal.de)
after porting a joomla-site from my local computer to a isp-server i had the problem, that all the pictures css and js files seemed to be gone ... if you have the same problem you should check your configuration.php file in the root joomla-directory ...
take care that $mosConfig_live_site entry is correct (thx to joomlaportal.de) ...
here are the changes you have to do in the configuration.php file (thx to joomlaportal.de)
$mosConfig_host = 'xyz'; // database-server ('localhost')
$mosConfig_user = 'xyz'; // database-user
$mosConfig_password = 'xyz'; // database-password
$mosConfig_db = 'xyz'; // database-name
$mosConfig_absolute_path = '/xyz'; // absolute path without ending /
$mosConfig_live_site = 'http://www.domain.tld'; // domain without ending /
$mosConfig_cachepath = '/xyz/cache'; // absolute path to the cache-directory without ending /
recently i made a homepage for a friend of mine using joomla as a cms and the powerful gallery2 image gallery ... right now the site is working on a xampp-based environment on my computer and i have to port it onto a web server (ISP)
i don't have to be a prophet to know that there will be some problems during this procedure ...
here is the way i want to do the port ...