From: Joel U. <uck...@el...> - 2005-07-06 16:03:25
|
> Sorry for the following questions, but I am now totally confused and > I have no more ideas... > > I have an old phpwiki which runs fine. > I dumped a zip file which I now want to use with an actual phpwiki version. > > But I am actually not able to install a running wiki on my box at all. > What I have done: > > tar -xzf phpwiki.1.3.11_rc3.tar.gz in the /srv/www/htdocs > path (as root) > then chmod -R wwwrun.www phpwiki.1.3.11_rc3 > mv phpwiki.1.3.11_rc3 wiki > > I can now access via mozilla the pages with localhost/wiki > > Then I get the configuration dialog. But I am not able to store it > automaticly so I copied the page content and stored in manually > under /config/config.ini > > Why I am not able to store the configuration from web front end? > The files are accessible by wwwrun which is the user which runs the apache2 > > > After all I have no more access to any page in the wiki!!!!!! > I got only : > > /lib/DbaDatabase.php:54: Error dba_open(/tmp/wikipagedb.gdbm,w): Driver > initialization failed for handler: gdbm: Cant be writer > > But tmp is writable for all!!! > > > Now I have no more ideas. > Can you please help me to get access to the wiki? Have you checked phpinfo() to see whether your version of PHP was compiled with gdbm? |
From: Klaus R. <lts...@gm...> - 2005-07-06 17:17:17
|
Hi Joel, >Have you checked phpinfo() to see whether your version of PHP was compiled >with gdbm? > > > > > I have no idea how I can check for version of gdbm... :-( phpinfo gives : phpinfo() PHP Version => 4.3.4 System => Linux roti 2.6.4-52-default #1 Wed Apr 7 02:08:30 UTC 2004 i686 Build Date => Apr 22 2005 15:29:39 Configure Command => './configure' '--prefix=/usr' '--datadir=/usr/share/php' '--mandir=/usr/share/man' '--bindir=/usr/bin' '--libdir=/usr/share' '--includedir=/usr/include' '--sysconfdir=/etc' '--with-_lib=lib' '--with-config-file-path=/etc' '--with-exec-dir=/usr/lib/php/bin' '--disable-debug' '--enable-inline-optimization' '--enable-memory-limit' '--enable-magic-quotes' '--enable-safe-mode' '--enable-sigchild' '--disable-ctype' '--disable-session' '--without-mysql' '--disable-cli' '--without-pear' '--with-openssl' '--enable-force-cgi-redirect' '--enable-discard-path' '--enable-cli' '--with-pear' 'i586-suse-linux' Server API => Command Line Interface Virtual Directory Support => disabled Configuration File (php.ini) Path => /etc/php.ini PHP API => 20020918 PHP Extension => 20020429 Zend Extension => 20021010 Debug Build => no Thread Safety => disabled Registered PHP Streams => php, http, ftp, https, ftps, compress.bzip2, compress.zlib This program makes use of the Zend Scripting Language Engine: Zend Engine v1.3.0, Copyright (c) 1998-2003 Zend Technologies _______________________________________________________________________ Configuration PHP Core Directive => Local Value => Master Value allow_call_time_pass_reference => On => On allow_url_fopen => On => On always_populate_raw_post_data => Off => Off arg_separator.input => & => & arg_separator.output => & => & asp_tags => Off => Off auto_append_file => no value => no value auto_prepend_file => no value => no value browscap => no value => no value default_charset => no value => no value default_mimetype => text/html => text/html define_syslog_variables => Off => Off disable_classes => no value => no value disable_functions => no value => no value display_errors => On => On display_startup_errors => Off => Off doc_root => no value => no value docref_ext => no value => no value docref_root => no value => no value enable_dl => On => On error_append_string => no value => no value error_log => no value => no value error_prepend_string => no value => no value error_reporting => 2039 => 2039 expose_php => On => On extension_dir => /usr/lib/php/extensions => /usr/lib/php/extensions file_uploads => On => On gpc_order => GPC => GPC highlight.bg => #FFFFFF => #FFFFFF highlight.comment => #FF8000 => #FF8000 highlight.default => #0000BB => #0000BB highlight.html => #000000 => #000000 highlight.keyword => #007700 => #007700 highlight.string => #DD0000 => #DD0000 html_errors => Off => On ignore_repeated_errors => Off => Off ignore_repeated_source => Off => Off ignore_user_abort => Off => Off implicit_flush => On => Off include_path => .:/usr/share/php => .:/usr/share/php log_errors => Off => Off log_errors_max_len => 1024 => 1024 magic_quotes_gpc => On => On magic_quotes_runtime => Off => Off magic_quotes_sybase => Off => Off max_execution_time => 0 => 30 max_input_time => 60 => 60 memory_limit => 8M => 8M open_basedir => no value => no value output_buffering => no value => no value output_handler => no value => no value post_max_size => 8M => 8M precision => 12 => 12 register_argc_argv => On => On register_globals => Off => Off report_memleaks => On => On safe_mode => Off => Off safe_mode_exec_dir => no value => no value safe_mode_gid => Off => Off safe_mode_include_dir => no value => no value sendmail_from => no value => no value sendmail_path => /usr/sbin/sendmail -t -i => /usr/sbin/sendmail -t -i serialize_precision => 100 => 100 short_open_tag => On => On SMTP => localhost => localhost smtp_port => 25 => 25 sql.safe_mode => Off => Off track_errors => Off => Off unserialize_callback_func => no value => no value upload_max_filesize => 2M => 2M upload_tmp_dir => no value => no value user_dir => no value => no value variables_order => EGPCS => EGPCS xmlrpc_error_number => 0 => 0 xmlrpc_errors => Off => Off y2k_compliance => On => On bcmath BCMath support => enabled bz2 BZip2 Support => Enabled BZip2 Version => 1.0.2, 30-Dec-2001 calendar Calendar support => enabled ctype ctype functions => enabled curl CURL support => enabled CURL Information => libcurl/7.11.0 OpenSSL/0.9.7d ipv6 zlib/1.2.1 dba DBA support => enabled Supported handlers => gdbm ndbm cdb cdb_make inifile flatfile domxml DOM/XML => enabled DOM/XML API Version => 20020815 libxml Version => 20607 HTML Support => enabled XPath Support => enabled XPointer Support => enabled exif |
From: Reini U. <ru...@x-...> - 2005-07-07 08:51:03
|
>>Have you checked phpinfo() to see whether your version of PHP was >> compiled with gdbm? <snip> > dba > > DBA support => enabled > Supported handlers => gdbm ndbm cdb cdb_make inifile flatfile This is it. You do have the gdbm handler for dba. |
From: Klaus R. <lts...@gm...> - 2005-07-07 09:20:44
|
> > >>Have you checked phpinfo() to see whether your version of PHP was > >> compiled with gdbm? > > <snip> > > > dba > > > > DBA support => enabled > > Supported handlers => gdbm ndbm cdb cdb_make inifile flatfile > > This is it. You do have the gdbm handler for dba. > > Thanks for this answer! This tells me really nothing :-) What should I do and why the old wiki runs and how to get my old wiki to actual wiki. It is nice to discuss over gdbm dba dbx xdb ggd hgdn .... but sorry, this is nothing which helps me :-) So could you please inform me HOW to get to a working phpwiki? Thanks Klaus > > > ------------------------------------------------------- > SF.Net email is sponsored by: Discover Easy Linux Migration Strategies > >from IBM. Find simple to follow Roadmaps, straightforward articles, > informative Webcasts and more! Get everything you need to get up to > speed, fast. http://ads.osdn.com/?ad_id=7477&alloc_id=16492&op=click > _______________________________________________ > Phpwiki-talk mailing list > Php...@li... > https://lists.sourceforge.net/lists/listinfo/phpwiki-talk > -- Weitersagen: GMX DSL-Flatrates mit Tempo-Garantie! Ab 4,99 Euro/Monat: http://www.gmx.net/de/go/dsl |