Website suddenly 0 disk space allotted ?

Status
Not open for further replies.

lahsf

New Member
Messages
3
Reaction score
0
Points
0
first of all, you all doing a great job with this superb hosting :)

Here the adress of my site : http://www.lahs.x10hosting.com/

I got a website that the files/stats are updated everyday.
But not the front page. The front page are the same from a while.
But all of a sudden I got a weird problem accessing the site.
It's automatically trying to open/save a file. Just try the link to see.
I can't understand why, without change on my part it came to this.

I've seen you were upgrading stuff, so I decided to wait.
Just in case it all come back to normal. But it's been like 2
weeks and the problem still there so I've decided to check with
you what happen / what could be done.

I'ts starting to make me crazy :lol: cause I can't figure what's the problem.

Can you help me ?

I justrealize that my account say it's in good standing,
that I got o bandwith used this month on a lot of bandwith ....
BUT THERE MAY BE A CLUE ....
I'm using it's say, 13M on 0M. There's 0 disk space allotted ....

That mean I got an adress but no diskspace ????
I didn't change anything ... ???

Hope you could help me soon ....

Thanks in advance

Eric Provencher
 

galaxyAbstractor

Community Advocate
Community Support
Messages
5,508
Reaction score
35
Points
48
Does it still say that? What does your cPanel say about your diskspace?
 

gichan

New Member
Messages
64
Reaction score
0
Points
0
Please be patient.
I saw a spanish guy has said x10 has faced millions of problems in spanish..

Be patient and see what happens next..
 

descalzo

Grim Squeaker
Community Support
Messages
9,373
Reaction score
326
Points
83
first of all, you all doing a great job with this superb hosting :)

Here the adress of my site : http://www.lahs.x10hosting.com/

I got a website that the files/stats are updated everyday.
But not the front page. The front page are the same from a while.
But all of a sudden I got a weird problem accessing the site.
It's automatically trying to open/save a file. Just try the link to see.
I can't understand why, without change on my part it came to this.

I've seen you were upgrading stuff, so I decided to wait.
Just in case it all come back to normal. But it's been like 2
weeks and the problem still there so I've decided to check with
you what happen / what could be done.

I'ts starting to make me crazy :lol: cause I can't figure what's the problem.

Your title is misleading and the 0 MB disk space is a separate issue (I think).

The file it is trying to download is part of what looks like jQuery script.

Code:
// Begin Actions
function F_doLoaded() {
 document.main = new F_cMain();
 document.objectModel = new Object();
 F_OM('Layout','LayoutLYR', 'doc', '', new Array());
 F_OM('Picture23' , 'Picture23LYR', 'img', 'Layout',new Array(
 'Mouse Over','Picture23','Set Src','./assets/images/logo_med_ana_coul.gif',0,
 'Mouse Out','Picture23','Set Src','./assets/images/logo_med_ana_gris.gif',0,
 'Clicked','Layout','Go To','./ANA.HTM',0),'',0);
  F_OM('Picture37' , 'Picture37LYR', 'img', 'Layout',new Array(
 'Mouse Over','Picture37','Set Src','./assets/images/logo_med_bos.gif',0,
 'Mouse Out','Picture37','Set Src','./assets/images/logo_med_bos_gris.gif',0,
 'Clicked','Layout','Go To','./BOS.HTM',0),'',0);
  F_OM('Picture24' , 'Picture24LYR', 'img', 'Layout',new Array(
 'Mouse Over','Picture24','Set Src','./assets/images/logo_med_cal_coul.gif',0,
 'Mouse Out','Picture24','Set Src','./assets/images/logo_med_cal_gris.gif',0,
 'Clicked','Layout','Go To','./CLG.HTM',0),'',0);
 
 F_pageLoaded('Layout');
}
 
$(document).ready( function() {
F_onLoaded();
 $('#Picture23A').bind('click', function(__e) { return (F_e('Picture23', F_CL, __e)); } );
 $('#Picture23A').bind('mouseover', function(__e) { return (F_e('Picture23', F_MV, __e)); } );
 $('#Picture23A').bind('mouseout', function(__e) { return (F_e('Picture23', F_MT, __e)); } );
 $('#Picture37A').bind('click', function(__e) { return (F_e('Picture37', F_CL, __e)); } );
 $('#Picture37A').bind('mouseover', function(__e) { return (F_e('Picture37', F_MV, __e)); } );
 $('#Picture37A').bind('mouseout', function(__e) { return (F_e('Picture37', F_MT, __e)); } );
 $('#Picture24A').bind('click', function(__e) { return (F_e('Picture24', F_CL, __e)); } );
 $('#Picture24A').bind('mouseover', function(__e) { return (F_e('Picture24', F_MV, __e)); } );
 $('#Picture24A').bind('mouseout', function(__e) { return (F_e('Picture24', F_MT, __e)); } );
});
// End Actions

What is your default index page called?
Check htaccess to make sure.
Open it and look at it the index page.
Post it here.
 

djsmentya

New Member
Messages
1
Reaction score
0
Points
0
Your title is misleading and the 0 MB disk space is a separate issue (I think).

The file it is trying to download is part of what looks like jQuery script.

Code:
// Begin Actions
function F_doLoaded() {
 document.main = new F_cMain();
 document.objectModel = new Object();
 F_OM('Layout','LayoutLYR', 'doc', '', new Array());
 F_OM('Picture23' , 'Picture23LYR', 'img', 'Layout',new Array(
 'Mouse Over','Picture23','Set Src','./assets/images/logo_med_ana_coul.gif',0,
 'Mouse Out','Picture23','Set Src','./assets/images/logo_med_ana_gris.gif',0,
 'Clicked','Layout','Go To','./ANA.HTM',0),'',0);
  F_OM('Picture37' , 'Picture37LYR', 'img', 'Layout',new Array(
 'Mouse Over','Picture37','Set Src','./assets/images/logo_med_bos.gif',0,
 'Mouse Out','Picture37','Set Src','./assets/images/logo_med_bos_gris.gif',0,
 'Clicked','Layout','Go To','./BOS.HTM',0),'',0);
  F_OM('Picture24' , 'Picture24LYR', 'img', 'Layout',new Array(
 'Mouse Over','Picture24','Set Src','./assets/images/logo_med_cal_coul.gif',0,
 'Mouse Out','Picture24','Set Src','./assets/images/logo_med_cal_gris.gif',0,
 'Clicked','Layout','Go To','./CLG.HTM',0),'',0);
 
 F_pageLoaded('Layout');
}
 
$(document).ready( function() {
F_onLoaded();
 $('#Picture23A').bind('click', function(__e) { return (F_e('Picture23', F_CL, __e)); } );
 $('#Picture23A').bind('mouseover', function(__e) { return (F_e('Picture23', F_MV, __e)); } );
 $('#Picture23A').bind('mouseout', function(__e) { return (F_e('Picture23', F_MT, __e)); } );
 $('#Picture37A').bind('click', function(__e) { return (F_e('Picture37', F_CL, __e)); } );
 $('#Picture37A').bind('mouseover', function(__e) { return (F_e('Picture37', F_MV, __e)); } );
 $('#Picture37A').bind('mouseout', function(__e) { return (F_e('Picture37', F_MT, __e)); } );
 $('#Picture24A').bind('click', function(__e) { return (F_e('Picture24', F_CL, __e)); } );
 $('#Picture24A').bind('mouseover', function(__e) { return (F_e('Picture24', F_MV, __e)); } );
 $('#Picture24A').bind('mouseout', function(__e) { return (F_e('Picture24', F_MT, __e)); } );
});
// End Actions
What is your default index page called?
Check htaccess to make sure.
Open it and look at it the index page.
Post it here.
koroche, dayde prosto host i vsekoroche, dayde prosto host i vse
 

lahsf

New Member
Messages
3
Reaction score
0
Points
0
Hi,

thanks for trying to help me to solve the problem, I appreciate.

Fisrt, it's been 2 weeks at least that I got the problem.
It happen without me changing any code.
One day it worked, the other it does'nt.
The only thing I changed ? I replaced a few PDF
like always before with the upadted content.

I understand that the disk space and the problem
it make when logging to the page could be different.
I was just pointing at that as something that muste be known.

My index page is called : index.html

*** "Check htaccess to make sure.
Open it and look at it the index page.
Post it here." ***

I don't know what is the htaccess ?
And what you'd like I've posted here for you to help me.

Though I appreciate the help.

Just let me know what could help and be sure I'll do it.

Eric P.
Edit:
Hi

I was searching on my website, in the publichtml I found
a file named as you said and here the htaccess content.

*************************** here is the start of file

# -FrontPage-
IndexIgnore .htaccess */.??* *~ *# */HEADER* */README* */_vti*
<Limit GET POST>
order deny,allow
deny from all
allow from all
</Limit>
<Limit PUT DELETE>
order deny,allow
deny from all
</Limit>
AuthName lahs.x10hosting.com
AuthUserFile /home/lahs/public_html/_vti_pvt/service.pwd
AuthGroupFile /home/lahs/public_html/_vti_pvt/service.grp

here is the end of the file ********************************

is that the file content I was asked for ?
Is this useful ?

Thanks in advance

Eric P.
 
Last edited:

longoria

New Member
Messages
17
Reaction score
0
Points
0
I just checked mine and it is the same way with the 0 disk space but everything works fine
 

usroots

New Member
Messages
9
Reaction score
0
Points
0
I have the same issue of 0 disk space reading in the account panel, but I know that I haven't used it all.

I also have a re-direct that isn't working.
 
Status
Not open for further replies.
Top