Jump to content

roadmap

Members
  • Posts

    152
  • Joined

  • Last visited

Everything posted by roadmap

  1. Search engine-friendly Pack I ran across this mod if anyone is interested. Here's the description: Search engine-friendly Pack: this easy mod utilizes matt's show.php to automatically turn all ibf categories, forums and topics' URLs into search engine-friendly URLs, by removing all querry strings and session IDs, which google and other search bots do not like. they are the reason why ibf inner pages do not get indexed. example: http://gawaher.com/i2/index.php?act=ST&f=50&t=245 will be automatically changed to: http://gawaher.com/i2/show.php/act/ST/f/50/t/245 google hates querry strings, like [&,?,=] but using this little mod, it will simply see your URLs as normal directories, so their spiders will index your forum's pages as deep as it gets! google indexed all of my forums and topics 2 days after applying this mod and manually submitting the newly modified URLs! you can also wait for their spiders to come around, but it'll take some time [about 1 month] To optimize your board for maximum SE indexing, I suggest you also use my search engine-frienly site map mod, at: http://www.ibresource.com/?pg=db&mod=805
  2. Let's say you have www.site.com hosted by tch. The site is up and running. Then you have www.site2.com, just as the domain name but no site. Can you get www.site2.com to redirect or point to www.site.com without actually having a site? Also is this part of the basic hosting plan if you can or is an extra fee.
  3. I dont know if you guys are fimiliar with this place http://www.cafepress.com but it might be useful to some.
  4. Ok, thanks again.
  5. I would start a help ticket and ask for your site to be restored back to when the forum was working. Jim I forgot, wont they consider this a 3rd party issue therefore will not be able to provide any assistance?
  6. I'll try that, thanks!
  7. no
  8. Wrapper script | > Script written by Matt Mecham | > Date started: 14th February 2002 | +-------------------------------------------------------------------------- */ //----------------------------------------------- // USER CONFIGURABLE ELEMENTS //----------------------------------------------- // Root path $root_path = "./"; //----------------------------------------------- // NO USER EDITABLE SECTIONS BELOW //----------------------------------------------- error_reporting (E_ERROR | E_WARNING | E_PARSE); set_magic_quotes_runtime(0); class Debug { function startTimer() { global $starttime; $mtime = microtime (); $mtime = explode (' ', $mtime); $mtime = $mtime[1] + $mtime[0]; $starttime = $mtime; } function endTimer() { global $starttime; $mtime = microtime (); $mtime = explode (' ', $mtime); $mtime = $mtime[1] + $mtime[0]; $endtime = $mtime; $totaltime = round (($endtime - $starttime), 5); return $totaltime; } } class info { var $member = array(); var $input = array(); var $session_id = ""; var $base_url = ""; var $vars = ""; var $skin_id = "0"; // Skin Dir name var $skin_rid = ""; // Real skin id (numerical only) var $lang_id = "en"; var $skin = ""; var $lang = ""; var $server_load = 0; var $version = "v1.1.2"; var $lastclick = ""; var $location = ""; var $debug_html = ""; function info() { global $sess, $std, $DB, $root_path, $INFO; $this->vars = &$INFO; $this->vars['TEAM_ICON_URL'] = $INFO['html_url'] . '/team_icons'; $this->vars['AVATARS_URL'] = $INFO['html_url'] . '/avatars'; $this->vars['EMOTICONS_URL'] = $INFO['html_url'] . '/emoticons'; $this->vars['mime_img'] = $INFO['html_url'] . '/mime_types'; } } //-------------------------------- // Import $INFO, now! //-------------------------------- require $root_path."conf_global.php"; //-------------------------------- // The clocks a' tickin' //-------------------------------- $Debug = new Debug; $Debug->startTimer(); //-------------------------------- // Require our global functions //-------------------------------- require $root_path."sources/functions.php"; $std = new FUNC; $print = new display(); $sess = new session(); //-------------------------------- // Load the DB driver and such //-------------------------------- $INFO['sql_driver'] = !$INFO['sql_driver'] ? 'mySQL' : $INFO['sql_driver']; $to_require = $root_path."sources/Drivers/".$INFO['sql_driver'].".php"; require ($to_require); $DB = new db_driver; $DB->obj['sql_database'] = $INFO['sql_database']; $DB->obj['sql_user'] = $INFO['sql_user']; $DB->obj['sql_pass'] = $INFO['sql_pass']; $DB->obj['sql_host'] = $INFO['sql_host']; $DB->obj['sql_tbl_prefix'] = $INFO['sql_tbl_prefix']; $DB->obj['debug'] = ($INFO['sql_debug'] == 1) ? $_GET['debug'] : 0; // Get a DB connection $DB->connect(); //-------------------------------- // Wrap it all up in a nice easy to // transport super class //-------------------------------- $ibforums = new info(); //-------------------------------- // Set up our vars //-------------------------------- $ibforums->input = $std->parse_incoming(); $ibforums->member = $sess->authorise(); $ibforums->skin = $std->load_skin(); $ibforums->lastclick = $sess->last_click; $ibforums->location = $sess->location; $ibforums->session_id = $sess->session_id; list($ppu,$tpu) = explode( "&", $ibforums->member['view_prefs'] ); $ibforums->vars['display_max_topics'] = ($tpu > 0) ? $tpu : $ibforums->vars['display_max_topics']; $ibforums->vars['display_max_posts'] = ($ppu > 0) ? $ppu : $ibforums->vars['display_max_posts']; if ($ibforums->member['id'] and ( $std->my_getcookie('hide_sess') ) ) { $ibforums->session_id = ""; } $ibforums->base_url = $ibforums->vars['board_url'].'/index.'.$ibforums->vars['php_ext'].'?s='.$ibforums->session_id; $ibforums->skin_rid = $ibforums->skin['set_id']; $ibforums->skin_id = 's'.$ibforums->skin['set_id']; $ibforums->vars['img_url'] = 'style_images/' . $ibforums->skin['img_dir']; //-------------------------------- // Set up our language choice //-------------------------------- if ($ibforums->vars['default_language'] == "") { $ibforums->vars['default_language'] = 'en'; } $ibforums->lang_id = $ibforums->member['language'] ? $ibforums->member['language'] : $ibforums->vars['default_language']; if ( ($ibforums->lang_id != $ibforums->vars['default_language']) and (! is_dir( $root_path."lang/".$ibforums->lang_id ) ) ) { $ibforums->lang_id = $ibforums->vars['default_language']; } $ibforums->lang = $std->load_words($ibforums->lang, 'lang_global', $ibforums->lang_id); //-------------------------------- $skin_universal = $std->load_template('skin_global'); //-------------------------------- if ($ibforums->input['act'] != 'Login' and $ibforums->input['act'] != 'Reg' and $ibforums->input['act'] != 'Attach') { //-------------------------------- // Do we have permission to view // the board? //-------------------------------- if ($ibforums->member['g_view_board'] != 1) { $std->Error( array( 'LEVEL' => 1, 'MSG' => 'no_view_board') ); } //-------------------------------- // Is the board offline? //-------------------------------- if ($ibforums->vars['board_offline'] == 1) { if ($ibforums->member['g_access_offline'] != 1) { $std->board_offline(); } } //-------------------------------- // Is log in enforced? //-------------------------------- if ( (! $ibforums->member['id']) and ($ibforums->vars['force_login'] == 1) ) { require $root_path."sources/Login.php"; } } //-------------------------------- // Decide what to do //-------------------------------- $choice = array( "idx" => "Boards", "SF" => "Forums", "SR" => "Forums", "ST" => "Topics", "Login" => "Login", "Post" => "Post", "Poll" => "lib/add_poll", "Reg" => "Register", "Online" => "Online", "Members" => "Memberlist", "Help" => "Help", "Search" => "Search", "Mod" => "Moderate", "Print" => "misc/print_page", "Forward" => "misc/forward_page", "Mail" => "misc/contact_member", "Invite" => "misc/contact_member", "ICQ" => "misc/contact_member", "AOL" => "misc/contact_member", "YAHOO" => "misc/contact_member", "MSN" => "misc/contact_member", "report" => "misc/contact_member", "chat" => "misc/contact_member", "Msg" => "Messenger", "UserCP" => "Usercp", "Profile" => "Profile", "Track" => "misc/tracker", "Stats" => "misc/stats", "Attach" => "misc/attach", 'ib3' => 'misc/ib3', 'legends' => 'misc/legends', 'modcp' => 'mod_cp', 'calendar' => "calendar", 'buddy' => "browsebuddy", ); /***************************************************/ $ibforums->input['act'] = $ibforums->input['act'] == '' ? "idx" : $ibforums->input['act']; // Check to make sure the array key exits.. if (! isset($choice[ $ibforums->input['act'] ]) ) { $ibforums->input['act'] = 'idx'; } // Require and run require $root_path."sources/".$choice[ $ibforums->input['act'] ].".php"; //+------------------------------------------------- // GLOBAL ROUTINES //+------------------------------------------------- function fatal_error($message="", $help="") { echo("$message$help"); exit; } ?>
  9. Can someone solve this puzzle? I'm receiveing this error. Parse error: parse error, unexpected '\"' in /home/ripthej/public_html/canibus/sources/functions.php on line 872 Fatal error: Cannot instantiate non-existent class: func in /home/ripthej/public_html/canibus/index.php on line 108 Here is where I think the problem lies but I dont see the problem. if ( ($ibforums->member['g_max_messages'] > 0) and ($ibforums->member['msg_total'] >= $ibforums->member['g_max_messages']) ) { $msg_data['TEXT'] = $ibforums->lang['msg_full']; } else { $ibforums->member['new_msg'] = $ibforums->member['new_msg'] == "" ? 0 : $ibforums->member['new_msg']; 1. $msg_data['TEXT'] = sprintf( $ibforums->lang['msg_new'], $ibforums->member['new_msg']); } Head Bash
  10. What's going on here idallen? What's happening to us?
  11. OK, I guess im just paranoid!
  12. Could you further explain that, im still un-sure as to how to correct the problem.
  13. What is .spamkey and .gnupg in my file directory? I dont remember seeing this in there before.
  14. Im getting the error message below when I try to upload avators on my forum. I dont have a clue about these error messages but ive seen them before at other forums. What exactly does it mean and how do I fix it?
  15. Is that the same as pointing a domain to another domain?
  16. the upload url should be http://www.ripthejacker.net/canibus/uploads the upload path should be /home/accountname/public_html/canibus/uploads and using file manager check the permissions for the upload folder, to insure it is 777 you should see the permission number to the right of the folder name, when you navagate to the forum folder. if it is not 777, in file manager click on the name of the upload folder (not the icon) then at the right you will see change permissions, click it. then click in each box for read, write and execute for all three columns, then you will see 777 in the status box, click change. hope this helps It worked, now members can upload avators and when they post. The html still wont work though for sigs. The only thing that works are the font tags. I applied what you said for uploading to the html but still no results.
  17. It's me again. This time im having trouble with my forum. Im running invision 1.2 and I cant get it to; upload images in the sigs, display any tags in messages and post. I know im having trouble with the correct "upload path" and "upload url" in the admin section so I just removed the option to upload in sigs but I dont know if it's affecting everything else. Anyway here's the link although im sure you guys have it memorized by now. http://www.ripthejacker.net/canibus
  18. Thanks.
  19. Remember when I said it was probably something simple? I forgot to change the numbers to 777 for the image in the public_html section but it was changed in the images section! That's why it worked in one and not the other. dsdemmin was like Mad!!! Sorry about that.
  20. Ok, so I need to have my images in the public_html folder and not images folder?
  21. That's what I was thinking. I checked to make sure I spelled the name of the image correctly because it was'nt working. So I added /image behind the image name it it showed up. Im probably doing something wrong that's really simple, I just dont know what.
  22. Where do I upload my images to so that I wont have to edit my html to say <img src="picture.jpg/image"> I dont want to have to add "/image" to my script. I assume since I have my images uploaded to the image directory that is the reason why. I noticed that why I didnt have "/image" the image didnt show up.
  23. Very interesting site. That's a great script but it is a little too advanced for what I had in mind.
  24. Sorry about the password thing. Which photo album scripts do you guys suggest?
  25. Ok, thanks to you all I have it. I was trying to leave the left and right image with the align tags and put the middle image in a table instead of placeing them all in a table. I have around 80 images. I think I will find one, I dont know what im thinking right about now. woooot
×
×
  • Create New...