![]() |
|
| |||||||
| Notices |
| Various Content Management Systems Discussion and help about various types of CMS’s that are included with your VodaHost account. All of the following CMS systems can easily be installed via fantastico in your control panel. They include Joomla, Drupal, Mambo, PHP-Nuke, phpWCMS, Post-Nuke, Siteframe, TYPO3 and XOOPS. |
![]() |
| | Thread Tools |
|
#1
| ||||
| ||||
|
Trying to make it easier (and to trim the redundant questions), I thought it would be helpful to list many of the new and improved resources for JOOMLA, one of the most robust website foundations available, which is FREE for VodaHost customers and loadable via the Fantastico! utility in each Control Panel. Joomla has so many integrated functions already included or easily added that is just makes sense to have a go with using it! With a built-in shopping cart with numerous configurations, forums, classifieds, blogs, interactive modules, and a seemingkly endless list of plug-ins available, I think you will find Joomla most accommodating indeed! OFFICIAL JOOMLA WEBSITE This is the place to start to learn all what can be done. JOOMLA SUPPORT FORUMS The is THE place to find all the answers to your questions, from installation to design. JOOMLANCER The Joomla marketplace, where you can post your project to have a Pro bid on it to make everything perfect for you. JOOMLA USER MANUAL For those of you who prefer to print out a User Manual, this is the latest Official PDF release. If you want to purchase a comprehensive Manual (which contributes to Joomla evolution and charity also), select this link. When it comes to templates, there are so many available for free that when you get there, it is simple to re-format any of them yourself, so I would not even suggest buying one at all. If you ever get stuck, get with one of the many Pro's in Joomlancers to do your job at extremely affordable rates .... you'll see! |
|
#3
| ||||
| ||||
|
John! Simply go to the Official Site via the link above and browse the many different applications people have used Joomla as solutions! Find inspiration, and imagine how you can use it to fulfill your requirements..... Hosting here at VH is "ipso facto"! |
|
#5
| ||||
| ||||
| Quote:
Since Joomla is Open Source and you can download freely from the home site, why don't you simply install the newest stable version 1.5 manually according to the very detailed video Tutorials and printable Manual???? |
|
#7
| ||||
| ||||
|
You will need to properly prepare yourself, so not only will you be capable of doing an install correctly but once you understand the process you will be better able to even use the tool itself: there are basic conmputer precepts that build upon one another, so your learning curve directly dictates your skill set. I would use the links in the first post in this thread to explore the Joomla forum to read up on all the various aspects of installation that have cause many others frustration, so you will be able to not make the same mistakes. I would suggest that you then READ until you understand the clear instructions on the Official website on how to download and install it....and if you have a technical "emergency" to register with and submit a ticket to their Technical Support for a solution to your unique issue. And, like any product downloaded and meant to be installed, once you un-zip the file you will find a READ ME and another ".txt" file that contains the full set of instructions: follow them precisely and in sequence. You will need to install both the operational template files with all the syles and elements in your public_html/ directory as well as properly set up and install to your MySql Database. If you really mess up, simply post a job in Joomlancers to have a pro install it for you (probably around $30-50). You will find out (maybe too late) that there are far more free templates and add-ons for version 1.0.14 than there are for 1.5.x, and far more "pros" to rely upon to bail you out also. To me, having to pay 3x as much for a smaller selection of templates and to have less referential resources to guide me is not worth the little difference between versions 1 and 1.5, but then that is my opinion. Maybe you saw something in 1.5 that you simply required, I don't know... You really need to follow the directions supplied, and to expect more assistance from the Joomla resources than here in VodaTalk...the manual install is not a VodaHost issue, is it? . |
|
#8
| |||
| |||
|
tyvm for your reply, I have limited experience and am just learning alot of this stuff.I have put together a site with 1x and am satisfied so far.My only concern and main reason for wanting 1.5 is security.If you feel i'll be ok then i will take your word for it,however i could use your help in telling me if i need to do anything about my reg-globals settings. My site is http://placidplace.net/ohtresbeau/ once again ty,i am very new to all of this but am having fun so far. |
|
#9
| ||||
| ||||
|
Just here to help out a bit, you know.....but I am quite glad you are having FUN (the most important ingedient in the whole internet thing anyway!). What about the "globals"?? Are you talking about the footers and stuff? If you want to remove them, that's easy: copy down a copy of the "index" file, and using Notebook, open it and edit out the footers (like "Joomla this" and "designed by this person") and then FTP it back up....it automatically overwrites the copy on the server.....other than than, "globals" like navigation and "Content" vs. "info" pages (etc.) are done in the AdminPanel. If you refer to the global "registration" settings (security), I would spend a few hours scanning the Contributions sectiuon, looking for specific add-ons that make sense to enhance the process that you are focusing on. They, too, are easily added, and can do much to allay your concerns! |
|
#10
| |||
| |||
|
hiya,this is what i ws refering to Following PHP Server Settings are not optimal for Security and it is recommended to change them:
I have refered to the post but just wanna make sure my server,you,settings are correct for security also,i would like to say tyvm again for the kind responces,im newb |
|
#11
| ||||
| ||||
|
VodaHost operates and maintains server security above the standards mentioned ..... please remember to seek detailed Support and Discussion in the Official Joomla Forums and not be dependant on VodaTalk!
|
|
#12
| ||||
| ||||
|
This is a common problem with shared hosting, some people need register_globals on, and some others need it of. Solution: You need to create a local php.ini that will overide the default php ini and will set register_globals to off, in your Joomla folder. To do this, please copy the following code. Open Notepad, paste the code, and Save As (select File type: All Files) modify_php_ini.php . Now upload this file to your Joomla folder. Open your browser, and type in the address bar: http://www.yourdomain.com/joomla_fol...fy_php_ini.php . As soon as you do so, the script will read the default php.ini file, it will modify the register_globals value to OFF, and will copy the entire, modified file, in your Joomla folder, thus setting register_globals Off ONLY for the specific folder. Code: <!-- /* SCRIPT NAME: modify_php_ini.php */ --> <?php // Put all the php.ini parameters you want to change below. One per line. // Follow the example format $parm[] = "parameter = value"; $parm[] = "register_globals = Off"; $parm[] = "session.use_trans_sid = 0"; // full unix path - location of the default php.ini file at your host // you can determine the location of the default file using phpinfo() $defaultPath = '/usr/local/lib/php.ini'; // full unix path - location where you want your custom php.ini file //$customPath = "/path/php.ini"; $customPath = "php.ini"; // nothing should change below this line. if (file_exists($defaultPath)) { $contents = file_get_contents($defaultPath); $contents .= "\n\n; MODIFIED THE FOLLOWING USER PARAMETERS:\n\n"; foreach ($parm as $value) $contents .= $value . " \n"; if (file_put_contents($customPath,$contents)) { if (chmod($customPath,0600)) $message = "<b>PHP.INI File modified and copied.</b>"; else $message = "PROCCESS ERROR - Failed to update php.ini."; } else { $message = "PROCCESS ERROR - Failed to write php.ini file."; } } else { $message = "PROCCESS ERROR - php.ini file not found."; } echo $message; ?>
__________________ Navaldesign Logger Lite: Low Cost, Customizable, multifeatured Login script Instant Download Cart: a Powerfull, Customized, in site, DB driven, e-products Cart DBTechnosystems.com Forms, Databases, Shopping Carts, Instant Download Carts, Loggin Systems and more.... Advanced BlueVoda Form Processor : No coding form processor! Just install and use! Now with built in CAPTCHA! |
|
#13
| |||
| |||
|
Hi The changes to the php.ini file seem to have worked and created a local ini file in the Joomla folder. How does Joomla see these changes as my system info suggests register_globals is still 'on'? site thefc.retailmotorlaw.co.uk Many thanks |
|
#14
| ||||
| ||||
|
If register_globals have been turned to off, it would seem improbable that Joomla still sees them as ON. Are you sure you made everything ok ? Run phpinfo in the Joomla folder to make sure.
__________________ Navaldesign Logger Lite: Low Cost, Customizable, multifeatured Login script Instant Download Cart: a Powerfull, Customized, in site, DB driven, e-products Cart DBTechnosystems.com Forms, Databases, Shopping Carts, Instant Download Carts, Loggin Systems and more.... Advanced BlueVoda Form Processor : No coding form processor! Just install and use! Now with built in CAPTCHA! |
|
#15
| |||
| |||
|
There should be a link with the message to the Joomla Forums; click on that. I'm still running 1.13 and I think I read in their forum that admin can show the error message even though there's no problem. Steve |
|
#16
| ||||
| ||||
|
If the php.ini file has been created and register_globals is still on, the problam is that your server settings turn the php.ini file permissions to 755 instead of the correct 644. Check it. If ANYTHING else than 644, make it 644.
__________________ Navaldesign Logger Lite: Low Cost, Customizable, multifeatured Login script Instant Download Cart: a Powerfull, Customized, in site, DB driven, e-products Cart DBTechnosystems.com Forms, Databases, Shopping Carts, Instant Download Carts, Loggin Systems and more.... Advanced BlueVoda Form Processor : No coding form processor! Just install and use! Now with built in CAPTCHA! |
|
#17
| |||
| |||
|
this is great info but it still doesn't tell me how to upgrade from 1.0 to 1.5 through cpanel. alain please send message to alain@quantumprofits.net thanks. |
|
#18
| ||||
| ||||
|
Alain -- you cannot "upgrade" through your VodaHsot cPanel, you need to install manually if you want to use a different version that is provided by Fantastico! (which is pretty clear from the beginning, even on the installation confirmation page in cP). Use this link download Joomla 1.5.6. ... which you can then manually install following the instructions and guides available here. If you visited the Joomla Home Page above you would already be aware of these resources! |
|
#20
| ||||
| ||||
|
Use the overwhelming resources that guide you every step of the way to using Joomla successfully! These "Beginner User Manuals" should prove to be really handy too, even though not listed in the first post in this thread .... |
|
#21
| ||||
| ||||
|
Replying to "SimplyBrowne" got me thinking to back when I discovered so many differing resources within the Joomla Community that is got difficult to always know where to go to find the basic solutions, so I thought I would present them here, knowing that these would be what every VodaHost peer would need to deal with from the get-go, especially if installing via Fantastico! First, HERE is the definitive Installation Documents for Joomla 1.0.15 and 1.5 (although titled for 1.5, every item holds true for 1.0.15). Fantastico! will install 1.0.15 which is just as good as 1.5 (if not arguably better), and which allows more templates and add-on's to be installed from the beginning. Although the buzz surrounds 1.5, there simply is not enough bugs fixed nor enough additional options built for it yet, so unless you have a big wallet, stick to 1.0.15 to find more freebies, functional add-on's, and look-and-feel options available. If you installed Joomla via Fantastico!, you will immediately note the default Main page displaying a warning that your Global Permissions are set to "On" and need to be turned off (this is an error caused not from simply being installed via Fantastico! but due to being installed on a shared server, of which your account most lkely is -- unless you have paid VodaHost for a Dedicated IP account). * This is only about 10-15 minutes time required, but it is imperative that it be done precisely in order to get your Fantastico! installation to work properly. The rest is pretty simple, even if you try to wing it and not read any of the esay-to-follow intros I've listed above. You should have a nice looking and functional website within the first hour or two if you do read up first, and within a day or so if you don't! Good Luck! |
|
#22
| |||||
| |||||
|
Some things really make me wonder. Quote:
Quote:
That is what i stated and no more. So i don't see what was wrong in my post. Quote:
With MANY servers, a one line local php.ini file, will result in OTHER settings of the original file being ignored! Thus creating other issues. The script that i posted above, will, instead, do something else: It will COPY the entire original php.ini file (thus preserving all the other settings) and will simply add a line (the line that you also posted) at the end. This way all other settings remain as your system Admin has set them, and register_globals is set to off.
__________________ Navaldesign Logger Lite: Low Cost, Customizable, multifeatured Login script Instant Download Cart: a Powerfull, Customized, in site, DB driven, e-products Cart DBTechnosystems.com Forms, Databases, Shopping Carts, Instant Download Carts, Loggin Systems and more.... Advanced BlueVoda Form Processor : No coding form processor! Just install and use! Now with built in CAPTCHA! |
|
#23
| ||||
| ||||
|
Sorry, George, but using a "diagnostic + injector" script (also mentioned in the Official Joomla Installation Manual linked above) is not a total solution, and I merely echoed what is written and what works with the fact files themselves are missing. Did you look at the documentation?
|
|
#24
| ||||
| ||||
|
What would be the "diagnostic" script ? The one i posted is NOT a diagnostic script. It is a script that creates a local php.ini file, with register globals set to off. Further more, it can also set other settings to the desired value. And yes, i looked at the documentation page 37 and 38 . Both solutions are applicable (htaccess file or local php.ini file) with VH servers, BUT the way the php.ini file should be created (according to their instructons) is wrong.
__________________ Navaldesign Logger Lite: Low Cost, Customizable, multifeatured Login script Instant Download Cart: a Powerfull, Customized, in site, DB driven, e-products Cart DBTechnosystems.com Forms, Databases, Shopping Carts, Instant Download Carts, Loggin Systems and more.... Advanced BlueVoda Form Processor : No coding form processor! Just install and use! Now with built in CAPTCHA! |
|
#25
| ||||
| ||||
| Funny, it works perfectly for me for the past 11 installations, whereas all the previous VodaTalk "solutions" would not, and is exactly why I bothered to share my experience to help pave a clearer path to the many Fantastico! installations VH clients depend on. And, it is rather hard to understand why the referenced instructions - pgs. 38, 39 - that come directly from the Official Joomla Website are "incorrect" .... why else would they be there, but to follow and learn from?? |
![]() |
| Currently Active Users Viewing This Thread: 1 (0 members and 1 guests) | |
| Thread Tools | |
| |