Error on Joomla Installation
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Plusnet Community
- :
- Forum
- :
- Help with my Plusnet services
- :
- Everything else
- :
- Error on Joomla Installation
Error on Joomla Installation
26-04-2010 11:40 PM
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Report to Moderator
I am hoping someone here can help me as I am pretty new to this. I am attempting to install Joomla on the ccgi platform. I have uploaded the files and set the folders to 710, the *.php and *.js files to 700 and everything else to 640.
When I run the installation page I get the following error, which doesn't allow me to select next. You can see the error in the attachment.
Could it be that the ccgi platform does not support this version of Joomla which requires minimum of PHP 4.3.10
Any help is appreciated.
TLE.
Re: Error on Joomla Installation
27-04-2010 5:17 PM
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Report to Moderator
TLE
Re: Error on Joomla Installation
28-04-2010 1:41 PM
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Report to Moderator
To help diagnose what the installation script objects to could you post an extract from the index.php file covering the lines where the error occurs?
David
Re: Error on Joomla Installation
29-04-2010 9:29 AM
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Report to Moderator
Gabe
Re: Error on Joomla Installation
29-04-2010 10:05 AM
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Report to Moderator
How do you unzip a file directly on the server when there is no telnet support? I can't figure this out and wondered if someone could let me know how you do this and the syntax required. They have suggest this as a possible solution.
Thanks
TLE
Re: Error on Joomla Installation
29-04-2010 10:52 AM
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Report to Moderator
#!/bin/bash
echo "Content-type: text/plain"
echo
unzip joomla.zip
whatever.cgi, placed in the same folder as joomla.zip. Set the cgi script's permissions 0700, and run it from your browser. Or, for .tar.gz:
#!/bin/bash
echo "Content-type: text/plain"
echo
tar -xvvzf joomla.tar.gz
Gabe
Edit: missed a z off the last gz
Re: Error on Joomla Installation
29-04-2010 1:11 PM
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Report to Moderator
I manually configured the config file and can now get into the administration side, but I am getting the following error.
window.addEvent is not a function
http://ccgi.myusername.plus.com/Joomla/ ... /index.php Line: 14
The guys at Joomla said I should use the following permissions:
All Joomla! directories should be 755
All Joomla! files should be 644 with the exception of configuration.php as previously stated.
The only exceptions to the rule would be the tmp/ log/ directories that may need to be set to 777 in certain situations but that is preferably avoided.
Where as I used Plusnets preffered settings:
All Folders (directories) 710
All Script files (.php .js) 700
All Static files (.htm .html .css .txt .png .jpg .gif) 640
Any ideas as to this new error, have I missed some permissions? I tried using the ones from Joomla but I just got internal server error so I reverted the permissions back.
Thanks
TLE
Re: Error on Joomla Installation
29-04-2010 2:01 PM
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Report to Moderator
Gabe
Re: Error on Joomla Installation
29-04-2010 2:15 PM
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Report to Moderator
I have installed Fiddler 2 and it appears I am getting a 403 message back for:
GET /Joomla/media/system/js/mootools.js HTTP/1.1
GET /Joomla/includes/js/joomla.javascript.js HTTP/1.1
GET /~dresser/Joomla/administrator/templates/khepri/js/menu.js HTTP/1.1
GET /~dresser/Joomla/administrator/templates/khepri/js/index.js HTTP/1.1
So this must be a permissions issue with the Javascripts in those locations.
Am I on the right lines?
Re: Error on Joomla Installation
29-04-2010 2:27 PM
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Report to Moderator

Gabe
Re: Error on Joomla Installation
29-04-2010 9:04 PM
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Report to Moderator

I have one final issue which I believe is to do with my htaccess.txt file, then again maybe it's normal.
http://ccgi.username.plus.com/~username/administrator/
Is the above format normal? I have never seen this before '~username' Is it possible to edit the htaccess.txt file to stop this?
Re: Error on Joomla Installation
04-05-2010 9:26 AM
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Report to Moderator
Apologies for the delay in replying.
Yes: normal for
I don't use Joomla, but I have a vanilla test install of 1.5.14, which doesn't sprout /~username in its urls, so I guess that some customization may be at fault. Someone with more specific knowledge of Joomla may be able to add light. It looks like a /~username could cause problems with the way Joomla locates its own files and, if that's the case, it may be worth fixing.
The first thing I'd just try is editing the configuration.php file and insert the url for your site in $live_site:
var $live_site = 'http://ccgi.username.plus.com/joomla';
or without the folder if installed in root.
If that doesn't fix it then you could try running your site through something like <a href="http://community.plus.net/forum/index.php/topic,84267.msg697776.html#msg697776">this wrapper</a>. If you're also using Joomla's own .htaccess rewrites, then the combination would look something like <a href="http://community.plus.net/forum/index.php/topic,84587.msg698319.html#msg698319">this</a>, noting the changes to the rewritebase and rewriterule for Joomla being in a folder.
Gabe
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Plusnet Community
- :
- Forum
- :
- Help with my Plusnet services
- :
- Everything else
- :
- Error on Joomla Installation