Author Topic: Installation of the nbill Zip file  (Read 2301 times)

Offline slick

  • Jr. Member
  • **
  • Posts: 3
    • View Profile
Installation of the nbill Zip file
« on: 30/July/2008, 05:22:38 PM »
Hi

I seem to be having a simlilar problem to this post.

http://www.nbill.co.uk/forum/index.php/topic,525.0.html

I am using Joomla 1.5 and have enabled the legacy mode.

I have then gone into Extentions > Install / Uninstall and selected Browse  and located the zip file for upload.

Once the upload commences Joomla ticks away for a few moments but then i just get a more or less standard error from Internet Explorer:

Internet Explorer cannot display the webpage
   
Most likely causes:
You are not connected to the Internet.
The website is encountering problems.
There might be a typing error in the address.

What you can try:
Diagnose Connection Problems 
More information

I tried adding the command "set_time_limit(300);" into /administrator/index.php but i still get the same message. The Components folder is also set to CHMOD 777.

Can anyone please point me in the right direction please as I dont seem to be getting a very useful error message when the upload fails.

Thanks

Slick
 


:

Offline netshine

  • Administrator
  • Hero Member
  • *****
  • Posts: 4,952
    • View Profile
Re: Installation of the nbill Zip file
« Reply #1 on: 30/July/2008, 06:48:14 PM »
Did you try increasing the memory limit as also described in that other topic? Is there a file called error_log in your /administrator/ folder? If so, what does it say?

Offline slick

  • Jr. Member
  • **
  • Posts: 3
    • View Profile
Re: Installation of the nbill Zip file
« Reply #2 on: 31/July/2008, 11:22:48 AM »
Sorry i missed the bit about allocating memory. Yes thats worked now.

Thank you for your response.

Slick

Offline ZK-MADMAX

  • Jr. Member
  • **
  • Posts: 4
    • View Profile
Re: Installation of the nbill Zip file
« Reply #3 on: 20/August/2008, 10:36:01 AM »
How do you increase the memory limit as I am having the same troubles myself?

Offline netshine

  • Administrator
  • Hero Member
  • *****
  • Posts: 4,952
    • View Profile
Re: Installation of the nbill Zip file
« Reply #4 on: 20/August/2008, 05:02:45 PM »
Go to the /administrator/index.php file, and just after the line that says:

Code: [Select]
define( '_JEXEC', 1 );
...add the following on a new line:

Code: [Select]
set_time_limit(300);
ini_set("memory_limit", "128M");