Dezinerfolio

cURL issue

Getting the following error message:

Invalid cURL response.
We expected 'true' from the url : http://utahbookers.com/dfg/api/rest/test_curl

cURL is enabled on my server:

cURL support enabled
cURL Information libcurl/7.15.3 OpenSSL/0.9.7a zlib/1.2.3

 

Gallery is installed at www.utahbookers.com/dfg

PHP info: http://www.utahbookers.com/phptest.php

Status: 
New

Comments

Anonymous's picture

I try all the solution that in the forum give, but still don't work.
I have ultimahost.net and I have php on IIS.
How can I fix the curl issue?

Anonymous
Wed, 05/13/2009 - 00:10
Anonymous's picture

We need to enable the mod_rewrite module in Apache for this error to go! Just go to your Apache's httpd.conf file and uncomment the below line:
#LoadModule rewrite_module modules/mod_rewrite.so
to make it look like:
LoadModule rewrite_module modules/mod_rewrite.so

./.rc

Anonymous
Fri, 04/10/2009 - 01:09
Anonymous's picture

tnx for the info. was able to run it.
RewriteBase / (directoryname)

Anonymous
Tue, 04/07/2009 - 14:14
Anonymous's picture

I had the same Problem:
I SOLVED it by adding a "?" between "index.php" and "/$1".
THAT's all.
The line looks like this then:
----> RewriteRule ^(.*)$ index.php?/$1 [L]
the other stuff is untouched.

Anonymous
Wed, 04/01/2009 - 01:13
Anonymous's picture

I have the same error problem, but I on Windows IIS.
So I have also installed ISAPI_rewrtite is the same as mod-rewrite for apache.
Somebody can help me to solve the cURL problem ?

Many thanks
Neo

Anonymous
Wed, 03/18/2009 - 17:39
Anonymous's picture

After giving up hope for over a month,I just came back to the gallery, did everything from scratch, and got this same error - after reading this thread I got it to work.

Like Anonymous stated above, replace the following lines in the appropriate place in the given .htaccess:

RewriteEngine On
RewriteBase /dfg
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.+)$ index.php?/$1 [L]

Worked like a charm.

Anonymous
Mon, 03/09/2009 - 10:30
Anonymous's picture

I never would have caught that! Thanks for the tip!!

Ashlee

Anonymous
Sat, 03/28/2009 - 23:40
Derek's picture

Does this mean that you have your installation in the /dfg subdirectory?

Thu, 03/19/2009 - 01:27
photo's picture

The real DIFFERENCE seems to be switching the * in this line:
RewriteRule ^(.*)$ index.php/$1 [L]

to the + that you used here:
RewriteRule ^(.+)$ index.php?/$1 [L]

Sadly, that does nothing for me (actually, the page won't load at all when I do that).

So can anyone out there actually explain what this function is doing or are we all just trying to copy other peoples text files in the hopes of finding a magic combination?

Mon, 03/16/2009 - 22:22
Anonymous's picture

Im having exactly the same problem. When someone comes around with a solution I hope he shares it here.

Anonymous
Fri, 02/27/2009 - 03:38

Post new comment