Posted: Mon Oct 16, 2006 3:48 am
It might also be worth checking what $new_include is around that block, too.
Code: Select all
echo ">>> ";
echo "pear: ";
echo S9Y_PEAR;
echo '<br />';
echo "pear path: ";
echo S9Y_PEAR_PATH;
echo " <<<";>>> pear: 1
pear path: <<<
Code: Select all
echo ">>> ";
echo "New Include Path: ";
echo $new_include;
echo '<br />';
echo "ini path: ";
echo @ini_get('include_path');
echo " ---";
echo '<br />';
echo "Old include path: ";
echo $old_include');
echo " <<<";Code: Select all
echo ">>> ";
echo "New Include Path: ";
echo $new_include;
echo '<br />';
echo "ini path: ";
echo @ini_get('include_path');
echo " ---";
echo '<br />';
echo "Old include path: ";
echo $old_include;
echo " <<<";with $serendipity['use_PEAR'] = true;>>> New Include Path: .:/usr/share/php:/usr/share/adodb:/home/noble/www/sub_blog/bundled-libs/:/home/noble/www/sub_blog/bundled-libs/Smarty/libs/:/home/noble/www/sub_blog/:
ini path: .:/usr/share/php:/usr/share/adodb:/home/noble/www/sub_blog/bundled-libs/:/home/noble/www/sub_blog/bundled-libs/Smarty/libs/:/home/noble/www/sub_blog/: ---
Old include path: .:/usr/share/php:/usr/share/adodb <<<
Same output>>> New Include Path: .:/usr/share/php:/usr/share/adodb:/home/noble/www/sub_blog/bundled-libs/:/home/noble/www/sub_blog/bundled-libs/Smarty/libs/:/home/noble/www/sub_blog/:
ini path: .:/usr/share/php:/usr/share/adodb:/home/noble/www/sub_blog/bundled-libs/:/home/noble/www/sub_blog/bundled-libs/Smarty/libs/:/home/noble/www/sub_blog/: ---
Old include path: .:/usr/share/php:/usr/share/adodb <<<
Code: Select all
echo ">>> ";
echo "use_pear: ";
echo $serendipity['use_PEAR'];
echo '<br />';
echo "---";
echo '<br />';
echo "New Include Path: ";
echo $new_include;
echo '<br />';
echo "---";
echo '<br />';
echo "ini path: ";
echo @ini_get('include_path');
echo '<br />';
echo " ---";
echo '<br />';
echo "Old include path: ";
echo $old_include;
echo '<br />';
echo " <<<";for New Include Path if serendipity saw $serendipity['use_PEAR'] as false. I want to see if serendipity is resetting that variable....:/home/noble/www/sub_blog/bundled-libs/:/home/noble/www/sub_blog/bundled-libs/Smarty/libs/:/home/noble/www/sub_blog/:/usr/share/php:/usr/share/adodb:
with setting in the config:>>> use_pear: 1
---
New Include Path: .:/usr/share/php:/usr/share/adodb:/home/noble/www/sub_blog/bundled-libs/:/home/noble/www/sub_blog/bundled-libs/Smarty/libs/:/home/noble/www/sub_blog/:
---
ini path: .:/usr/share/php:/usr/share/adodb:/home/noble/www/sub_blog/bundled-libs/:/home/noble/www/sub_blog/bundled-libs/Smarty/libs/:/home/noble/www/sub_blog/:
---
Old include path: .:/usr/share/php:/usr/share/adodb
<<<
I dont know what you are searching for, but all my hope to fix that problem is resting on your shoulders>>> use_pear:
---
New Include Path: .:/usr/share/php:/usr/share/adodb:/home/noble/www/sub_blog/bundled-libs/:/home/noble/www/sub_blog/bundled-libs/Smarty/libs/:/home/noble/www/sub_blog/:
---
ini path: .:/usr/share/php:/usr/share/adodb:/home/noble/www/sub_blog/bundled-libs/:/home/noble/www/sub_blog/bundled-libs/Smarty/libs/:/home/noble/www/sub_blog/:
---
Old include path: .:/usr/share/php:/usr/share/adodb
<<<
I dont know what you are searching for, but all my hope to fix that problem is resting on your shoulders
instead of this:.:/home/noble/www/sub_blog/bundled-libs/:/home/noble/www/sub_blog/bundled-libs/Smarty/libs/:/home/noble/www/sub_blog/:/usr/share/php:/usr/share/adodb:
And I am hoping that works... (Still kind of guessing).:/usr/share/php:/usr/share/adodb:/home/noble/www/sub_blog/bundled-libs/:/home/noble/www/sub_blog/bundled-libs/Smarty/libs/:/home/noble/www/sub_blog/:
Code: Select all
$serendipity['use_PEAR'] = 0;Code: Select all
$new_include = '.:/usr/share/php:/usr/share/adodb:/home/noble/www/sub_blog/bundled-libs/:/home/noble/www/sub_blog/bundled-libs/Smarty/libs/:/home/noble/www/sub_blog/:';Code: Select all
if (function_exists('set_include_path')) {
$use_include = @set_include_path($new_include);
} else {
$use_include = @ini_set('include_path', $new_include);
}As if you needed it. But yes, I'm watching, too. Of course, that just demonstrates the fundamental fallacy of democracy: it assumes that many people can make a better decision than any single individual.:D I'm sure other folks are watching the thread to make sure I'm doing alright...
Bwah! There have been other people with similar problems, and that's why the 'use_PEAR' variable is there. Of course, it generally indicates a poorly configured server.And yes, you seem to be the only person with this problem... :D
You are special!
that's a hard judgementjudebert wrote:Bwah! There have been other people with similar problems, and that's why the 'use_PEAR' variable is there. Of course, it generally indicates a poorly configured server.
Code: Select all
.:/home/noble/www/sub_blog/bundled-libs/:/home/noble/www/sub_blog/bundled-libs/Smarty/libs/:/home/noble/www/sub_blog/:/usr/share/php:/usr/share/adodb:
Code: Select all
$serendipity['use_PEAR'] = false;
if (!isset($serendipity['use_PEAR'])) {
$serendipity['use_PEAR'] = true;
//$serendipity['use_PEAR'] = false;
}Nevertheless - the pathes looking ok - but same problem - error from ecto using rpc calls.>>> use_pear:
---
New Include Path: /home/noble/www/sub_blog/bundled-libs/:/home/noble/www/sub_blog/bundled-libs/Smarty/libs/:/home/noble/www/sub_blog/:.:/usr/share/php:/usr/share/adodb:
---
ini path: /home/noble/www/sub_blog/bundled-libs/:/home/noble/www/sub_blog/bundled-libs/Smarty/libs/:/home/noble/www/sub_blog/:.:/usr/share/php:/usr/share/adodb:
---
Old include path: .:/usr/share/php:/usr/share/adodb
<<<
Usually if you should enter a path, you just enter "/serendipity_xmlrpc.php", because the "blog.gotchi.at" part is a hostname, not a path.gotchi wrote:sorry for waiting
so - ok - what I wanna ask first if it is correct when I set the path for blogging with any program to
blog.gotchi.at/serendipity_xmlrpc.php