Keyword

help, K2 can't save article.

  • Leonardo L.
  • Leonardo L.'s Avatar Topic Author
  • Offline
  • Junior Member
More
13 years 11 months ago #97182 by Leonardo L.
help, K2 can't save article. was created by Leonardo L.
Hello,

 

I transfered my website from a free hosting to a professional hosting.

On the free hosting everything it worked very well, but now, on the professional hosting, I can't save articles of K2.

When I'm pressing save I obtain a blank index.php page and the articles doesn't appear on the list, so it can't save.

I tried to transfer, in the same way, the website in another professional hosting of a friend of mine, and that works perfectly.

The problem is due to this server.

 

What should I do? Any experience with that?!

 

thanks.

Please Log in or Create an account to join the conversation.

  • Leonardo L.
  • Leonardo L.'s Avatar Topic Author
  • Offline
  • Junior Member
More
13 years 11 months ago #97183 by Leonardo L.
Replied by Leonardo L. on topic help, K2 can't save article.
Hello, the error is due to this:


Fatal error: Call to undefined function mb_internal_encoding() in /home/httpd/www.xxxx.com/administrator/components/com_k2/tables/k2item.php on line 74

Pls anybody could help me?

Please Log in or Create an account to join the conversation.

  • Leonardo L.
  • Leonardo L.'s Avatar Topic Author
  • Offline
  • Junior Member
More
13 years 11 months ago #97184 by Leonardo L.
Replied by Leonardo L. on topic help, K2 can't save article.
I guess that maybe the problem should be solved enabling the Multibyte String functions, that I'm seeing are disabled.

Please Log in or Create an account to join the conversation.

  • Leonardo L.
  • Leonardo L.'s Avatar Topic Author
  • Offline
  • Junior Member
More
13 years 11 months ago #97185 by Leonardo L.
Replied by Leonardo L. on topic help, K2 can't save article.
I wrote to my hosting service, waiting if it's the right solution.

Anyway I accept any advices :)

Please Log in or Create an account to join the conversation.

More
13 years 11 months ago #97186 by BBC
Replied by BBC on topic help, K2 can't save article.
It is some problem with .htaccess file, seems so.

 

Did you maybe hardcoded somewhere absolute URL of your website ?

/home/httpd/www.xxxx.com/administrator/components/com_k2/tables/k2item.php 

 

This link is not normal.

 

Please Log in or Create an account to join the conversation.

  • Leonardo L.
  • Leonardo L.'s Avatar Topic Author
  • Offline
  • Junior Member
More
13 years 11 months ago #97187 by Leonardo L.
Replied by Leonardo L. on topic help, K2 can't save article.
I edited my normal domain with xxxx.com, just to protect privacy or spam on my website. But I edited the url here in the forum.

I mean that the real one is something like:

 

/home/httpd/www.mydomain.com/administrator/components/com_k2/tables/k2item.php

 

anyway what should I check in the .htaccess file? 

 

Thanks

Please Log in or Create an account to join the conversation.

More
13 years 11 months ago #97188 by BBC
Replied by BBC on topic help, K2 can't save article.

Please Log in or Create an account to join the conversation.

More
13 years 11 months ago #97189 by BBC
Replied by BBC on topic help, K2 can't save article.
It can´t work. Folder path (/home/httpd/) + URL path. (www.mydomain.com/administrator/components/com_k2/tables/k2item.php)

Or i am so stupid that i miss something here ?

 

Did you put some URL in Global Conf in Joomla ?

Send URL to PM ? (just site, not admin)

Please Log in or Create an account to join the conversation.

More
13 years 11 months ago #97190 by BBC
Replied by BBC on topic help, K2 can't save article.
Can´t help you with .htaccess when i know nothing about your site. Paste whole .htaccess here.

Please Log in or Create an account to join the conversation.

  • Leonardo L.
  • Leonardo L.'s Avatar Topic Author
  • Offline
  • Junior Member
More
13 years 11 months ago #97191 by Leonardo L.
Replied by Leonardo L. on topic help, K2 can't save article.
On my website I enabled , in global configuration, SEF Url to ON and Use Apache mod rewrite to ON (renaming htaccess.txt in .htaccess), and I also installed AceSEF ( anyway I've tried to set global configuration to OFF and to deactivate AceSEF module+plugins, but K2 still doesn't work when I'm saving articles ).

The strange thing is that K2 and AceSEF works perfectly in another hosting server (but there the option Multibyte String functions is enabled, and here is disabled, that's why I guess that should be this one the main problem!)

 

Lately, it happens that .htaccess file disappear automatically from the server folder when I close ftp connection (I also activate the option show hidden files on filezilla, but any trace of it, I don't know why, but the site works the same one) so everytime that I need to use htaccess file, I must copy from my computer.


I've sent you the url via PM and here we go ,htaccess file:

 

thanks for your help.

 

### @version $Id: htaccess.txt 14401 2010-01-26 14:10:00Z louis $# @package Joomla# @copyright Copyright (C) 2005 - 2010 Open Source Matters. All rights reserved.# @license www.gnu.org/copyleft/gpl.html GNU/GPL# Joomla! is Free Software########################################################  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 useRewriteEngine 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!### Deny access to extension xml files (uncomment out to activate)#<Files ~ "\.xml$">#Order allow,deny#Deny from all#Satisfy all#</Files>## End of deny access to extension xml filesRewriteCond %{QUERY_STRING} mosConfig_[a-zA-Z_]{1,21}(=|\%3D) [OR]# Block out any script trying to base64_encode crap to send via URLRewriteCond %{QUERY_STRING} base64_encode.*\(.*\) [OR]# Block out any script that includes a &lt;script&gt; tag in URLRewriteCond %{QUERY_STRING} (\&lt;|%3C).*script.*(\&gt;|%3E) [NC,OR]# Block out any script trying to set a PHP GLOBALS variable via URLRewriteCond %{QUERY_STRING} GLOBALS(=|\[|\%[0-9A-Z]{0,2}) [OR]# Block out any script trying to modify a _REQUEST variable via URLRewriteCond %{QUERY_STRING} _REQUEST(=|\[|\%[0-9A-Z]{0,2})# Send all blocked request to homepage with 403 Forbidden error!RewriteRule ^(.*)$ index.php [F,L]########### End - Rewrite rules to block out some common exploits#  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#RewriteCond %{REQUEST_FILENAME} !-fRewriteCond %{REQUEST_FILENAME} !-dRewriteCond %{REQUEST_URI} !^/index.phpRewriteCond %{REQUEST_URI} (/|\.php|\.html|\.htm|\.feed|\.pdf|\.raw|/[^.]*)$  [NC]RewriteRule (.*) index.phpRewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization},L]########### End - Joomla! core SEF Section

Please Log in or Create an account to join the conversation.

More
13 years 11 months ago #97192 by BBC
Replied by BBC on topic help, K2 can't save article.
This .htaccess is default, not configured for your site. I don´t know how AceSef works.

 

I don´t know where this www.mydomain.com in the middle of the path comes.

Please Log in or Create an account to join the conversation.

More
13 years 11 months ago #97193 by BBC
Replied by BBC on topic help, K2 can't save article.
Do you have in your hosting Cpanel option to switch beetween php4 and php5 ?

Please Log in or Create an account to join the conversation.

  • Leonardo L.
  • Leonardo L.'s Avatar Topic Author
  • Offline
  • Junior Member
More
13 years 11 months ago #97194 by Leonardo L.
Replied by Leonardo L. on topic help, K2 can't save article.
No, I don't have hosting Cpanel, but I've installed php5.

 

I just realized that my hosting enabled the Multibyte String functions, and now I'm able to save the articles!

I should be happy that it's working, but you don't seem convinced with this, don't you?!

 

Anyway this is the Information panel of K2 actually(i'm sorry for language)

 



 

Please Log in or Create an account to join the conversation.


Powered by Kunena Forum