Installing on a 1and1 server

PajiAlfa

Joined: 2013-01-31
Posts: 1
Posted: Thu, 2013-01-31 23:23

I followed the following guide:

http://codex.galleryproject.org/Gallery3:Host_specific_issues#1_.26_1

And I get the following errors:

When trying to upload an image from the index.

Quote:
Can't find ffmpeg on your system. Movie uploading disabled. Help!

Quote:
Can't find ffmpeg on your system. Movie uploading disabled. Help!

And in the administration panel:

Quote:

SYSPATH/core/Kohana.php[ 810 ]
805 if ($found === NULL) 806 { 807 if ($required === TRUE) 808 { 809 // If the file is required, throw an exception 810 throw new Kohana_Exception('The requested :resource:, :file:, could not be found', array(':resource:' => __($directory), ':file:' =>$filename)); 811 } 812 else 813 { 814 // Nothing was found, return FALSE 815 $found = FALSE;

SYSPATH/libraries/View.php[ 83 ] » Kohana_Core::find_file( arguments )

SYSPATH/libraries/View.php[ 49 ] » View_Core->set_filename( arguments )

MODPATH/gallery/libraries/MY_View.php[ 62 ] » View_Core->__construct( arguments )

MODPATH/gallery/libraries/Admin_View.php[ 30 ] » View->__construct( arguments )

MODPATH/gallery/controllers/admin_dashboard.php[ 22 ] » Admin_View_Core->__construct( arguments )

{PHP internal call} » Admin_Dashboard_Controller->index()

MODPATH/gallery/controllers/admin.php[ 62 ] » call_user_func_array( arguments )

{PHP internal call} » Admin_Controller->__call( arguments )

SYSPATH/core/Kohana.php[ 331 ] » ReflectionMethod->invokeArgs( arguments )

{PHP internal call} » Kohana_Core::instance( arguments )

SYSPATH/core/Event.php[ 208 ] » call_user_func_array( arguments )

APPPATH/Bootstrap.php[ 67 ] » Event_Core::run( arguments )

DOCROOT/index.php[ 113 ] » require( arguments )

If you need more details consultenme and give them access to that look.

My httacess:

Quote:
Options -Multiviews
RewriteEngine On
AddType x-mapp-php5 .php

<IfModule mod_php5.c>
php_flag short_open_tag On
php_flag magic_quotes_gpc Off
php_flag magic_quotes_sybase Off
php_flag magic_quotes_runtime Off
php_flag register_globals Off
php_flag session.auto_start Off
php_flag suhosin.session.encrypt Off
php_value upload_max_filesize 20M
php_value post_max_size 100M
</IfModule>
<IfModule mod_security.c>
SecFilterEngine Off
SecFilterScanPOST Off
</IfModule>

# <FilesMatch "(\.(class|fla|gitignore|inc|ini|sql|txt)|(README|LICENSE|.build_number))$">
# Order deny,allow
# Deny from all
# </FilesMatch>
# <FilesMatch "robots.txt">
# Order allow,deny
# Allow from all
# </FilesMatch>
<FilesMatch ".album.jpg">
Order deny,allow
</FilesMatch>
# <IfModule mod_expires.c>
# ExpiresActive On
# # Cache all files for a month after access (A).
# ExpiresDefault A2678400
# # Do not cache dynamically generated pages.
# ExpiresByType text/html A1
# </IfModule>

#
# <IfModule mod_rewrite.c>
# Options +FollowSymLinks
# RewriteEngine On
# RewriteBase /
# RewriteCond %{REQUEST_FILENAME} !-f
# RewriteCond %{REQUEST_FILENAME} !-d
# RewriteRule ^(.*)$ /index.php?kohana_uri=$1 [QSA,PT,L]
# RewriteRule ^$ /index.php?kohana_uri=$1 [QSA,PT,L]
# RewriteRule ^/index.php/(.*) $1 [QSA,R,L]
# </IfModule>