By jdevelop on
[Drupal 6]
What works?
Nothing
What doesn't?
installation...
Error
Access forbidden!
You don't have permission to access the requested directory. There is either no index document or the directory is read-protected.
If you think this is a server error, please contact the webmaster.
Error 403
localhost
Tue Jul 13 13:02:35 2010
Apache/2.2.14 (Unix) DAV/2 mod_ssl/2.2.14 OpenSSL/0.9.8l PHP/5.3.1 mod_apreq2-20090110/2.7.1 mod_perl/2.0.4 Perl/v5.10.1
Comments
File permissions set properly!!
[Drupal 7]
What works?
Installation Steps till database input form.
What doesn't?
Connection to database.
Error
* Warning: PDO::__construct(): [2002] Invalid argument (trying to connect via unix://) in DatabaseConnection->__construct() (line 286 of /opt/lampp/htdocs/drupal/drupal7/includes/database/database.inc).
*
In order for Drupal to work, and to continue with the installation process, you must resolve all issues reported below. For more help with configuring your database server, see the installation handbook. If you are unsure what any of this means you should probably contact your hosting provider.
Failed to connect to your MySQL database server. MySQL reports the following message: SQLSTATE[HY000] [2002] Invalid argument.
o Are you sure you have the correct username and password?
o Are you sure that you have typed the correct database hostname?
o Are you sure that the database server is running?
For more help, see the installation handbook. If you are unsure what these terms mean you should probably contact your hosting provider.
Comments
Everything is configured properly.
Need urgent help!!
Comments
Help!! drupal on ubuntu 10.04 with xampp 1.7.3a
drupal 6 error solved by referring
Function ereg() is deprecated in drupal-6.13\includes\file.inc on line 895
open the file.inc in a good text editor other than notepad, go to the line number 895 to see the following line. Then comment the line and in the next line type the replaced code. this will solve the instalation issues and also most of other issues related to the same issue.
Change
elseif ($depth >= $min_depth && ereg($mask, $file)) {
to
elseif ($depth >= $min_depth && mb_ereg($mask, $file)) {
drupal 7 problem solved by using sqll lite... I still wanna install it on mysql rather than the sql lite!!! please help!!!
From this:
From this: http://drupal.org/node/582646#comment-3162864
"Had the same issue with xampp linux - SOLVED it a different way
Posted by mattcbaker on July 4, 2010 at 5:22pm
...And so having edited:
/opt/lampp/etc/php.ini
And changed:
pdo_mysql.default_socket=
to:
pdo_mysql.default_socket=/opt/lampp/var/mysql/mysql.sock
And restarted xampp, the installation proceeded, with the database host still set to its default of 'localhost'.
xampp: 1.7.3a
drupal: 7.0-alpha5
Cheers,
Matt.
"