Joomla Blog

Was having problems with a fresh install of any type of template. I kept getting the error:

JFolder::create: Could not create directory

I was tempted to chmod all of my site but though NAAAAHHHH!!! So, I decided to try and find the problem. I changed the following line of code in /libraries/joomla/filesystem/folder.php

'JFolder::create: Path is:' . $path . " " . JText::_('Could not create directory'),


around line 234 and it outputted the offending folder.... Cache. I chmod cache to 777 and all was fine....

 

This shows you common faults when changing the favicon.ico

http://docs.joomla.org/Changing_the_site_favicon

1) Register domain

2) Setup domain in HSphere

3) Setup MySQL DB in HSphere and add user to DB

4) Empty directory with ftp or using Putty with comman:

rm -rf *

5) FTP and transfer .zip version of Joomla

6) Using Putty run:

unzip yourfilename.zip

7) Goto www.yourdomain.com

8) Transfer .htaccess file with the following in it

php_value mbstring.language neutral
php_flag register_globals off

9) Under ftp details just enter username and password and click "Autofind FTP Path"

10) Once finished using ftp delete "Installation" folder

11) Goto your site....

12) To goto your admin console goto www.yoursitename.com/administrator

Username: admin

Password: whatever you specified in install

Thats it!!!!!

Look for code in plugins/editors/tinymce.php that looks similar to this and change it as below:

if ($newlines) { // br
$forcenewline = "force_br_newlines : true, force_p_newlines : false, forced_root_block : '',";
} else { // p
$forcenewline = "force_br_newlines : false, force_p_newlines : true, forced_root_block : '',";
}

This will remove the default <p> tag from your Editor.