Dezinerfolio

cURL error message

Basically everthing seems to work correct but that error message is bugging me totaly.

So i am at a lost here... any idea's out there??

  • url is loaded.  json is loaded.
  • Files that need to exist
     /.htaccess exists.  /app/config/dfg/upgrade_state.php exists.
  • Check for writable files and directories
     /resources/cache/ is writable.  /resources/images/original/ is writable.  /resources/images/large/ is writable.  /resources/images/thumbnail/ is writable.  /app/config/dfg/upgrade_state.php is writable.
  • A curl error occured while checking for clean urls.
    URL : http://www.nekoboy.nl/dfg/api/rest/test_curl
    cURL message : socket error: 111
  • Database Config is writable.

Trackback URL for this post:

http://www.dezinerfolio.com/trackback/520
Anonymous's picture

I also encountered an error just like this and I didn't knew how to solve the problem..but I just hope that fir the future the situation will be fixed and people will be fine with this.
Asigurari Ieftine

Mariah (not verified)
Mon, 03/19/2012 - 19:35
Anonymous's picture

A person essentially assist to make severely posts I
would state. This is the first time I frequented your website page and thus far?
I amazed with the analysis you made to make this actual put
up amazing. Wonderful process!

asigurari emag (not verified)
Thu, 11/29/2012 - 03:21
Anonymous's picture

====================SOLUÇÃO=======================

Depois de horas de pesquisas e testes, consegui juntar algumas dicas e consegui

fazer a galeria voltar a funcionar em um servidor no qual já estava instalado e

consegui instalar e outro (ambos com PHP 5.3)

Segue os aquivos que precisei alterar: (instalado na pasta /gallery)

root/lib/ci/libraries/Loader.php
-----------------------------------------------------------------------------------

----------------
at line 249 replaced =& to = since operator =& is deprecated and now you can use =

instead
$CI->dbutil =& new $class();
with
$CI->dbutil = new $class();
- probably the best thing would be to simple replace all =& with = did that and so

far it works...
====================================

root/lib/ci/libraries/URI.php
------------------------------------------------------
at line 190 replaced command:
if ( ! preg_match("|^[".preg_quote($this->config->item('permitted_uri_chars'))."]+

$|i", $str))
with
if ( ! preg_match("|^[".($this->config->item('permitted_uri_chars'))."]+$|i",

rawurlencode($str)))
====================================

root/lib/ci/codeigniter/CodeIgniter.php
------------------------------------------------------
at line 60 replaced command
set_magic_quotes_runtime(0); // Kill magic quotes
with
ini_set('magic_quotes_runtime', 0);
====================================

root/lib/ci/codeigniter/Common.php
------------------------------------------------------
at line 123 replaced command

$objects[$class] =& new $name();
with
$objects[$class] = new $name();

at line 129 replaced command

$objects[$class] =& new $name();
with
$objects[$class] = new $name();
====================================

root/lib/ci/database/DB.php
------------------------------------------------------
at line 133 replaced command

$DB =& new $driver($params);
with
$DB = new $driver($params);
====================================

root/app/config/config.php
------------------------------------------------------
at line 129 replaced command:
$config['permitted_uri_chars'] = 'a-z 0-9~%.:_\-';
with:
$config['permitted_uri_chars'] = 'a-z 0-9~%\.\:_\-';

rafaelspfonseca (not verified)
Mon, 03/19/2012 - 22:39
Anonymous's picture

Add you for skillful obligation segmentation. Where accessorial could anyone get that contented of assembling in specified a over way of instauration ? I nookie a significative inner stop, and I am on the embody for oft noesis.
DaycareGrants

anikolien (not verified)
Sat, 03/24/2012 - 15:20
Anonymous's picture

The answer that seems right is the one which is provided by Mr. Rafaelspfonseca. I think this will definiately work to resolve the errors.
Regards,
Lag Switch

jimmymate (not verified)
Sat, 02/16/2013 - 12:07