Joomla 1.6 Setup Guide [jan-2010], Updated tutorial for Joomla |
||
Welcome to the Zymic webmaster forums. Our forums are here to provide people the free ability to discuss a range of websites related topics such as design, development coding and marketing.
In order to post you will need to register for a zymic account or if you already have one simply login by using the form on the left.
Zymic Webmaster Forums Zymic Free Web Hosting Tutorials |
||
Joomla 1.6 Setup Guide [jan-2010], Updated tutorial for Joomla |
||
Jan 18 2010, 11:30 PM
Post
#1
|
|
![]() Ninja ![]() ![]() ![]() Group: Members Posts: 289 Joined: 10-February 09 Member No.: 81,548 |
Jacob - Added complete file for reference
Dan - Added installation edit for zLib This includes all file edits and so forth. Keep in mind, I'm a complete novice when it comes to Joomla, so my experience in installing it should be about the same as your experience.[/size][/b] Updated for Joomla 1.6 as of 1/11/11 Now for those who never read my Drupal 6.15 Tutorial here's a recap on the initial Zymic setup part. Zymic Hosting Account Setup: Goto the Zymic homepage and click on "Sign-up/Log-in" ![]() Write down your ftp information, you'll need it later on then click on "Login to control panel" ![]() Click on the login button as shown here ![]() Type in your password, don't worry I won't look.... ![]() Now to get your database setup, click on "MySQL Database Management" ![]() Create your database name and click on "create DataBase Name" ![]() Now create your database username and password, be sure to confirm it and press "Create Username" ![]() Now assign privileges to your username to the database you want, be sure everythign is checked off and click "Assign Privileges" ![]() Congrats your database is now created. Be sure to write down your database name, database username, and password. You will need that info in a little bit. ![]() Congrats your DONE with the Zymic setup! Joomla Setup Now with that out of the way lets get to installing Joomla. First download the install files for Joomla 1.5 Unzip these files someplace where you can find them, I suggest your Desktop. Now open up the sessions.php file located in the '/libraries/joomla/session' folder. Locate the following lines of code and add a @ to the front of them to suppress PHP ini_set errors. CODE ini_set('session.save_handler', 'files'); CODE ini_set('session.use_trans_sid', '0'); CODE if( $trans ) { ini_set( 'session.use_trans_sid', 0 ); } CODE ini_set( 'session.use_trans_sid', $trans ); CODE ini_set('session.gc_maxlifetime', $this->_expire); So now these lines should look like this: CODE @ini_set('session.save_handler', 'files'); CODE @ini_set('session.use_trans_sid', '0'); CODE if( $trans ) { @ini_set( 'session.use_trans_sid', 0 ); } CODE @ini_set( 'session.use_trans_sid', $trans ); CODE @ini_set('session.gc_maxlifetime', $this->_expire); (You can view the full file [here]) Save this file. Now I want to open up your language.php file located at libraries/joomla/languages and find these 2 lines of code. CODE ini_set('track_errors',$track_errors); CODE ini_set('track_errors', true); And edit them to look like this. CODE @ini_set('track_errors',$track_errors); CODE @ini_set('track_errors', true); Save this file. Now you want to go to installation/models/setup.php and look for // Check for zlib support. on line 229 with the folloing code CODE // Check for zlib support. $option = new stdClass; $option->label = JText::_('INSTL_ZLIB_COMPRESSION_SUPPORT'); $option->state = extension_loaded('zlib'); $option->notice = null; $options[] = $option; and you want to add // in front so it looks like this. CODE // Check for zlib support. //$option = new stdClass; //$option->label = JText::_('INSTL_ZLIB_COMPRESSION_SUPPORT'); //$option->state = extension_loaded('zlib'); //$option->notice = null; //$options[] = $option; Save the file and upload it to your hosting account The last thing I want you to do is to open up the web editing tool that you've been using (Notepad++, Dreamweaver, Frontpage, ect) and create a new BLANK page with nothing in it and save it as configuration.php and place it into your root folder. This is the same folder where your index.php file is located. Now upload the entire contents of the Joomla folder onto your website. While normally I use Core-FTP or WS_FTP for this I found I got errors during the upload process for some reason. So in this case I recommend Filezilla which you can get at www.filezilla.com. Note: I had a few failed uploaded files myself, just re-que them once everything is uploaded, should take a good 15-20m to get everything up. Once everything is uploaded in filezilla select the configuration file that you just uploaded that's located on your bottom right window and right click and select "File Permissions" ![]() Set the file permissions to 777 and click "Ok" ![]() Now goto your homepage (example: lizontest.zxq.net). Select your language and click on "next" on the right hand side. ![]() Don't worry about the Pre-Install errors. Just click "Next" to continue. ![]() Click on "Next" again (I'm sounding like a broken record here) Some people may have trouble with this part as in some cases there will be no NEXT button. If this is the case you can get to the page by entering the url manually. For example is my website is lizontest.com my url would be lizontest.com/installation/index.php?view=license ![]() Fill in your database information that I told you to write down earlier. Once your done click "Next". ![]() Don't worry about filling this information, I tried to myself, it doesn't work. Just click "Next" and continue. ![]() Put in your e-mail and password. Because it was my first time installing Joomla I selected "Install Default Sample Data". If your migrating from a previous site select "Load Migration Script" and fill in the necessary boxes. ![]() Remember the admin username is "admin" and the password is the one you imputed earlier. ![]() If you created the configuration file earlier like I told you to and set it's permissions properly you will be able to SKIP this next step as it involves the same file. Simply delete or rename your installation folder as indicated on the page and your DONE! You need to do 2 things now. First open up your favorite web editor (Dreamweaver, frontpage, notepad, ect.) and copy the code below into it. Save this file as configuration.php and place it somewhere you can find it, your Desktop should suffice. ![]() Next open up Filezilla again and upload this file to your root directory (same place where index.php is at). While your in there right click on the "Installation" folder and click on "Delete". This will remove the folder. Once these 2 things are done click on "Next". ![]() Done! Remember to access your admin panel goto http://yourwebsite/administration (example http://lizontest.zxq.net/adminstration). FAQ How do I install new templates without zlib? * Get your zip files from our (or other) website. Unzip the file on your computer. * Log on with your ftp client on your site. * Find "Templates" folder on your root site and upload unzipped directory. The structure should look like this: /templates/mody_bluelight/index.php. * Log on your Joomla administration section. Go to Site --> Template Manager --> Site Templates * Select your new template from the list and publish it. * Go to Site --> Preview --> In new window Source: http://www.joomlatribune.com/joomla-tutori...-templates.html Note: This took me about 10 seconds to look up myself ^.^ FOLLOW UP TUTORIAL [installing sample data]: http://www.zymic.com/forum/index.php?showtopic=23327
Reason for edit: Fixed zLIB edit to make it work fo install
|
|
|
![]() |
Aug 11 2010, 09:52 PM
Post
#2
|
|
|
Newbie ![]() Group: Members Posts: 4 Joined: 10-August 10 Member No.: 152,449 |
which joomla folder? 1.5 or joomla?
|
|
|
lizon Joomla 1.6 Setup Guide [jan-2010] Jan 18 2010, 11:30 PM
Darman
without zlib setting of templates is impossible... Jan 19 2010, 12:58 PM
Dave without zlib setting of templates is impossible... Jan 19 2010, 01:02 PM
lizon You must install themes manually.
Yeah I'll a... Jan 19 2010, 04:50 PM
Dave Yeah I'll add that once I figure out how to do... Jan 19 2010, 05:49 PM
lizon you might want to update the tutorial sticky ^.^ Jan 20 2010, 06:23 AM
IPEST Hello men,
Thank you for this tutorial, i'am t... Jan 21 2010, 07:54 PM
lizon Hello men,
Thank you for this tutorial, i'am t... Jan 21 2010, 08:26 PM
IPEST Hello again,
I test this and it works well.
Thank ... Jan 21 2010, 10:47 PM
lselbach Error Message
I've followed all the steps and ... Feb 7 2010, 09:15 PM
gabore Error Message
I've followed all the steps and ... Feb 12 2010, 09:04 AM
puya3d For me it looks like you accidentally left out mak... Mar 7 2010, 03:48 AM
milentije Yeah, that is not the prol
He have to update the... Mar 25 2010, 08:11 AM
NerdyGurl SOLVED DONT WORRY - Blonde moment ;)
Followed each... Mar 25 2010, 08:07 AM
ckkok Hi, I'm a newbie for joomla is looking for hel... Apr 14 2010, 04:08 PM
lizon You uploaded your files to the wrong place.
http:... Apr 15 2010, 02:02 AM
ckkok Hi, Lizon
Yes! I got your point! It's... Apr 15 2010, 05:10 AM
ckkok Need help again! :wacko:
I create the config... Apr 15 2010, 05:37 AM
ckkok when I type in http://lbpgroup.99k.org/administrat... Apr 15 2010, 06:00 AM
lizon Should be like this:
var $offline_message = ... Apr 15 2010, 04:28 PM
ckkok Should be like this:
var $offline_message = ... Apr 16 2010, 12:07 AM
fakeer4 Should be like this:
var $offline_message = ... Apr 20 2010, 10:31 AM
lizon the only thing I can think of is that you are copy... Apr 16 2010, 01:42 AM
ckkok <?php
class JConfig {
/* Site Settings */
var ... Apr 16 2010, 02:07 AM
lizon I cannot help you without seeing what's going ... Apr 16 2010, 03:30 AM
ckkok Hi, Lizon
You been so helpful to me as a newbie h... Apr 16 2010, 03:46 AM
closeupman I did everything and am getting the 404 error as w... Apr 18 2010, 12:11 AM
adnanalibangash well, i did everything and follow your tutorial st... Jan 27 2011, 02:58 PM
lizon I just did it again.
http://lizontest.uuuq.com/
... Apr 18 2010, 01:26 AM
killzone It worked for me!
Thanks, no errors at all.
Ho... Apr 18 2010, 10:22 PM
lizon I think I'm going to have to make a video to s... Apr 20 2010, 06:56 PM
Mr. Pixel Hello,
Big thanks for the guide, as I was previou... Apr 22 2010, 05:05 PM
lizon no, it doesn't. It mearly disables Joomla... Apr 22 2010, 10:10 PM
mofidy Hello Dear
I recently have installed Joomla 1.5 on... May 1 2010, 09:18 AM
lizon Either your images aren't there or the folder ... May 1 2010, 02:21 PM
mofidy Either your images aren't there or the folder ... May 1 2010, 04:45 PM
lizon I know I'm going to regret asking, what's ... May 1 2010, 06:45 PM
mofidy I know I'm going to regret asking, what's ... May 1 2010, 07:39 PM
lizon http://farm5.static.flickr.com/4002/4569353134_104... May 1 2010, 09:54 PM
mofidy Thanks lizon
My Problem is solved. I upload image... May 2 2010, 12:14 PM
VaLyNdrMn Don't mean to bring up a topic that's been... May 18 2010, 02:45 AM
lizon try re-uploading sessions.php the file may not hav... May 18 2010, 06:01 PM
VaLyNdrMn try re-uploading sessions.php the file may not hav... May 19 2010, 12:11 AM
zoro Excellent tutorial. very much worthy for anyone us... Jun 2 2010, 05:57 PM
jheamay Excellent tutorial! Thank you very much for th... Jun 7 2010, 02:10 AM
verdepistacchio Hi,
I followed all the instructions to install joo... Jun 25 2010, 09:35 PM
Rae Thanks a lot lizon. The tutorial really helped. By... Jul 13 2010, 09:53 AM
lizon
Google Jul 13 2010, 04:06 PM
NaRzY Included PHP files (such as session.php) that are ... Jul 13 2010, 09:48 PM
Hitman.pt Hy...tanks for your tuturial... but now i want to ... Jul 15 2010, 04:46 PM
lizon http://docs.joomla.org/How_do_you_install_an_exten... Jul 20 2010, 08:51 PM
Germann Hello
I need help on installing extensions Joomla,... Jul 22 2010, 01:46 PM
Jewels Hello
I went through the process fine but after d... Aug 22 2010, 02:25 PM
LadyHarley Error: type of file "CHANGES-2.1.0" not ... Aug 29 2010, 10:03 PM
neotheone Its probably the ftp server is now allowed extensi... Sep 1 2010, 10:44 AM
LadyHarley Warning: ini_set() has been disabled for security ... Oct 2 2010, 02:02 AM
Arnee PLease HELP!
After installation i have page
... Oct 13 2010, 08:40 PM
timpet Sweet just what i was looking fore :) Thanks you v... Oct 16 2010, 11:49 AM
lizon I'm always left wondering why people get error... Oct 19 2010, 04:51 PM
Maahes Hi all!.
I have just installed Joomla 1.5 and... Oct 30 2010, 07:47 PM
ssfdre38 Hi all!.
I have just installed Joomla 1.5 and... Oct 30 2010, 08:06 PM
lizon Mail function is disabled by default. To activate ... Oct 30 2010, 09:19 PM
ssfdre38 $10USD for mail() and $5USD for MX Recor... Oct 30 2010, 09:22 PM
Maahes Gotchya thanks!
Just struggling manually inst... Oct 30 2010, 10:03 PM
Maahes Hi all,
Regarding Joomla here, Im having trouble ... Oct 31 2010, 12:21 PM
eliteedition there is no joomla 1.5 administration page instead... Nov 4 2010, 02:40 PM
lizon I periodically do a fresh install of these CMS... Dec 14 2010, 09:19 PM
malkolaly Thank you very much Dec 15 2010, 11:04 AM
aleabby I have learned asp.net, I want to know how can I u... Jan 5 2011, 12:08 PM
ssfdre38 unknow that is something you would have to ask Joo... Jan 5 2011, 04:53 PM
Jiro90 hi, i having problems after upload Joomla 1.5.
W... Jan 13 2011, 02:50 AM
ssfdre38 once you fix the ini_set error problem then it wil... Jan 13 2011, 03:46 AM
Jiro90 once you fix the ini_set error problem then it wil... Jan 15 2011, 08:21 AM
ssfdre38 its in session.php under library/joomla/sessions Jan 15 2011, 09:04 AM
lizon
I wish people would read the tutorial first befo... Jan 15 2011, 03:54 PM
Jiro90 Besides session.php, I also saw this part. That... Jan 18 2011, 02:56 PM
lizon libraries/joomla/languages
It was a small typo, ... Jan 19 2011, 12:46 AM
Jiro90 libraries/joomla/languages
It was a small typo, ... Jan 19 2011, 03:34 AM
lizon
Use CTRL + F...
Did you make the database and s... Jan 19 2011, 05:34 AM
adnanalibangash hello sir, i encountered the following problems wh... Jan 27 2011, 04:57 PM
adnanalibangash found no this file:installation/models/setup.php ... Jan 27 2011, 06:11 PM
VoidPC How do I read a PHP file? :-/ Feb 4 2011, 01:38 AM
Jiro90 I still having problem with Joomla 1.5. I would li... Feb 4 2011, 03:35 PM
ssfdre38 use joomla 1.6 Feb 4 2011, 08:16 PM
auscamp11 Really a nice..... Feb 7 2011, 01:04 PM
mr.mgm you are super great teacher , everything was aweso... Feb 21 2011, 04:19 AM
ssfdre38 its due to the heavy use of our servers and peak h... Feb 21 2011, 09:05 AM
mr.mgm Fatal error: Cannot make non static method JCacheS... Feb 22 2011, 05:34 AM
jerryj Hi, thanks for the tutorial, great job.
Joomla 1.... Mar 10 2011, 07:49 PM
ssfdre38 read the tutorial, i made a edit for that problem ... Mar 10 2011, 07:58 PM
admin1988 zlip : no
why?
:hunter: Mar 31 2011, 02:52 AM
admin1988 Parse error: syntax error, unexpected '<... Mar 31 2011, 02:19 PM
ssfdre38 read the tutorial cause ive tested and mod the tut... Mar 31 2011, 05:16 PM
admin1988 http://www7.0zz0.com/2011/03/31/23/826411121.jpg
s... Mar 31 2011, 11:10 PM
ssfdre38 READ THE TUTORIAL THERE IS A FIX and zlib is DISAB... Apr 1 2011, 03:28 AM
admin1988 but i add @
at
// Check for zlib support.... Apr 1 2011, 07:54 AM
ssfdre38 zlib is disable server wide we disable it you can ... Apr 1 2011, 08:09 AM
Fullfiled I can't get to install any templates, modules ... Apr 17 2011, 05:38 PM ![]() |
2 User(s) are reading this topic (2 Guests and 0 Anonymous Users) |
||
| 0 Members: | ||
Forum Jump |
||
| Lo-Fi Version | Time is now: 19th May 2013 - 07:21 PM |