Login     Sign up
i can't install jcow ;(
alex gtarcia (@elmill79)
Join date: Jul 5th 2010
Community posts: 4
View Profile
Send Message

im triying yo install Jcow, but always i have the same messaje:

Unable to connect Jcow for generating the secure key.

Can somebody help me? Thanks :)

177 months ago
adil (@adil)
Join date: May 9th 2010
Community posts: 202
View Profile
Send Message

hello

what version??

does your host support these require
PHP5+ (with GD2 enabled), Mysql4+,ionCube loader
??

177 months ago
alex gtarcia (@elmill79)
Join date: Jul 5th 2010
Community posts: 4
View Profile
Send Message

Hello Adil, thanks for your quick response.

The hosting fee that I have made the installation is ByetHost, which meets all the requirements needed Jcow.

Completed the steps one by one, fabricated the databases, but I always get the same error message.

I'm using version 2.5 of Jcow. Thank you for your help.

177 months ago
adil (@adil)
Join date: May 9th 2010
Community posts: 202
View Profile
Send Message

can you (prt sc ) the page of the message please???

delete using photoshop any personal info that may apear

177 months ago
DeepX (@deepx)
Join date: Jul 6th 2010
Community posts: 7
View Profile
Send Message

Hi,

i have the same error... here is the error:

[code]
Warning: file_get_contents([url]http://[email protected]&url=http%3A%2F%2Fmydomain.com)[/url] [function.file-get-contents]: failed to open stream: HTTP request failed! HTTP/1.1 403 Forbidden in /var/www/www.mydomain.com/htdocs/install.php on line 180
[/code]

177 months ago
alex gtarcia (@elmill79)
Join date: Jul 5th 2010
Community posts: 4
View Profile
Send Message

here are:

[img]http://img39.imageshack.us/img39/3088/capturafk.jpg[/img]

[img]http://a.yfrog.com/img197/486/captura2j.jpg[/img]

thanks :)

177 months ago
Gavin Pedley (@cyberpedz)
Join date: Jul 6th 2010
Community posts: 3
View Profile
Send Message

I also get this error

177 months ago
DeepX (@deepx)
Join date: Jul 6th 2010
Community posts: 7
View Profile
Send Message

I think there is an error in the install.php
This is the code of this file (on line 180):

[code]
if (!$error && !$testing) {
$returns = file_get_contents('http://social.jcow.net/register.php?cid='.$_POST['cid'].'&email='.$_POST['email'].'&url='.urlencode($_POST['uhome']) );
$arr = explode(':',$returns);
$nid = $arr[0];
$secure_key = $arr[1];
if (!is_numeric($nid) || strlen($secure_key) != 32) {
$error = 1;
$error_msg[] = 'Unable to connect Jcow for generating the secure key.';
}
}
[/code]

Any idea?

177 months ago
Chris Ro (@hellboy)
Join date: Jul 6th 2010
Community posts: 1
View Profile
Send Message

Hi I've got the same problem.
Your server gives a 403 forbidden message when the install.php script trying to register the cid, email and url. I tried manually register in my webbrowser with the same error, it says;
Forbidden

You don't have permission to access /register.php on this server.

Additionally, a 404 Not Found error was encountered while trying to use an ErrorDocument to handle the request.

177 months ago
alex gtarcia (@elmill79)
Join date: Jul 5th 2010
Community posts: 4
View Profile
Send Message

then? any posibble solution to fix this? :(

177 months ago
Vincent T (@vincent)
Join date: Jun 18th 2010
Community posts: 298
View Profile
Send Message

Hello elmill79,
plz open your install.php with a text editor,
find and delete the following codes:
[code]
if (!$error && !$testing) {
$returns = file_get_contents('http://social.jcow.net/register.php?cid='.$_POST['cid'].'&email='.$_POST['email'].'&url='.urlencode($_POST['uhome']) );
$arr = explode(':',$returns);
$nid = $arr[0];
$secure_key = $arr[1];
if (!is_numeric($nid) || strlen($secure_key) != 32) {
$error = 1;
$error_msg[] = 'Unable to connect Jcow for generating the secure key.';
}
}
[/code]
Save and install again.

177 months ago