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

Pages: [1]
1
Install & Configure jDiction / Re: fatal error
« on: September 10, 2014, 08:14:50 pm »
When I wanted to remove jdiction, I just went to manage extentions, searched for everything that had 'jdiction' in its name, and removed them.
From there on nothing worked anymore.
maybe there was something deleted that should not have been? how can I find out what?

2
Install & Configure jDiction / Re: fatal error
« on: September 10, 2014, 08:13:00 pm »
open the configure.php and remove all spaces before <? And save again

there were no spaces in front of that.. see attachment

3
Install & Configure jDiction / Re: fatal error
« on: September 10, 2014, 08:11:35 pm »
in the extentions table there is nothing to be found containing '%jdiction%'

4
Install & Configure jDiction / Re: fatal error
« on: September 10, 2014, 08:05:50 pm »
Thank you for your fast reply.

In my configuration.php file I've searched for everything that contains 'db' in it and the results are:
public $dbtype = 'mysqli';
public $db = 'tattooseminars_';
public $dbprefix = 'ohit5_';


checking database tables right now..

5
Install & Configure jDiction / Re: fatal error
« on: September 10, 2014, 07:35:29 pm »
This is a part of the code from the file the fatal error mentions. I have put line 439 in bold:

   protected function bindData($parent, $data)
   {
      // Ensure the input data is an array.
      if (is_object($data))
      {
         $data = get_object_vars($data);
      }
      else
      {
         $data = (array) $data;
      }

      foreach ($data as $k => $v)
      {
         if ((is_array($v) && JArrayHelper::isAssociative($v)) || is_object($v))
         {
            $parent->$k = new stdClass;
            $this->bindData($parent->$k, $v);
         }
         else
         {
            $parent->$k = $v;
         }
      }
   }

6
Install & Configure jDiction / fatal error
« on: September 10, 2014, 07:29:13 pm »
Hi There,

I tried to isntall jDiction and than uninstall it again, but now I can not acces my site.
Not in front or at backend.
Only php error message that says:
Fatal error: Cannot access property started with '\0' in /customers/b/2/3/tattooseminars.be/httpd.www/libraries/joomla/registry/registry.php on line 439

Can you  help me?
Thanks,
sandy

Pages: [1]