Has anyone updated this? It appears that GA has changed so much that the script isn't working correctly anymore
Plus using the Tracker ID instead of the profile ID:
The Profile ID location is in the URL when you're logged in:
For the NEW VERSION…
Found what the issue is. It's forcing:
WHERE 'active' = 'yes'
but since the active column isn't enum, it's tinyint for 1 or 0.
I used that to minimize complications with the pre-built script I'm using, plus that worked okay in the CMS.
Perhaps th…
Yeah, that worked.
What about including js files in the module js folder?
I tried adding $vars['js'] = array('javascriptfile') but it tried adding it from the application folder.
I added ['js'] = array(); and ['css'] = array(); to the $vars array and that worked. But not sure why it's not pulling from application/views/_variables/global.php though.
Ahh, got it! (mostly), I added $vars['layout'] = 'main';
However, for some reason the $css and $js variables aren't defined still even with that code?
Though, I have full access to the Site Variables now which is awesome.
Not sure what I'm missing, I added that, now I just get either a blank page with
$this->fuel->pages->render('membership',$vars);
or the following error when I include $params (as it says in the docs):
Fatal error: Call to a member function…
Yep, that worked just fine.
BTW, the updates to the CKEditor JS has been perfect so far. Love it.
Only thing I can't wait to see is how you plan to implement the new CKEditor 4 into the front-end editing. That's so exciting!
Wish I could help, …
Though I did notice the line:
// image manipulation parameters must all be FALSE or NULL or else it will trigger the image_lib image processing
So perhaps there's a better place to put this?
I have CKEditor enabled, but was editing through the source (MarkItUp). I believe I updated the source about a month and a half ago. How long ago did you push that fix you mention?
This version is a few months old.
When I press update, the box I type in doesn't update, the database doesn't update and the text inline in the page doesn't update. And yet, as I mentioned the input box shows a checkmark and says it's updated.
I …
Cool answers... but I found my own solution while working with another CMS (had to whip up a quick site). They used layouts such as Fuel, but for some reason I didn't think of working with the layouts until I was working on this site. So what I en…
How does the controller know you're looking at it if you're pointing at mobile/contact instead of just contact which Fuel would look for the controller first normally.
Do I need to create /mobile/contact.php in the controllers folder first?
Also, i…
If I understand you correctly, just reference it as a variable directly.
ie. site variable name is contact_email ... just use $contact_email in your view