Recent content by thegriff

  1. T

    Banning Mass Mail Scripts

    Does this have anything to do with why my code has stopped working when sending an email? It worked last week, works on my test system, but (very slowly) errors here. This isn't mass mailing, just an ocasional notification, or a manual one shot test.
  2. T

    mySql trigger and SUPER Privilige

    So I can't set triggers at all then? OK - thanks, I'll just have to do it manually! (Wish I'd known before I spent a day on this :laugh:)
  3. T

    mySql trigger and SUPER Privilige

    I am trying to add a trigger to my mySQL DB, but whether I try it from phpMyAdmin or programatically from C# in my web site, I allways get the error: Access denied; you need the SUPER privilege for this operation All the users I have created have full priviliges, and I use the same user fro...
  4. T

    Is this a mono bug?

    Yes, probably. But since thier bug reporting procedure is such a PITA I figured better ask it here, where I first experienced it in case it was a known local problem rather than a mono one. Thanks anyway!
  5. T

    Is this a mono bug?

    I have found a small problem which I am assuming is a bug in Mono - but I am not certain that is where the problem is. I can replicate it in a tiny .aspx file, and I have a workaround but I just want to be sure that mono is responsible. This code works fine ASP.NET / winXP / IE, does not work...
  6. T

    MySQL <-> VB.net issues

    Tutorials do seem a bit useless - I had to work out most of it myself, with bits of google everywhere. You have the mySql address, which is good: mysql-starka.x10hosting.com but it won't work - see later under web.config! Have you got the mySql Connector? (the bit that comes in two ASP.NET...
  7. T

    ASPX MasterPage upload

    Firstly, I assume your primary ASPX page is Default.aspx, and you also have a related file called Default.apsx.vb (or similar - I use C# so mine are .aspx.cs). Using CPanel File Manager, ftp, or (my prefered) Filezilla copy them both to the public_html directory of your webspace. Remove any...
  8. T

    Email, ASP.NET amd authentication

    Re: Email, ASP.NET amd authentication [SOLVED] Thank you for the replies - I have found a solution! The Authentication requirement is a red herring; simply remove all reference to it and the problem goes away. The following code sends a email to a user (of the standard ASP.NET membership...
  9. T

    Email, ASP.NET amd authentication

    I have set up a system where registration and login are required, and as part of teh registration process I confirm Email addresses by sending a message containing an authorization code - all pretty standard stuff. The problem is that the only way I have found to send the email needs my cpanel...
  10. T

    asp.net and mysql

    Yes it is - but I had loads of problems myself! The solution: Copy both mysql.Data.dll and mysql.web.dll to the bin directory, i didn't have to add any references, it just worked. using MySql.Data.MySqlClient; ... strConnect =...
  11. T

    mySQL startup

    Mmm. It is all a little odd: php @ x10 = localhost asp.net @ x10 = myqsl.x10 local machine asp.net mySQL = localhost local machine asp.net SQL = GRIFF\\SQLEXPRESS Go figure...:nuts: It's simple enough when you know what to use, but working it out from scratch is a real PITA!
  12. T

    mySQL startup

    Thanks for the sugestion, but it was already there, below the MySqlCommand constructor. As I said, it's sorted now, the problem was the connection string addressing "localhost" instead of "mysql.x10hosting" hookUp = newMySqlConnection(strConnect); DataOutput.Text += "Connected<br/>"...
  13. T

    mySQL startup

    mySQL startup [Solved] My bad: I assumed "remote access" was for paid access only. Changing "localhost" in the connection string to "mysql.x10hosting.com" worked like a charm. Working connection string: "server=mysql.x10hosting.com;user...
  14. T

    I'm an idiot, but... mySQL with c#

    I know it's probably simple, but it's driving me round the bend. I have created and populated a db using phpmyadmin, and created a local copy for testing. I have created a web.config file in the root of public_html: <?xml version="1.0" ?> <configuration> <appSettings /> <connectionStrings />...
Top