jDiction Forum

Please login or register.

Login with username, password and session length
Advanced search  

News:

jDiction 2.2.0 released. http://jdiction.org/downloads

Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.

Messages - Harald Leithner

Pages: 1 ... 107 108 [109]
1621
Install & Configure jDiction / Re: error after installation
« on: August 16, 2012, 09:35:25 am »
Hi,
please send me a login and I will see what I can do.
But a white page seams too lees error reporting.


1622
Install & Configure jDiction / Re: error after installation
« on: August 13, 2012, 09:20:56 am »
Hi Steffen,

please could you check that you activated the plugin and the database driver?

Also check if that the file JOOMLA_BASE/library/jdiction/jdiction exists.

If the lib does not exists add write permissions to the library directory and reinstall jdiction.

Hope fully this fixes the problem.

Harald

1623
Install & Configure jDiction / Re: Problem with jdiction_mysqli
« on: August 09, 2012, 09:43:08 pm »
The upcoming version has many performance improvements
and one side effect of this is that query that don't need to be translated don't get touched.

if you like to be a beta tester of the new version you could download the attachment of the post but please backup your data!!!!

Once again this version is totally untested, only used in a site that I'm developing atm.

1624
Install & Configure jDiction / Re: Problem in other language
« on: July 20, 2012, 12:46:10 am »
Sorry, I didn't got a modification.

I checked your installation and it seams a file permission problem, the installation process needs write access to JPATH_SITE/libraries/joomla/database/database

it installs 2 files into this directory:
jddbproxy.install.php
jdiction_mysqli.php

You could them to the location or change the permissions for this directory so the webserver could write to it.
The files are in the pkg_jdiction.zip->file_jddbproxy.zip

I was not able to change the permissions...

1625
Install & Configure jDiction / Re: Problem in other language
« on: July 17, 2012, 10:09:20 pm »
Please send me a PM.

1626
Install & Configure jDiction / Re: Problem in other language
« on: July 16, 2012, 06:26:23 pm »

1627
General Questions / Re: Estonian translation of jDiction
« on: June 26, 2012, 12:18:20 pm »
Thx, I added it to the download section and will integrate it into the next release.

1628
General Questions / Re: Breaks in 2.5.6
« on: June 26, 2012, 12:03:20 am »
So I fixed the problem and released a new Version, atm not only for download from the website.
Autoupdate will follow.

1629
General Questions / Re: Breaks in 2.5.6
« on: June 24, 2012, 12:28:11 pm »
Thx for the info, I was a bit scared on testing 2.5.6 because I read the Joomla Bugtracker and it was full with problems ;-)

So I found out that the problem is that the Joomla Core renamed the JDatabase::query function to JDatabase::execute so the translation could not intercept the query.

I will release a new version tomorrow, when I'm back at the office.

If you are interested to fix the problem your self you have to change the query() function in libraries/jdiction/database/jddatabase.php at line 388 to:
Code: [Select]
        public function execute() {

                // Check if we want and are ready to translate this query
                if (($this->jd_translate and $this->jd->getStatus())
                                // We only translate SELECT queries atm
                                and (strtoupper(substr(ltrim($this->sql), 0, 6)) == 'SELECT')) {

                        $origsql = $this->sql;
                        $origlimit = $this->limit;
                        $origoffset = $this->offset;
                        $sql = $this->addJoinKeys((string) $origsql);
                        $this->limit = $origlimit;
                        $this->offset = $origoffset;
                        $this->sql = $sql;
                        try {
                                parent::execute();
                                //restore original query
                                $this->sql = $origsql;
                        } catch (JDatabaseException $e) {
                                // there was a Problem with the query so we fallback to the unmodified
                                // version and try again
                                $this->sql = $origsql;
                                parent::execute();
                        }
                } else {
                        parent::execute();
                }

                if ($this->jd_translate || !$this->jd->getStatus()) {
                        $this->collectTranslationTables();
                }
                return $this->cursor;
        }
This will fail on version older then 2.5.5 I think

1630
General Questions / Re: Module Flags
« on: June 12, 2012, 09:23:18 pm »
Thx I will put it on the todolist.

1631
Install & Configure jDiction / Re: Problem in other language
« on: June 08, 2012, 10:51:44 pm »
Hi,

did you activated the jdiction plugin and changed your database driver to jdiction_mysqli?


1632
General Questions / Welcome to jDiction Forum
« on: May 13, 2012, 07:17:14 pm »
Please post your questions and help other people to solve there problems if you can.

Pages: 1 ... 107 108 [109]