Page break with php-fckeditor

php code

<?php
if (stripos($row_latestnews[‘nws_text_gr’],”<div style=\”page-break-after: always;\”><span style=\”display: none;\”>&nbsp;</span></div>”)<1)
echo substr($row_latestnews[‘nws_text_gr’],0,180);
else
{
$str=split(“<div style=\”page-break-after: always;\”><span style=\”display: none;\”>&nbsp;</span></div>”,$row_latestnews[‘nws_text_gr’]);
echo $str[0];

}

?>

\common\KT_functions.inc.php on line 464 – Cannot modify header information – headers already sent

Warning: Cannot modify header information – headers already sent by (output started at #:\#######\htdocs\####\Connections\##_cp_UTF.php:2) in #:\#######\htdocs\####\includes\common\KT_functions.inc.php on line 464

in this error please include on top of the page the

MXI/mxi.php files 

<?php require_once (‘includes/mxi/MXI.php’); ?>

How can I change permissions on my files? Linux

 

How can I change permissions on my files?
If you are using FTP software, there is usually a menu option or button that says “Change Permissions,” click this option. You have choices of R(read), W(write), and X(execute)*.If you are using a command line utility such as PuTTy, you need to use the “chmod” command.

If you want to give read permissions, use the command: Continue reading “How can I change permissions on my files? Linux”

Linux / Unix and variant users delete files and folders

Linux / Unix and variant users

Files

Linux / Unix users can delete files through the console by using the rm command. See this page for additional information about this command.

Folders

Linux / Unix users can delete folders through the console by using the rmdir command. See this page for additional information about this command.

Like Microsoft Windows, Linux / Unix users can also delete files through the GUI by locating the file and pressing the delete key on the keyboard.