detect IT
maybe you have the same problems to solve ... keep smiling ;)
Showing posts with label port. Show all posts
Showing posts with label port. Show all posts

I'm pleased to announce that the Linux 2.6 kernel has been ported to Apple's iPhone platform,


... read more
Read more...

 

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

before
$BASE_DIR = $_SERVER['DOCUMENT_ROOT'];

after
$BASE_DIR = "E:/FTP/User/www/test/";
if 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
before
$img_url = $BASE_URL.$img_path.'/'.$img_file;

after
$img_url = '/user/test.$BASE_URL.$img_path.'/'.$img_file;
good luck ;)
Read more...

 

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 71
if that seems familiar to you you have to change the gallery2 module settings in your joomla-administration (thx to joomlaportal.de)
  • Gallery 2 Path
  • Gallery 2 Url
  • Login URL
due to the Gallery2 FAQ (How can I move my gallery installation from one server to another?) a port of my local Gallery2 version would be to complex therefore i decided to re-install it on the isp-server and change the theme afterwards ...
Read more...

 

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 /

Read more...

 

joomla xampp to webserver

Posted In: , , . By kajdo

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 ...

  1. export the mysql-db to a dump-file (joomla + gallery2)
  2. import the mysql-db on the mysql-server from the isp (joomla + gallery2)
  3. transfer the directories to the isp
  4. customize the configuration.php - file
... that's the plan ... let's see what happens

issue 1 - pictures, css, js files gone!?
issue 2 - gallery2 errors
Read more...