Jump to content

acentoespanol

Members
  • Posts

    7
  • Joined

  • Last visited

Posts posted by acentoespanol

  1. Hey, I have two quick questions:

     

    I understand that I'm only allowed to have one free hosting account, (and I already have one) however, a friend has asked me to help build a web project for a class, and I was wondering if it's okay for me to create a second account in this instance (my friend will be the owner of the account, and eventually his contact email will be the account email) I just need to set it up for him and then both of us will put files onto it. Once we're finished with the project, only he'll be accessing it, not me.

     

    Summed up, is it okay for me to create a free account for someone else? (even though I already have an account)

     

    Second question: (assuming the answer to the first is yes) the project he's asking for my help on is to set up (using PHP and mySQL) a mini demonstration banking system to show kids in an economy class how real banking systems work. It's for educational purposes only, there's fake currency bills, but no connections to any real banking systems or financial data. My account was suspended on two other web hosts because I didn't realize that they didn't allow anything related to this (even fake systems) so I was just wondering if it's okay to build such a system on one of your free hosting accounts. (every page will have a footer stating that no real or sensitive financial/personal data should ever be put in) Is this allowed?

     

    Thanks for your time!

  2. Hi DeepBlue

     

    Lol my bugs have progressed to now I THINK my config file is okay (changing to 3.5 in the dialog box did actually work, I just had to manually delete a ton of crap in the config file that it created) now all I get though is an error 500, and it aays that "Object reference not set to an instance of an object

    At first when I checked the error log, it said that I was missing 404.shtml and robots.txt, I created a 404 and a blank txt named robots, but the page still gives the error (only now nothing shows up in the log). I have been wondering though, I have an sql database, is it possibly not connecting properly to that? It worked fine locally, but the connection strings in the config just seem like there should be something else...(first time I've ever worked with sql though, so I don't know.)

  3. Woah, my test website suddenly started working, so I tried reuploading my main blog. Thankfully I'm starting to get somewhere, but I'm still not quite sure what to do. It's now giving me more info about the problem, it's an Error 500, then says:

    Unrecognized attribute 'targetFramework'. (/home/acento/public_html/Web.config line 1)

    I went into my config file, where it says <compilation debug="true" targetFramework="4.0" /> and removed the targetFramework attribute completely, but it still shows the same error...any suggestions?

  4. Hi everyone,

     

    I've created a blog in asp.net (c#) and the past two days have been nothing but headaches trying to figure out how to get it up and working properly. No matter what I do, every page turns up a generic error:

     

     

     

    Server Error in '/' Application

     

    Description: An application error occurred on the server. The current custom error settings for this application prevent the details of the application error from being viewed remotely (for security reasons). It could, however, be viewed by browsers running on the local server machine.

     

    Details: To enable the details of this specific error message to be viewable on remote machines, please create a <customErrors> tag within a "web.config" configuration file located in the root directory of the current web application. This <customErrors> tag should then have its "mode" attribute set to "Off".

    <!-- Web.Config Configuration File -->

     

    <configuration>

    <system.web>

     

    <customErrors mode="Off"/>

    </system.web>

    </configuration>

     

    Notes: The current error page you are seeing can be replaced by a custom error page by modifying the "defaultRedirect" attribute of the application's <customErrors> configuration tag to point to a custom error page URL.

    <!-- Web.Config Configuration File -->

     

    <configuration>

    <system.web>

    <customErrors mode="RemoteOnly" defaultRedirect="mycustompage.htm"/>

     

    </system.web>

    </configuration>

     

     

    I have added the requested <customErrors mode="Off" /> tag to the config file, but it still doesn't show any details about the error. I've tried changing/taking out dozens of different parts of my code files to try and manually figure out what's wrong, but it still shows that page no matter what. (And I've cleared my cache every time etc. etc.) I've googled the problem extensively, but still can't figure out how to even make it show what's wrong!!

     

    Note: the application's target framework is 4.0. When I noticed that the support was only for 3.5 on this host, I changed it to 3.5 but with no different results.

     

    I even tried to upload a simple one page asp.net project with nothing but the text "hello world" on it, and it showed the exact same page.

     

    Please help!

    My domain is acento-espanol.com (it's on the johnny server)

×
×
  • Create New...