Technology Tools for Ministry

Community

Web-Empowered Church User Community
All Categories > Getting Started > Installing (WEC Starter Package) > The next 1-2-3 Install error is...
Total Posts: 13 - Pages (2): [1] 2
Author: Willard Dennis
Posted: Feb 09 2008 - 06:50 PM
Subject: The next 1-2-3 Install error is...
When the 1-2-3 Install process goes to populate the MySQL db I made (wectypo3) when I click on "Import Database", I get a whole bunch of these errors:

Warning: mysql_fetch_assoc(): supplied argument is not a valid MySQL result resource in /var/www/typo3_src-4.1.5/t3lib/class.t3lib_db.php on line 995


And at the last line, one of these:

Warning: Cannot modify header information - headers already sent by (output started at /var/www/typo3_src-4.1.5/t3lib/class.t3lib_db.php:995) in /var/www/typo3_src-4.1.5/typo3/sysext/install/mod/class.tx_install.php on line 3644


What can be wrong?
Author: Willard Dennis
Posted: Feb 10 2008 - 11:23 AM
Subject: re: The next 1-2-3 Install error is...
OK, I think it's fixed now... For some reason, /tmp was only writable by root. Once I chmod'd it to 777, the errors stopped happening. Running the full TYPO3 install tool and doing the main DB compare command, it returns
The tables and fields in the current database corresponds perfectly to the database in the selected SQL-file.


So, hopefully I'm OK now.
user picture Author: Mark Stephenson
Posted: Feb 10 2008 - 01:49 PM
Subject: re: The next 1-2-3 Install error is...
Great News!

Mark
Author: Wei Hsu
Posted: Feb 21 2008 - 03:36 PM
Subject: The next 1-2-3 Install error is...
I can't run the 1-2-3- install tool. It's show following statement.
#
# Apache/PHP/Drupal settings:
#

# Protect files and directories from prying eyes.
<FilesMatch ".(engine|inc|info|install|module|profile|po|sh|.*sql|theme|tpl(.php)?|xtmpl)$|^(code-style.pl|Entries.*|Repository|Root|Tag|Template)$">
Order allow,deny
</FilesMatch>

# Don't show directory listings for URLs which map to a directory.
Options -Indexes

# Follow symbolic links in this directory.
Options +FollowSymLinks

# Customized error messages.
ErrorDocument 404 /index.php

# Set the default handler.
DirectoryIndex index.php

# Override PHP settings. More in sites/default/settings.php
# but the following cannot be changed at runtime.

# PHP 4, Apache 1.
<IfModule mod_php4.c>
php_value magic_quotes_gpc 0
php_value register_globals 0
php_value session.auto_start 0
php_value mbstring.http_input pass
php_value mbstring.http_output pass
php_value mbstring.encoding_translation 0
</IfModule>

# PHP 4, Apache 2.
<IfModule sapi_apache2.c>
php_value magic_quotes_gpc 0
php_value register_globals 0
php_value session.auto_start 0
php_value mbstring.http_input pass
php_value mbstring.http_output pass
php_value mbstring.encoding_translation 0
</IfModule>

# PHP 5, Apache 1 and 2.
<IfModule mod_php5.c>
php_value magic_quotes_gpc 0
php_value register_globals 0
php_value session.auto_start 0
php_value mbstring.http_input pass
php_value mbstring.http_output pass
php_value mbstring.encoding_translation 0
</IfModule>

# Requires mod_expires to be enabled.
<IfModule mod_expires.c>
# Enable expirations.
ExpiresActive On
# Cache all files for 2 weeks after access (A).
ExpiresDefault A1209600
# Do not cache dynamically generated pages.
ExpiresByType text/html A1
</IfModule>

# Various rewrite rules.
<IfModule mod_rewrite.c>
RewriteEngine on

# If your site can be accessed both with and without the 'www.' prefix, you
# can use one of the following settings to redirect users to your preferred
# URL, either WITH or WITHOUT the 'www.' prefix. Choose ONLY one option:
#
# To redirect all users to access the site WITH the 'www.' prefix,
# (http://example.com/... will be redirected to http://www.example.com/...)
# adapt and uncomment the following:
# RewriteCond %{HTTP_HOST} ^example.com$ [NC]
# RewriteRule ^(.*)$ http://www.example.com/$1 [L,R=301]
#
# To redirect all users to access the site WITHOUT the 'www.' prefix,
# (http://www.example.com/... will be redirected to http://example.com/...)
# adapt and uncomment the following:
# RewriteCond %{HTTP_HOST} ^www.example.com$ [NC]
# RewriteRule ^(.*)$ http://example.com/$1 [L,R=301]

# Modify the RewriteBase if you are using Drupal in a subdirectory and
# the rewrite rules are not working properly.
#RewriteBase /drupal

# Rewrite old-style URLs of the form 'node.php?id=x'.
#RewriteCond %{REQUEST_FILENAME} !-f
#RewriteCond %{REQUEST_FILENAME} !-d
#RewriteCond %{QUERY_STRING} ^id=([^&]+)$
#RewriteRule node.php index.php?q=node/view/%1 [L]

# Rewrite old-style URLs of the form 'module.php?mod=x'.
#RewriteCond %{REQUEST_FILENAME} !-f
#RewriteCond %{REQUEST_FILENAME} !-d
#RewriteCond %{QUERY_STRING} ^mod=([^&]+)$
#RewriteRule module.php index.php?q=%1 [L]

# Rewrite current-style URLs of the form 'index.php?q=x'.
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php?q=$1 [L,QSA]
</IfModule>

# $Id: .htaccess,v 1.81.2.3 2007/09/21 12:24:22 drumm Exp $

user picture Author: Mark Stephenson
Posted: Feb 21 2008 - 04:17 PM
Subject: re: The next 1-2-3 Install error is...
Wei,

This appears to be the content of your .htaccess file. What error do you get when you try to run the installer?

In Him,
Mark
Author: Wei Hsu
Posted: Feb 21 2008 - 04:39 PM
Subject: re: The next 1-2-3 Install error is...
I finished database setup and do the next step is enabling the 1-2-3- install tool. I rename typo3/install/index.php to index.typo3, and rename index.wec to index.php. And using browser to run 1-2-3 install, but failed.
user picture Author: Mark Stephenson
Posted: Feb 21 2008 - 05:02 PM
Subject: re: re: The next 1-2-3 Install error is...
Wei Hsu wrote:
I finished database setup and do the next step is enabling the 1-2-3- install tool. I rename typo3/install/index.php to index.typo3, and rename index.wec to index.php. And using browser to run 1-2-3 install, but failed.


Wei,

When you went to http://yourdomainhere.org/typo3/install/index.php and it fails, do you see any sort of error message or other indicator of what might be wrong?

In Him,
Mark
Author: Wei Hsu
Posted: Feb 21 2008 - 06:00 PM
Subject: re: The next 1-2-3 Install error is...
Hi Mark,

It's still not working. Just like my first message. Do I restart the whole program?
Author: Wei Hsu
Posted: Feb 21 2008 - 06:12 PM
Subject: re: The next 1-2-3 Install error is...
Hi Mark,

It's still not working. Just like my first message. Do I restart the whole program?
user picture Author: Mark Stephenson
Posted: Feb 21 2008 - 07:27 PM
Subject: re: The next 1-2-3 Install error is...
Wei,

Can you send me a link to the install tool so I can see what is happening? You can post here or send me an e-mail (click on my name in the header above to get my e-mail).

In Him,
Mark
Total Posts: 13 - Pages (2): [1] 2
You must login to post a message to this conference.