full error

Found a bug? Tell us!!
depala
Regular
Posts: 20
Joined: Wed Jan 10, 2007 7:11 pm

Post by depala »

I have more than 3 "$path" on my files.

exemple:

$path = $serendipity['serendipityPath'];

($path . $file);

($path . $file, 'w');

($path . $file, 0700);

$path = array();

$path = array_merge

($path, explode(PATH_SEPARATOR, $_SERVER['PATH'])):

$path as $dir)


..............


:roll:
garvinhicking
Core Developer
Posts: 30022
Joined: Tue Sep 16, 2003 9:45 pm
Location: Cologne, Germany
Contact:

Post by garvinhicking »

Hi!

In the include/functions_installer.inc.php you should find those three lines:

Code: Select all

$path[] = '/usr/X11R6/bin';
$path[] = '/usr/bin';
$path[] = '/usr/local/bin';
(at around line 238). Remove those!

Regards,
Garvin
# Garvin Hicking (s9y Developer)
# Did I help you? Consider making me happy: http://wishes.garv.in/
# or use my PayPal account "paypal {at} supergarv (dot) de"
# My "other" hobby: http://flickr.garv.in/
depala
Regular
Posts: 20
Joined: Wed Jan 10, 2007 7:11 pm

Post by depala »

i have already remove this code :wink:
garvinhicking
Core Developer
Posts: 30022
Joined: Tue Sep 16, 2003 9:45 pm
Location: Cologne, Germany
Contact:

Post by garvinhicking »

Hi!

When you try to install s9y, did you choose the expert installation? If yes, please select to disable ImageMagick!

Then it should work with your removed code, as there will be no reference to /usr/local/sbin anymore.

HTH,
Garvin
# Garvin Hicking (s9y Developer)
# Did I help you? Consider making me happy: http://wishes.garv.in/
# or use my PayPal account "paypal {at} supergarv (dot) de"
# My "other" hobby: http://flickr.garv.in/
depala
Regular
Posts: 20
Joined: Wed Jan 10, 2007 7:11 pm

Post by depala »

How I makes for the instaler imageMagick?
garvinhicking
Core Developer
Posts: 30022
Joined: Tue Sep 16, 2003 9:45 pm
Location: Cologne, Germany
Contact:

Post by garvinhicking »

Hi!

What do you mean? If you choose "Expert installation" in the Serendipity installation, you can set an option whether to use ImageMagick. Set that option to "No".

Best regards,
Garvin
# Garvin Hicking (s9y Developer)
# Did I help you? Consider making me happy: http://wishes.garv.in/
# or use my PayPal account "paypal {at} supergarv (dot) de"
# My "other" hobby: http://flickr.garv.in/
depala
Regular
Posts: 20
Joined: Wed Jan 10, 2007 7:11 pm

Post by depala »

this is a capture of screen of the instalation


Image
garvinhicking
Core Developer
Posts: 30022
Joined: Tue Sep 16, 2003 9:45 pm
Location: Cologne, Germany
Contact:

Post by garvinhicking »

Hi!

Ah, now I have it.

There were you previously saw:

Code: Select all

$path[] = '/usr/X11R6/bin';
$path[] = '/usr/bin';
$path[] = '/usr/local/bin';
please now write this:

Code: Select all

$path = array();
This should finally get rid of the problem!

HTH,
Garvin
# Garvin Hicking (s9y Developer)
# Did I help you? Consider making me happy: http://wishes.garv.in/
# or use my PayPal account "paypal {at} supergarv (dot) de"
# My "other" hobby: http://flickr.garv.in/
depala
Regular
Posts: 20
Joined: Wed Jan 10, 2007 7:11 pm

Post by depala »

Ah ok thank you very much. The instalation goes now. the only problem it is which has the end of the instalation it my to redirect towards the reception of my blog but it does not find the page?
garvinhicking
Core Developer
Posts: 30022
Joined: Tue Sep 16, 2003 9:45 pm
Location: Cologne, Germany
Contact:

Post by garvinhicking »

Hi!

Which page does it try to redirect to?

Best regards,
Garvin
# Garvin Hicking (s9y Developer)
# Did I help you? Consider making me happy: http://wishes.garv.in/
# or use my PayPal account "paypal {at} supergarv (dot) de"
# My "other" hobby: http://flickr.garv.in/
depala
Regular
Posts: 20
Joined: Wed Jan 10, 2007 7:11 pm

Post by depala »

With the banner page of the blog, but this page is untraceable.
garvinhicking
Core Developer
Posts: 30022
Joined: Tue Sep 16, 2003 9:45 pm
Location: Cologne, Germany
Contact:

Post by garvinhicking »

Hi!

Which URL is it redirecting to exactly?

Best regards,
Garvin
# Garvin Hicking (s9y Developer)
# Did I help you? Consider making me happy: http://wishes.garv.in/
# or use my PayPal account "paypal {at} supergarv (dot) de"
# My "other" hobby: http://flickr.garv.in/
depala
Regular
Posts: 20
Joined: Wed Jan 10, 2007 7:11 pm

Post by depala »

garvinhicking
Core Developer
Posts: 30022
Joined: Tue Sep 16, 2003 9:45 pm
Location: Cologne, Germany
Contact:

Post by garvinhicking »

Hi!

Can you try to delete the ".htaccess" file in your main directory? It seems your web provider does not support the options inserted there.

HTH,
Garvin
# Garvin Hicking (s9y Developer)
# Did I help you? Consider making me happy: http://wishes.garv.in/
# or use my PayPal account "paypal {at} supergarv (dot) de"
# My "other" hobby: http://flickr.garv.in/
depala
Regular
Posts: 20
Joined: Wed Jan 10, 2007 7:11 pm

Post by depala »

Thank you that goes very well now. thank you very much
Post Reply