You are not logged in. Please login or register.


Post new reply

Post new reply

Compose and post your new reply

You may use: BBCode

All fields with bold label must be completed before the form is submitted.

Required information for guests


Required information

(delete this if you are not)

Topic review (newest first)

8

Puzzling! I'm not sure how to explain the unusual sequence of steps for you, but at least it's all good now- I figure it was a fluke thing.

7

I did not have what you said on the line, so I replaced it, and went on installing it. Your installation guide seems to be little confusing to that point.

It did worked. Thank you for all of your help! ^_^

-WJS

6

Does what should be line 157 of conf.php in v1.2 look like this?

if(TRIPCODE_SECRET=="changeme") {

5

string(27) "9df2yy32231wecvb865ydfb3jui"

That is the correct code I entered.

// Site-specific tripcode generation. You never have to type this anywhere
// so make it really really long.
define("TRIPCODE_SECRET","9df2yy32231wecvb865ydfb3jui");

-WJS

4

Err, duh me. That should've been:

// Make sure the tripcode secret was set
var_dump(TRIPCODE_SECRET);exit;
...

(without the "x")

What does the line following that one read?

3

This is what it gave me.

string(16) "TRIPCODE_SECRETx"

What you think it is?

-WJS

2

Did you just happen to do a global replace of "changeme" for "XXXXX" in conf.php? At the end of a the file, there is a check that is generating this error. Usually, it compares TRIPCODE_SECRET to "changeme" but if you did a mass replace, it would check against "XXXXX" which would match and generate the error you see.

If that's not it, try putting the following var_dump call as below (again, towards the end of the file) to see what's going on with the variable:

// Make sure the tripcode secret was set
var_dump(TRIPCODE_SECRETx);exit;
...

1

Hello,

I am trying to install the Ochiba on my server, but I am having a hard time understanding to fix this:

"You must set a tripcode secret in /home/wjsimpso/public_html/supercawk/conf.php" at http://www.supercawk.com.

Here below is the example of my

// Examples (make sure to set one of these!):
#define("DB","sqlite:////path/to/sqlite/database/file");
#define("DB","pgsql://user:pass@unix(/tmp)/dbname");
#define("DB","pgsql://user:pass@hostname/dbname");
#define("DB","mysql://user:pass@unix(/var/lib/mysql/mysql.sock)/dbname");
define("DB","mysql://randomXXXX:XXXXXXXX@localhost/XXXXX_XXXXXX");

// Site-specific tripcode generation. You never have to type this anywhere
// so make it really really long.
define("TRIPCODE_SECRET","XXXXXXXXXXXXXXXXXXXXXXX");

//----- Special people
//      ADMINS can create new categories and re-order pictures
//      MODERATORS can delete images and manage bans
//      They are separate; someone who needs to do both should be placed
//      in both lists (comma-separated tripcodes). Or, if it's just one
//      person, you can define the tripcode in ADMINS and just define
//      MODERATORS, FEATURE_THROTTLE_EXCEPTIONS, FEATURE_ZIP_UPLOADERS, etc
//      as ADMINS
define("ADMINS",'XXXXXXXXXXX');
define("MODERATORS",ADMINS);

What do I need to do? Any leads?

Thanks,
WJS



Generated in 0.035 seconds (86% PHP - 14% DB) with 9 queries