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

Pages: 1 [2]
16
Install & Configure jDiction / Re: Installation not working
« on: August 27, 2013, 01:25:50 am »
I figured it out.  You have a conflict between JQuery and Mootools.  I have jQuery loaded twice on my page, once before moot0ols and once after,  I'm not really sure what is loading the first one but all I did was wrap your code that is using Mootools with the following:

// For Mootols scripts
(function($){

// set a local $ variable only available in this block as an alias
// to Mootools document.id
... here is your Mootools specific code ...

})(document.id);

This allows your Mootools to work without conflict as you localized scope of the $ variable to only mean an id selector.  Only problem is I don't know where throughout your code you use Mootools where I need to fix that.  It would be nice if you can release a patch that wraps all your Mootools code this way.  Alternatively, I can try to find out what extension I am using that is loading jQuery first but that might take some time but also leaves your code vulnerable to future extensions that might reload jQuery first.

I took away super admin access as you don't need it anymore.  But please let me know if you can release a patch or let me know where in your code you use Mootools so I can patch it myself.

Thanks
Joe

17
Install & Configure jDiction / Re: Installation not working
« on: August 26, 2013, 06:45:44 pm »
I sent you access via PM but it doesn't show up in the sent folders.  Let me know if you didn't receive it

Thanks
Joe

18
Install & Configure jDiction / Re: Installation not working
« on: August 26, 2013, 09:26:16 am »
Ok the jQuery call definitely isn't working.  I changed the value of one of the status input fields manually in the browser to 'changed' and the data saves fine.  Not sure what the issue is but does sound like a jQuery conflict.  But I haven't figured out how to fix that.  I've tried the various methods I've Googled but none seem to work.  Suggestions?

19
Install & Configure jDiction / Re: Installation not working
« on: August 26, 2013, 02:16:14 am »
Ok I've narrowed it down.  The values status are coming in as Unchanged.  In your save function the values for $langdata and $status are as follows:

$langdata = array (
  'es-ES' =>
  array (
    'title' => 'new title',
    'alias' => 'new-alias',
    'metakey' => '',
    'metadesc' => '',
    'articletext' => '',
  ),
  'idJdStore' =>
  array (
  ),
  'tags' => NULL,
)

$status = array (
  'es-ES' =>
  array (
    'title' => 'unchanged',
    'alias' => 'unchanged',
    'metakey' => 'unchanged',
    'metadesc' => 'unchanged',
    'articletext' => 'unchanged',
  ),
)


I can see that you use Javascript to change it.  The boxes are changing to Orange as I add input so the JS is working there but looks like the jQuery call isn't happening. Do you have a jQuery conflict?  If so I haven't figured out how to remove that yet.   I'll work on that unless you find something else or can tell me how to resolve this

thanks

20
Install & Configure jDiction / Re: Installation not working
« on: August 25, 2013, 09:17:36 pm »
I'm using JCE.  But I tried with no editor or Tiny MCE and it's the same, not storing.  One thing I noticed in the JDiction Check is that it says Multiple Plugins have the same loading position (0) but everything else looks good.

The permission level of the Content Language (language manager/content) are all Public.

I'll do some more digging and see if I can figure out what happens when I save. I'll open the code and do some debugging and report back.  But I need to pick a language content manager very soon and I had hope this one would work as I had heard good things.  I haven't tried the others yet though.

thanks

21
Install & Configure jDiction / Installation not working
« on: August 25, 2013, 02:22:19 am »
Hi,
I've installed the latest version of JDiction - 0.9.9.10
I'm using Joomla 3.1.5
I'm using Spanish language pack es-ES - 3.1.5.1 from Communidad Joomla

Symptoms:
1.  I see the translate flags next to content and can bring up the input pages.  But when I save, Joomla says content successfully saved but no content is saved.  I've looked in the database table _jd_store (the only one I find that I think is yours) and it has no entries.  I have set the database driver to jdiction_mysqli.

2.  When in Spanish Mode I click to a page that uses a Single Article as the content and my site goes into a never ending redirect loop between 302 and 303.  Also links to other components just don't load.   I'll try to install a different language pack using a different dialect of Spanish and see if that makes a difference.  It could be the pack I'm using.  But not sure if this should affect Symptom #1

Thanks
Joe





Pages: 1 [2]