Jump to content

wayne

Members
  • Posts

    86
  • Joined

  • Last visited

Everything posted by wayne

  1. Could you be more specific My server is ragnarok so what do I put as the address? ragnarok.tch.com? sftp.ragnarok.tch.com? For my user name do I put name@ragnorak.com cannot seem to get it working, I have selected port 22 I am trying to connect via dreamweaver.
  2. Hi I went to my cpanel, created an FTP account and then chose the option to configure FTP client (cyberduck for mac). The instruction show 2 options, sftp and ftp however I am only presented 1 option which is ftp (I see no sftp option). I have attached 2 screenshots: myserver: screenshot from my cpanel instructions: screenshot of the instruction (which so both ftp and sftp option). Wayne
  3. yes it seems I was sending to the wrong location, thanks for your help. Wayne
  4. Hi, I have sent an email to the help desk but no reply in 3 days. I have an account associated with my domain (call it domain1.ca). This is a starter account so very basic. I want my other registered domain (call it domainother.ca) to point to domain.ca I don't want a second directory, I just need anyone going to domainother.ca to actually go to domain.ca I am not sure how to do this and suspect I have to enter an A record but not sure. Can you advise? I have already entered the TCH domain name server info for both domains and my domain registrar. Thanks Wayne
  5. Thank, I will try. I first searched the forums and found lots of posts that said sFTP no longer allowed so did not even try.
  6. Hi I need to give access to my web designer to upload my site however I do not want to give him access to my entire cpanel where, if I am reading the posts correctly, you have to go to securely upload files. I was planning on giving him FTP access but I see there is no option for sFTP. I am not comfortable sending passwords over plain text but looks like that is the only option. Am I missing something or is there another way? He could give them to me to upload but as he is troubleshooting, doing edits etc. I would not want to have to constantly have him to email files to me, me upload, him check, and on and on. Thanks in advance Wayne
  7. Thanks so much for the fast reply I found my problem, this does not show up if you use Safari on the mac, when I switched to firefox, I see the html editor icon and it works. Wayne
  8. I recall that once there was a wysiwyg editor via cpanel however all I see now is code editior and text editor. I want to give my clients an easy way to edit there files (they are not webpage savy so the wysiwyg editor was ideal) wayne
  9. I used all the tools I could find in the admin section and the number of increments was adjusted but then stays the same again, ie I would have to constantly run the tool to recalculate everthing. Will wait to see if something comes from the SMF site forum but nothing so far
  10. I posted on the smf forum but no replies so far. thanks anyways
  11. Running the latest SMF forum (1.1.3) not sure if only after I upgraded to 1.1.3 or not but just noticed the count for the number of posts per user has stopped incrementing (number of posts stays the same) anyone know where to look to fix this? tried smf site but cannot find anything.
  12. Well my problem just came back. Currently I have only about 4 pages using the same user,whereas for the last few years I have had 80+ and have never had this error. I am suspecting that something is certainly wrong with some settings. Anyone else run into this problem? I am on server 365 i have submitted another help desk ticket but wondered if the community at large could offer any insights.
  13. Well my problem re-appeared today. Confusing since I only have two forms up at the moment while most of the year I have about 20 going at once and have never had this problem before. Help desk has told me to make sure I am closing my db sessions and not using persistent connections. Here is the code I am using. Would appreciate if someone can have a look to see if I am overlooking something. $hostname_mydbconnection = "localhost"; $database_mydbconnection = "xxxxxxxxx"; $username_mydbconnection = "xxxxxxx"; $password_mydbconnection = "xxxxxxx"; $mydbconnection = mysql_connect($hostname_mydbconnection , $username_mydbconnection , $password_mydbconnection ) or die(mysql_error()); bunch of code that reads, inserts data to the database At the end of the page I have: <?php mysql_free_result($Recordset1); mysql_close($mydbconnection ); ?> ************** So I thought that this should end the connection and that this page can be reloaded as often as necessary without problems. Am I missing something? Help desk did say that they have reset the mysql connections however not sure if this will happen again. When it does, all my forms stop working. Thanks
  14. OK did some research and have added mysql_close(); to the bottom of my pages, hope this solves the problem
  15. Thanks Andy I have this at the bottom of the page, is this what you mean? <?php mysql_free_result($Recordset1); ?> My understanding (limited) was that this closed the session so I should not have this problem.
  16. I have a form that a client uses to add records to a database. The php connection code is: $boxingdayrun = mysql_pconnect($hostname_dbname, $username_somename, $password_somepassword) or die(mysql_error()); So a client is using the form to add about 40 records however we are getting errors now that states Warning: mysql_pconnect() [function.mysql-pconnect]: User online_bob has already more than 'max_user_connections' active connections in /.........../form.php on line 10 User online_bob has already more than 'max_user_connections' active connections I have been using this code for a couple years without any problems. Is there something else I can use so that each time the form is used, it will work without the error? Thanks
  17. Sure you can have multiple servers for load balancing etc. If one fails, the others take over. However the server can be fine and yet a site be unreachable due to another piece of hardware (switches, etc) and the site may become unreachable. 100% availability? Not possible. Just my opinion.
  18. yep I found it under my profile and I did have a spelling error. Thanks all!!
  19. Hi Aaron Under the server settings I have my email listed however I am not sure if this is the admin account or not. I cannot find anywhere else where the admin email setting is listed. The address I have entered here is my correct address yet I am not receiving the email notifications. Any thoughts? Wayne
  20. Just installed SMF forum through fantastico. All is working however now I want to approve new members. So I have enabled this in the admin tool. Under server settings section I have my address under webmaster (I think this is the admin address as I cannot find any other place where I have to enter an email address). The problem is that I am not receiving an email when someone is awaiting an approval to join my forum. Any ideas? Thanks
  21. I found that in the blackberry setup under account I have to enter name@**** not just name. Also are you saying that if you forward mail to the blackberry email account that the mail will also stay in the tch account? I thought mail forwarded meant that it does not also stay in the tch account. wayne
  22. David You know I went to a site, read the rules about 20 times and could not see why this was not working. Read your post and you know...a light bulb went off in my head..of course. And of course it now works thanks to your reply, much appreciated!! Wayne
  23. Using php I want to find out if a value entered in a form is 4 to 6 digits only. I used the expression if (!ereg("[0-9]{4,6})) die ("<h3 align=\"center\">The value you entered must be 4-6 digits only.<br />Use the back button and try again.</h3>"); value - expected result - result 123 - fail - fail 1234 - pass - pass 123456 -pass -pass 1234567 - fail -PASS!!!!! Why does this not work??? Any help would be appreciated.
  24. I use the following: PHP to process the form and send info to a mysql database PHP mail function (with the -f option) to send email receipt back to the client. PHP to also send info to a separate mysql database that dada mail uses I installed dadamail (to send, archive etc) email newsletters. You can edit the configuration file to make dada mail use a mysql table backend. I only use it for my email addresses. I am no programmer and found this all straight forward and it works well. I probably spend 2 to 3 hours to get this all working. Wayne
  25. I have looked further into this and found out that DADA mail is ideal for me. I have installed it and set it to use a mysql backend for the email addresses. A little tweaking of the conifg.pm file to remove some options on the list page and I can let my event directors log in and send an event update to registrants without fear of them editing the list properties. --- settings removed --- Thanks for your suggestions. Wayne Edit: TCH-Bruce - settings removed to prevent spammers from catching on
×
×
  • Create New...