You are not logged in.
You can post links like google.com which will be rendered as text but you will not be able to post messages that contain complete URLs like www.google.com
Thank you for your understanding!Pages: 1
Hello Everyone,
I got 2 Jobbers on my local server that running with the same config.php and database. Everything fine, so I guess that it is possible to make a multi language jobber using the subfolders on the production server.
Translate the translation.ini is not difficult but how can we use the same job categories with different names (because of the translation)?
Offline
you can do it in to ways:
1. with a different database for each language. based on $_SERVER['SERVER_NAME'] or HTTP_HOST, you would load the correct db in config.php.
2. create a "languages" table in the db, then connect every entry in the other tables (jobs, categs, etc.) with a language_id foreign key with tha languages table. then again, in config.php, determine current/active language based on SERVER_NAME or HTTP_HOST.
I'd go for #1, it's a no-brainer.
Original jobberBase author
www.filipcte.com
Offline
Pages: 1