polpaulin
Forum Replies Created
-
I understand it is another XCloner.php , but why did you call 2 files withe same name ?
XCloner.php and xcloner.phpanyway when I fill the form with DB name and press start install I get Internal Server Error
if I install a Joomla website in that folder with Akeeba backup it works
any php file in that website folder are working fine of course
but I cannot imagine how your xcloner can find a components/com_xcloner/index.php when the folder is empty
<iframe src=’components/com_xcloner/index.php’ width=’100%’ height=’900′ frameborder=0 marginWidth=0 frameSpacing=0 marginHeight=110 ></iframe>
with or without upper case I get Restricted access (but the file name is lowercase )
I have not to reset any permission because any php scrip are working fine in my localhost:8888/ on any local website ( > 50 websites)
thank you
when I try to move the distant backup on my localhost (MAC with mamp server) localhost:8888/mysite.com/xcloner.php I get : Restricted access
the 3 files are at the right place
mysite_2012_01_11.tar
TAR.php
xcloner.phpAkeeba backup for joomla is working so easily and so fine , I don’t know what to do with wordpress
any help ?
thank you
Forum: Fixing WordPress
In reply to: post_status = future doesnt workthank you
Forum: Fixing WordPress
In reply to: post_status = future doesnt workno cron-jobs installed if it is not build in , is it a plugin ? do you have a link ?
thank you
Forum: Fixing WordPress
In reply to: post_status = future doesnt workis it a bug ?
Forum: Fixing WordPress
In reply to: post_status = future doesnt workany idea ?
Forum: Requests and Feedback
In reply to: multi lang supportI have installed it but I cannot run both lang at the same time ? I can only change admin lang for my needs ?
thank you
I think Worpress is missing a main feature with this lack of language settings
Forum: Requests and Feedback
In reply to: multi lang supportthank you
Forum: Requests and Feedback
In reply to: multi lang supportbut how can you get the Admin panel in English and the website in German ?
like Joomla in a very simple wayForum: Fixing WordPress
In reply to: full articles list (no readmore or link title)resolved ??
Forum: Fixing WordPress
In reply to: full articles list (no readmore or link title)I solved it in that tway
in wp-config.php — > define(‘SHOW_CONTENT’, 1);
in the pages displaying content
<?php
if(SHOW_CONTENT == 1){
echo ‘<div class=”entry-content”>’;
the_content();
}
else{
echo ‘<div class=”entry-summary”>’;
the_excerpt( __( ‘Continue reading <span class=”meta-nav”>→</span>’, ‘ymages’ ) );
}
?>
</div><!– .entry-summary –>I found it ??
thanks a lot
Forum: Fixing WordPress
In reply to: wrong images url after distantlocalthis can help someone, if you see any table and/or and field missing in the replacement please tell me
DELIMITER // CREATE PROCEDURE sp_replace_DL () BEGIN SET @l= 'https://localhost:8888/website'; SET @d= 'https://website.com'; UPDATE wp_options wo SET wo.option_value = REPLACE ( wo.option_value , @d, @l); UPDATE wp_postmeta wm SET wm.meta_value = REPLACE ( wm.meta_value , @d, @l); UPDATE wp_posts wp SET wp.post_content = REPLACE ( wp.post_content , @d, @l) , wp.guid = REPLACE ( wp.guid , @d, @l), wp.post_content_filtered= REPLACE ( wp.post_content_filtered , @d, @l) ; UPDATE wp_usermeta wum SET wum.meta_value = REPLACE ( wum.meta_value , @d, @l); SET @lh= '/www/website'; SET @dh= '/home/website/public_html/'; UPDATE wp_options wo SET wo.option_value = REPLACE ( wo.option_value , @dh, @lh); UPDATE wp_postmeta wm SET wm.meta_value = REPLACE ( wm.meta_value , @dh, @lh); UPDATE wp_usermeta wum SET wum.meta_value = REPLACE ( wum.meta_value , @dh, @lh); END // DELIMITER ; -- CALL sp_replace_DL()