Difference between revisions of "Errors/1001"

From Joomla! Documentation

m (→‎Occurrences: clean up)
 
Line 22: Line 22:
  
 
__notoc__
 
__notoc__
 +
 +
<noinclude>[[Category:Unknown categorisation]]</noinclude>

Latest revision as of 10:12, 16 March 2013

Message[edit]

Failed to create data load adapter "%s"

Source[edit]

Package: Joomla.Framework
SubPackage: JBackupSQL

Causes[edit]

This can happen when the data load system is trying to load an adapter that doesn't exist or is unavailable on the filesystem or if the file exists however the appropriate class name does not.

Solutions[edit]

Data loader adapters are stored in the "/libraries/joomla/database/loader" folder, so if the file is not located there either an invalid adapter has been requested (via JDataLoad::getInstance) or the file exists however an invalid class name has been specified.

If the file doesn't exist, review the code that triggered the issue in question and validate that it is requesting an appropriate adapter. If it is requesting the appropriate adapter then ensure that the adapter has been installed onto the target site.

If the file does exist, open the file up and validate that it is using the correct naming convention. Data load adapters use the prefix "JDataLoader" followed by the name of the file.

Occurrences[edit]

  • /libraries/joomla/backup/adapters/sql.php
    • Class: JBackupSQL
    • Methods: restore