Jump to content

MrProsser

Members
  • Posts

    6
  • Joined

  • Last visited

MrProsser's Achievements

Newbie

Newbie (1/14)

1

Reputation

  1. I recently installed Joomla 3.x on Heliohost using Softaculous and it works, but when I go to the location I installed it, I see a directory listing rather than index.php automatically being used as the homepage. http://tstewart.heli...org/joomlaSite/ On my main site I have modified .htaccess to use Home.aspx as the DirectoryIndex, but when I do this to the htaccess file in the joomlaSite directory: DirectoryIndex index.php I get this error Am I making a mistake here? I am not too familiar with htaccess files.
  2. I have been developing an application making use of the Subgirum Google Maps wrapper for ASP.NET. This application works when I test it on my local system but when I deploy it I get this error: Server Error in '/' Application Object reference not set to an instance of an object Description: HTTP 500. Error processing request. Stack Trace: System.NullReferenceException: Object reference not set to an instance of an object at System.Web.UI.ScriptManager.RegisterScript (System.Collections.Generic.List`1& scriptList, System.Web.UI.Control control, System.Type type, System.String key, System.String script, System.String url, Boolean addScriptTag, RegisteredScriptType scriptType) [0x00000] in <filename unknown>:0 at System.Web.UI.ScriptManager.RegisterClientScriptInclude (System.Web.UI.Control control, System.Type type, System.String key, System.String url) [0x00000] in <filename unknown>:0 at (wrapper managed-to-native) System.Reflection.MonoMethod:InternalInvoke (object,object[],System.Exception&) at System.Reflection.MonoMethod.Invoke (System.Object obj, BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x00000] in <filename unknown>:0 Version information: Mono Runtime Version: 2.6.7 (tarball Thu Oct 18 23:33:40 PDT 2012); ASP.NET Version: 2.0.50727.1433 I am pretty new to this so this has me pretty stymied, I really have no idea where to start when it comes to tracking down this error. Does this error suggest anything in particular or is it too generic to be of use?
  3. Hi, I tried both but had problems. Trying to the local version I kept getting errors ERROR 22 (HY000): File 'C:Documents and Settings stewartMy DocumentsVisual Studio 2010WebSitesExamplesSiteApp_Data sevent.txt' not found (Errcode: 22 - Invalid argument) and when I uploaded it to /home/tstewart/tsevent.txt, I ended up getting the same error as in the original post.
  4. I created a mySQL database in cPanel called tstewart_tsunami, as well as a user tstewart_root, which I then gave access to the database and gave it full privileges. Additionally I used the '%' wildcard to allow remote access to any host. I log into the database using the command line: C:\Program Files\MySQL\MySQL Server 5.6\bin>mysql -h johnny.heliohost.org -u tstewart_root -p tstewart_tsunami and created a table in tstewart_tsunami called sourceEvents, and I want to load the data from a tab delimited file into this table. I tried to do this using this statement: mysql> LOAD DATA INFILE 'C:\Documents and Settings\tstewart\WebSites\ExamplesSite\tsevent.txt' INTO TABLE sourceEvents; but I get the error: I have not really done this before so perhaps I am missing something, but I thought that by adding the user to the database and allowing remote connections this should work. I should note that after connecting to my database in Visual Studio I could see the new table, and when I check the DB in cPanel I can see that the table was created. So apparently I can remotely create tables but for some reason I cannot load data into them.
  5. Thanks, yes, that is what I was trying to do. I had already allowed access using that form. But I did two other things and got it to work earlier today, I created a schema in mySQL Workbench that was the same name as the database created in cPanel, and I then realized it was not enough to create a user, but that I had to add that user to the database and grant them various privileges.
  6. I am new to web development and I am having some problems figuring out how to deploy databases to the heliohost servers. My account is on johnny as I am doing ASP.NET development. I am trying to either deploy a local database to my heliohost account, or start a remote connection to the heliohost database and work with that directly. I tried to create a connection to johnny in mySQL workbench, but have been having problems. I created a new server instance to johnny and that seems to have worked. Then I attempted to create a new DB connection. This seemed to work as well, but then I attempted to create a new model, created a single table as a test and tried to forward engineer this and export the table but keep getting errors: It successfully connects to the DDMS, but when it tried to Execute Forward Engineered Script I get an error: I was wondering if anyone has any idea what I might be missing or what I should try to get this to work? Just to update this, I realized that I had not associated the user with the tstewart_test database on heliohost, but after doing this and giving it full privileges it still did not work.
×
×
  • Create New...