Jump to content

jme574

Members
  • Posts

    86
  • Joined

  • Last visited

Everything posted by jme574

  1. I have only built 2 sites in my life. I'm not a big computer guy or really that computer savy. the first site was www.fullefx.net made with Webeasy, then i made this one www.totallymobiledjs.com with webeasy 5.0 pro. http://www.v-com.com/product/Web_Easy_Pro_Home.html I know there are alot of mistakes in my site, but they are user mistake because i didn't know all the "rules" of making a website. Webeasy pro lets you make your own templetes or use theirs.You can add different types of script, add java programs, flash, swift and a whole lot of other type of movie files. The possablities are almost endless.
  2. so then i would just put a link on my forums board and point it to that url? right
  3. I have a php forums board with my website. I am thinking about adding a chat room on the php board. My question is - in my cpanel i have an option to put in a chat room or a bulletion board on my website. My website is www.fullefx.net and my forums board is www.fullefx.net/forums The instructions to put a chat room on my website says to: Java Chat If you would prefer a java chat, just the link below in any of your pages: http://fullefx.net/cgi-sys/mchat.cgi?channel=fullefx.net If i want to put the java chat on my forums board, would i put a link to: http://fullefx.net/FORUMS/cgi-sys/mchat.cgi?channel=fullefx.net instead?
  4. ok - i was just checking because i seen another place that offered 3x the amount of space but i feel comfortable with tch and know that if i had any questions/problems i could come here and get help right away.
  5. Does tch offer packages (that are not listed) that are more than 3000mb of disc space? or can you connect several of the large resellers account together?
  6. yeah i set up two different forwards one for each of us. i think he might have bulk mail filter on his hotmail account but wouldn't it at least go to the bulk mail folder?
  7. I'm not really sure - just tried to check with him but he is unavailable. I do know that he is using a free hotmail account. Whould that matter?
  8. Is it hard to manage a resellers acount, and allocate the space and stuff? - i get around ok on the cpanels a have for the two accounts now but those are only for one account each. Do you have a demo resellers cpanel like the test drive you have for the regular cpanel?
  9. this is not really presells since my account is already hosted with tch, but i am wanting or thinking about upgrading. i have two accounts, one of them is a starter account that i am thinking of upgrading to the Deluxe Plan. I only have 90 days left with my current year but not wanting to wait that long. How can i upgrade what i currently have not to what i want? Do i just pay the difference for the 90 days between what i pay now and what the cost of the new plan is? Last question. I have 2 sites now and i am thinking of adding two totally different site to make a total of 4 diffent sites. Should i just get a resellers account and break the 4 different sites up how i want them when i need them? I am unfamiliar with exactly what a resellers account is and how it works.
  10. I have my Neomail (info@) account set up to forward to my Outlook since i have serveral email accounts, i also have it setup to forward to my partners email also but i am the only one receiving the forwarded email, he doesn't receive anything from the info@ account. Is there some reason why i am unable to successfully forward the email from one account to two different accounts? Or is there some sort of CC feature i should set up so we both receive the email?
  11. not sure if this helps find the problem or not but i came across this in my file manager: sql_query($sql_query[$i])) ) { $errored = true; $error = $db->sql_error(); echo " -> FAILED ---> " . $error['message'] . "\n\n"; } else { echo " -> COMPLETED\n\n"; } } if ($errored) { return (FALSE); } else { return (TRUE); } } // // Here we go // include($phpbb_root_path.'includes/sql_parse.'.$phpEx); $available_dbms = array( "mysql" => array( "SCHEMA" => "attach_mysql", "DELIM" => ";", "DELIM_BASIC" => ";", "COMMENTS" => "remove_remarks" ), "mysql4" => array( "SCHEMA" => "attach_mysql", "DELIM" => ";", "DELIM_BASIC" => ";", "COMMENTS" => "remove_remarks" ), "mssql" => array( "SCHEMA" => "attach_mssql", "DELIM" => "GO", "DELIM_BASIC" => ";", "COMMENTS" => "remove_comments" ), "mssql-odbc" => array( "SCHEMA" => "attach_mssql", "DELIM" => "GO", "DELIM_BASIC" => ";", "COMMENTS" => "remove_comments" ), "postgres" => array( "LABEL" => "PostgreSQL 7.x", "SCHEMA" => "attach_postgres", "DELIM" => ";", "DELIM_BASIC" => ";", "COMMENTS" => "remove_comments" ) ); $dbms_schema = 'schemas/' . $available_dbms[$dbms]['SCHEMA'] . '_schema.sql'; $dbms_basic = 'schemas/' . $available_dbms[$dbms]['SCHEMA'] . '_basic.sql'; $remove_remarks = $available_dbms[$dbms]['COMMENTS'];; $delimiter = $available_dbms[$dbms]['DELIM']; $delimiter_basic = $available_dbms[$dbms]['DELIM_BASIC']; if ( !($fp = @fopen($dbms_schema, 'r')) ) { message_die(GENERAL_MESSAGE, "Can't open " . $dbms_schema); } fclose($fp); if ( !($fp = @fopen($dbms_basic, 'r')) ) { message_die(GENERAL_MESSAGE, "Can't open " . $dbms_basic); } fclose($fp); ?> Installing Attachment Mod Version 2.3.9 PLEASE UPLOAD THE CORRECT DATABASE SCHEMA FILES...If you have done so, run the Installer again."); } $sql_query = $remove_remarks($sql_query); $sql_query = split_sql_file($sql_query, $delimiter); $sql_count = count($sql_query); // // from update_to_rc3.php // echo "\n"; echo "\n"; for($i = 0; $i < $sql_count; $i++) { echo "Running :: " . $sql_query[$i]; flush(); if ( !($result = $db->sql_query($sql_query[$i])) ) { $errored = true; $error = $db->sql_error(); echo " -> FAILED ---> " . $error['message'] . "\n\n"; } else { echo " -> COMPLETED\n\n"; } } // // process basic informations // $sql_query = @fread(@fopen($dbms_basic, 'r'), @filesize($dbms_basic)); $sql_query = preg_replace('/phpbb_/', $table_prefix, $sql_query); if ( (strstr($sql_query, 'attach_config')) && (strstr($sql_query, 'attach_desc')) ) { die("PLEASE UPLOAD THE CORRECT DATABASE SCHEMA FILES...If you have done so, run the Installer again."); } $sql_query = $remove_remarks($sql_query); $sql_query = split_sql_file($sql_query, $delimiter_basic); $sql_count = count($sql_query); for($i = 0; $i < $sql_count; $i++) { echo "Running :: " . $sql_query[$i]; flush(); if ( !($result = $db->sql_query($sql_query[$i])) ) { $errored = true; $error = $db->sql_error(); echo " -> FAILED ---> " . $error['message'] . "\n\n"; } else { echo " -> COMPLETED\n\n"; } } $message = ""; if ( $errored ) { $message .= "Some queries failed. Please contact me via email, pm, at the board or whatever, so we can solve your problems...To Undo the changes to your database please execute mod_table_uninst.php."; } else { $message .= "Attachment Mod Tables generated successfully. To Undo the changes to your database please execute mod_table_uninst.php."; } echo "\n\nCOMPLETE!\n"; echo $message . ""; echo "NOW DELETE THIS FILE\n"; echo ""; echo ""; ?>
  12. ok - found 2 things when i went back through the file structure. Not sure if it is wrong or right. First: copy attach_mod/root/images/icon_clip.gif to images/icon_clip.gif copy attach_mod/root/images/icon_disk.gif to images/icon_disk.gif copy attach_mod/root/images/icon_disk_gray.gif to images/icon_disk_gray.gif the images folder is not in root folder they are here: copy attach_mod/images/icon_clip.gif to images/icon_clip.gif copy attach_mod/images/icon_disk.gif to images/icon_disk.gif copy attach_mod/images/icon_disk_gray.gif to images/icon_disk_gray.gif Second: STEP NUMBER II: Installing the Attachment Mod (Database) # # Upload these Files, they are only needed for installation: # # attach_mod/root/install/mod_table_inst.php -> install/mod_table_inst.php # # Upload the Schema Files in ASCII Mode (This is the Layout and Data for your Database): # (Maybe you have to create the install folder if it does not exist) # # for mysql: # attach_mod/root/install/schemas/attach_mysql_schema.sql -> install/schemas/attach_mysql_schema.sql # attach_mod/root/install/schemas/attach_mysql_basic.sql -> install/schemas/attach_mysql_basic.sql # # for mssql: # attach_mod/root/install/schemas/attach_mssql_schema.sql -> install/schemas/attach_mssql_schema.sql # attach_mod/root/install/schemas/attach_mssql_basic.sql -> install/schemas/attach_mssql_basic.sql # # for postgresql: # attach_mod/root/install/schemas/attach_postgres_schema.sql -> install/schemas/attach_postgres_schema.sql # attach_mod/root/install/schemas/attach_postgres_basic.sql -> install/schemas/attach_postgres_basic.sql Should all of those have been uploaded? I have all six of them in the file manager. Or should only the (mysql) two be there? If those are right how i have them then i am not sure where the problem is.
  13. It site is actully fullefx.net so i went to this address http://www.fullefx.net/forums/install/mod_table_inst.php and i get a 404 not found error. Maybe i missed a step somewhere, but i backtracked and don't see what i missed, i will try again.
  14. Ok - getting a little further now - i dl'ed the hack and extracted the zip files to a folder on my desktop - i then uploaded all the files in that folder via ftp to my forums folder in my file manager. Now i am at this point. Now we want to create the tables, therefore we run mod_table_inst.php (http://www.yoursite.com/phpBB2/install/mod_table_inst.php) Please be sure to enter the correct URL, the mod_table_inst.php file has to be placed within the install folder. Contact me at the board if you have questions or problems. here's my problem - how do you run that file - when i click on it - it opens an "open with" box. that is when i click on that file from the folder on my desktop - if i go to the file manager in my control panel, i don't get a "run" option there are serveral options the closest one being show file.
  15. cpanel/file manager/public_html/forums? i have looked in there and all the files associated with it and still can't find anything about root folder - are there hidden files that i need to make unhidden?
  16. Ok now that i have downloaded the hack to add the add attactment feature - i opened it and read the directions. Here is my problem You are to star out by: STEP NUMBER I: Uploading all new Files # # Copy/Upload all files to their respective Location (the directory structure is in the folder root) However i can't find a folder called root or has root in the file name. I have looked all through my file manager and went to the phpMyadmin link and looked all through there. Can anyone tell me where i might find the "root" folder?
  17. Ok thanks for the help - just looked at the file that tells how to install and it looks like that kind of work is out of my league. thanks again
  18. I am having the same problem too. I tried the above fix and made the cookie domain forums@fullefx.net , the cookie name is set at what it was when i installed the board (phpbb2mysql) and the cookies path is also at, / however after making those changes we couldn't log on (tried 6 times) so i took the forums@fullefx.net out of the coockie domain line and left it blank again. Now people can log on but it takes 2 time to log in. Any help or a step i might of missed?
  19. How can i add an option to add attactments to post on my bb? I notice at the bottom of this page there is an option and on some of the other boards i visit there is an option too, but when i or anyone else post at my board (www.fullefx.net/forums) there is no option to add attachments. thanks,
  20. ok - i used the gen. you sent the link for and created a robot.txt file and saved it as such in microsoft word. Now if i understand right, i need to upload it via ftp to my root directory where my index file is located, right? I don't have a page named index, but i do have one named home, would that be the same? It is located in my public_html folder so is that where i should upload the robot.txt file to?
  21. According to my awstats i have 132 404 errors for the month of oct. so far. When i clicked to see what the errors are i went and check the pages that are listed but most of them work - the biggest one was /robots.txt. (with a total of 63) Does anyone know why this might be happening?
  22. Thanks again for all your help - learning alot tonight - but one last question. Is there a way to put my website on a cd so i can show it to someone using my laptop when i don't have an internet connection available?
  23. so actually - i wouldn't even need a cd backup? I could just go to my control panel/device manager and install the backup - or go to the backup link and click restore?
  24. ok this might seem like a stupid question - i created the full backup, it is in my file manager. i used smart ftp and downloaded the zipped backup file to my documents folder - and i am currently burning it to cd rom. Here is my question. IF i every lose my website (the files and stuff i used to create my website) how do i use this cd to reinstall me website at a later time?
  25. Thank you for such a fast reply! I am totally confiadent with total choice hosting and their backup ability. I just had a problem where i got a virus or something and everytime my computer booted up, it locked up on me so i wasn't able to run a virus scan or anything. Then on Sunday the company that hosts my Client data manager with all my cleint information and event info crashed and even though they said the had backup protection (RAID) the still had to drive to Chicago to deleiver their servers to a data recovey company. Needless to say everything after April 1st was lost. I lost 6 months of client info. I guess it was partily my fault for not having my own backup protection, but i won't make that mistake twice. thanks again
×
×
  • Create New...