- Viestejä: 1324
- Vastaanotettu kiitos 121
- Foorumi
- Joomla! 2.5
- Asennus ja päivitys
- Warning: ini_set() has been disabled for security reasons jupgrade.class.php on line 19
Warning: ini_set() has been disabled for security reasons jupgrade.class.php on line 19
- Mortti
- Poissa
- Ylläpitäjä
Hezze kirjoitti: Mutta viimeinen vuosi louhen kanssa on ollut todella vaikea, he ovat muuttaneet asennettaan sellaiseksi että sinun järjestelmässä on vika tai jos sinulla on ohjelmisto x. En oikein tiedä mitä tekisi?, siirtääkö sivustot muualle vai taistella louhen kanssa.
Jos asiat menevät vaikeaksi Joomla!n ja palvelimen palveluntarjoajan kanssa, tällöin mielestäni olisi aika katsella "jotain muuta" palveluntarjoajaa...? niitä on monia....
Finnish Joomla! Language Coordinator | One of the guys behind Joomla.fi
Kirjaudu tai Rekisteröidy liittyäksesi keskusteluun.
- Hezze
- Aiheen kirjoittaja
- Vieras
An error has occurred.
The requested page cannot be found.
Home Page
If difficulties persist, please contact the System Administrator of this site and report the error below.
#404 Component not found
Kirjaudu tai Rekisteröidy liittyäksesi keskusteluun.
- Mortti
- Poissa
- Ylläpitäjä
- Viestejä: 1324
- Vastaanotettu kiitos 121
Finnish Joomla! Language Coordinator | One of the guys behind Joomla.fi
Kirjaudu tai Rekisteröidy liittyäksesi keskusteluun.
- Hezze
- Aiheen kirjoittaja
- Vieras
Mortti kirjoitti: onko sinulla antaa url:ia ko sivustolle? Onko välimuisti käytössä ja se on tyhjennetty... oletko luonut/muokannut menuja sopiviksi jos olet ottanut jälkikäteen käyttöön SEF/SEO?
toimiva sivusto: www.lieksanpursiseura.fi/
upgradetttu www.lieksanpursiseura.fi/jupgrade/
SEO oli käytössä jo toimivalla sivustolla
Kirjaudu tai Rekisteröidy liittyäksesi keskusteluun.
- Mortti
- Poissa
- Ylläpitäjä
- Viestejä: 1324
- Vastaanotettu kiitos 121
Ei tuolla sivustolla ole ainakaan SEO/SEF käytössä www.lieksanpursiseura.fi/ oletkohan ihan tyystin unohtanut .htaccess tiedoston?Hezze kirjoitti: SEO oli käytössä jo toimivalla sivustolla
Finnish Joomla! Language Coordinator | One of the guys behind Joomla.fi
Kirjaudu tai Rekisteröidy liittyäksesi keskusteluun.
- Hezze
- Aiheen kirjoittaja
- Vieras
Mortti kirjoitti:
Ei tuolla sivustolla ole ainakaan SEO/SEF käytössä www.lieksanpursiseura.fi/ oletkohan ihan tyystin unohtanut .htaccess tiedoston?Hezze kirjoitti: SEO oli käytössä jo toimivalla sivustolla
a) louhi siirrellyt sivustoa kun ovat palvelimiaan järjestelleet vuoden aikana, (ilmennyt uusia ongelmia kesken kaiken.) eivätkä kaikesta palvelimien siirroista ole ilmoittaneet mitään. Yhtä äkkiä about 3kk sit huomasin et sivut eivät toimikkaan enää..
b) public_html juuresta löytyy .htacces tiedosto
jonka sisältö on:
##
# @version $Id: htaccess.txt 21101 2011-04-07 15:47:33Z dextercowley $
# @package Joomla
# @copyright Copyright (C) 2005 - 2011 Open Source Matters. All rights reserved.
# @license GNU General Public License version 2 or later; see LICENSE.txt
##
##
# READ THIS COMPLETELY IF YOU CHOOSE TO USE THIS FILE!
#
# The line just below this section: 'Options +FollowSymLinks' may cause problems
# with some server configurations. It is required for use of mod_rewrite, but may already
# be set by your server administrator in a way that dissallows changing it in
# your .htaccess file. If using it causes your server to error out, comment it out (add # to
# beginning of line), reload your site in your browser and test your sef url's. If they work,
# it has been set by your server administrator and you do not need it set here.
##
## Can be commented out if causes errors, see notes above.
Options +FollowSymLinks
## Mod_rewrite in use.
RewriteEngine On
## Begin - Rewrite rules to block out some common exploits.
# If you experience problems on your site block out the operations listed below
# This attempts to block the most common type of exploit `attempts` to Joomla!
#
# Block out any script trying to base64_encode data within the URL.
RewriteCond %{QUERY_STRING} base64_encode[^(]*\([^)]*\) [OR]
# Block out any script that includes a <script> tag in URL.
RewriteCond %{QUERY_STRING} (<|%3C)([^s]*s)+cript.*(>|%3E) [NC,OR]
# Block out any script trying to set a PHP GLOBALS variable via URL.
RewriteCond %{QUERY_STRING} GLOBALS(=|\[|\%[0-9A-Z]{0,2}) [OR]
# Block out any script trying to modify a _REQUEST variable via URL.
RewriteCond %{QUERY_STRING} _REQUEST(=|\[|\%[0-9A-Z]{0,2})
# Return 403 Forbidden header and show the content of the root homepage
RewriteRule .* index.php [F]
#
## End - Rewrite rules to block out some common exploits.
## Begin - Custom redirects
#
# If you need to redirect some pages, or set a canonical non-www to
# www redirect (or vice versa), place that code here. Ensure those
# redirects use the correct RewriteRule syntax and the [R=301,L] flags.
#
## End - Custom redirects
##
# Uncomment following line if your webserver's URL
# is not directly related to physical file paths.
# Update Your Joomla! Directory (just / for root).
##
# RewriteBase /
## Begin - Joomla! core SEF Section.
#
RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}]
#
# If the requested path and file is not /index.php and the request
# has not already been internally rewritten to the index.php script
RewriteCond %{REQUEST_URI} !^/index\.php
# and the request is for something within the component folder,
# or for the site root, or for an extensionless URL, or the
# requested URL ends with one of the listed extensions
RewriteCond %{REQUEST_URI} /component/|(/[^.]*|\.(php|html?|feed|pdf|vcf|raw))$ [NC]
# and the requested path and file doesn't directly match a physical file
RewriteCond %{REQUEST_FILENAME} !-f
# and the requested path and file doesn't directly match a physical folder
RewriteCond %{REQUEST_FILENAME} !-d
# internally rewrite the request to the index.php script
RewriteRule .* index.php [L]
#
## End - Joomla! core SEF Section.
d) voi olla et muistan väärin et seo:n otin käyttöön toisella sivustolla. Ihme ja kumma pääsen vanhan 1.5 järjestelmänhallinta paneliin superuserina mut en pääse: Järjestelmänhallintaa mistä tuon seo:n näkis.
Tulee ilmoitus: atal error: Cannot make non static method JCacheStorage::test() static in class JCacheStorageCachelite in /home/lieksanpursis/public_html/libraries/joomla/cache/storage/cachelite.php on line 318
e) 1.7 upgradetussa paneelissa pääsen kaikkialle ja seo taitaa olla oletuksena päällä.
Kirjaudu tai Rekisteröidy liittyäksesi keskusteluun.
- Mortti
- Poissa
- Ylläpitäjä
- Viestejä: 1324
- Vastaanotettu kiitos 121
Finnish Joomla! Language Coordinator | One of the guys behind Joomla.fi
Kirjaudu tai Rekisteröidy liittyäksesi keskusteluun.
- Mortti
- Poissa
- Ylläpitäjä
- Viestejä: 1324
- Vastaanotettu kiitos 121
ettei vain olisi htaccess.txt -tiedosto joka tulee oletuksena, kyseinen tulee muuttaa muotoon .htaccess ?b) public_html juuresta löytyy .htacces tiedosto
Finnish Joomla! Language Coordinator | One of the guys behind Joomla.fi
Kirjaudu tai Rekisteröidy liittyäksesi keskusteluun.
- quietFinn
- Poissa
- Valvoja
Hezze kirjoitti: d) voi olla et muistan väärin et seo:n otin käyttöön toisella sivustolla. Ihme ja kumma pääsen vanhan 1.5 järjestelmänhallinta paneliin superuserina mut en pääse: Järjestelmänhallintaa mistä tuon seo:n näkis.
Kyseinen asetus (ja monia muitakin) on Joomlan configuration.php tiedostossa.
netFinn - Taatusti Joomla!-yhteensopiva webhosting: www.netfinn.fi
Kirjaudu tai Rekisteröidy liittyäksesi keskusteluun.
- Hezze
- Aiheen kirjoittaja
- Vieras
quietFinn kirjoitti:
Hezze kirjoitti: d) voi olla et muistan väärin et seo:n otin käyttöön toisella sivustolla. Ihme ja kumma pääsen vanhan 1.5 järjestelmänhallinta paneliin superuserina mut en pääse: Järjestelmänhallintaa mistä tuon seo:n näkis.
Kyseinen asetus (ja monia muitakin) on Joomlan configuration.php tiedostossa.
configuration.php näyttää seuraavalta:
<?php
class JConfig {
var $offline = '0';
var $editor = 'tinymce';
var $list_limit = '20';
var $helpurl = ' help.joomla.org ';
var $debug = '0';
var $debug_lang = '0';
var $sef = '0';
var $sef_rewrite = '1';
var $sef_suffix = '0';
var $feed_limit = '10';
var $feed_email = 'author';
var $secret = 'KB2Uj3GOFgZrtwBR';
var $gzip = '0';
var $error_reporting = '-1';
var $xmlrpc_server = '0';
var $log_path = '/home/lieksanpursis/public_html/logs';
var $tmp_path = '/home/lieksanpursis/public_html/tmp';
var $live_site = '';
var $force_ssl = '0';
var $offset = '2';
var $caching = '0';
var $cachetime = '15';
var $cache_handler = 'file';
var $memcache_settings = array();
var $ftp_enable = '0';
var $ftp_host = '127.0.0.1';
var $ftp_port = '21';
var $ftp_user = '';
var $ftp_pass = '';
var $ftp_root = '';
var $dbtype = 'mysql';
var $host = 'localhost';
var $user = 'lieksanpursis';
var $db = 'lieksanpursiseura_fi_joom';
var $dbprefix = 'jos_';
var $mailer = 'mail';
var $mailfrom = 'Tämä sähköpostiosoite on suojattu spamboteilta. Tarvitset JavaScript-tuen nähdäksesi sen.';
var $fromname = 'Lieksan Pursiseura Ry';
var $sendmail = '/usr/sbin/sendmail';
var $smtpauth = '0';
var $smtpsecure = 'none';
var $smtpport = '25';
var $smtpuser = '';
var $smtppass = '';
var $smtphost = 'localhost';
var $MetaAuthor = '1';
var $MetaTitle = '1';
var $lifetime = '15';
var $session_handler = 'database';
var $password =
Kirjaudu tai Rekisteröidy liittyäksesi keskusteluun.
- Foorumi
- Joomla! 2.5
- Asennus ja päivitys
- Warning: ini_set() has been disabled for security reasons jupgrade.class.php on line 19