Truckers Report Website? - Page 1 (2024)

") {$(textAreaBox).setCursorPosition(selectionStart + 8);}else {$(textAreaBox).setCursorPosition(selectionStart + 3);}}else {$(textAreaBox).focus();$(textAreaBox).surroundSelectedText(commandBefore, commandAfter);}}if ($(closestDiv).is('.tableLinkButton')) {$('.tableFormEntryButton').removeClass('tableButtonPressed');$('.formatForm').hide();$('.tableLinkButton').addClass('tableButtonPressed');$('.linkForm').fadeIn();}if ($(closestDiv).is('.tableImageButton')) {$('.tableFormEntryButton').removeClass('tableButtonPressed');$('.formatForm').hide();$('.tableImageButton').addClass('tableButtonPressed');$('.imageForm').fadeIn();}if ($(closestDiv).is('.tableLinkTTButton')) {$('.tableFormEntryButton').removeClass('tableButtonPressed');$('.formatForm').hide();$('.tableLinkTTButton').addClass('tableButtonPressed');$('.linkOnTTForm').fadeIn();}if ($(closestDiv).is('.tableSmileyButton')) {$('.tableFormEntryButton').removeClass('tableButtonPressed');$('.formatForm').hide();$('.tableSmileyButton').addClass('tableButtonPressed');$('.smileyForm').fadeIn();}});$('.formatFormCancel').on('click', function() {$('.tableFormEntryButton').removeClass('tableButtonPressed');$('.formatForm').hide();});$('.previewButton').on('click', function(e) {e.preventDefault();$('.previewButton').html('...Creating Preview')var comment = $('.textAreaBox').val();var dataToSend = {"comment": comment, "createPreview":1};$.post('/truckers-forum/includes/php/admin.php', dataToSend, function(data) {$('html, body').animate({'scrollTop':'+=300'}, 600);$('.previewButton').html('Preview');$('.previewDivInner').html(data.comment);$('.previewDiv').fadeIn();},'json');});$('.previewCancel').on('click', function(e) {e.preventDefault();$('.previewDivInner').html('');$('.previewDiv').fadeOut();});$('.previewReply').on('click', function(e) {e.preventDefault();$('.previewDivInner').html('');$('.previewDiv').fadeOut();$('.replyButton').trigger('click');});$('.replyButton').on('click', function(e) {e.preventDefault();if ($('.textAreaBox').val().length > 5500) {alert('Your post is too long. Please reduce the size to below 5,500 characters. The count is shown below the window you\'re typing into.');}else {$('.replyButton').html('Sending...');var topicBody = $('.textAreaBox').val();var categoryID = $('.categoryHeading').data('category');var topic = $('.topicHeading').data('topic');if ($('.subscribeButton').hasClass('subscribedToTopic')) {var subscribed = "yes";}else {var subscribed = "no";}var dataArray = {'categoryID': categoryID, 'comment': topicBody, 'topic': topic, 'subscribed': subscribed};$.post('/truckers-forum/includes/php/insertNewComment.php', dataArray, function(data) {var dataReturned = $.parseJSON(data);if (dataReturned.status == "success") {$('.replyButton').html('Success! Reloading page...');location.reload(true);}// if they posted too recentlyelse if (dataReturned.status == "timeLimit") {alert('Sorry, you can only post a new comment every two minutes. Please wait a short time and hit Submit again.');}else if (dataReturned.status == "moderation") {alert('Your comment is awaiting moderation. We will send you an email if it is approved. Hopefully it will only be a few minutes but it could be a few hours so we appreciate your patience. We\'re doing all we can to keep this a friendly and helpful community for everyone. Thanks!');location.reload(true);}else if (dataReturned.status == "commentLimit") {alert('Sorry, you have too many comments in moderation right now. Please be patient while we get caught up and submit this again in a little while. Thanks.')}else if (dataReturned.status == "banned") {alert('Sorry, you have been banned from posting in our forum.');}else {alert('There was an error of some sort. Please hit the "Submit" button again. If this error continues, contact brett@truckingtruth.com and we\'ll get it straightened out. Thanks.');}});}});$('.tagListUL').on('click', function(e) {e.preventDefault();var $target = $(e.target);if ($target.hasClass('btn')) {$target.toggleClass('tagged');}});$('.submitTagsButton').on("click", function(e) {e.preventDefault();$('.submitTagsButton').html('...sending');var taggedElements = $('.tagListUL').find('.tagged');var tagArray = [];for (i=0; i\n\n'; var selectionStart = $('.textAreaBox').getSelection().start;$('.textAreaBox').insertText(insertedHtml, selectionStart, true);$('.imageForm').fadeOut();$('.tableImageButton').removeClass('tableButtonPressed');$('.urlForImage').val('');}img.src = imageUrl;}$('.submitImageButton').on('click', function() {var imageUrl = $('.urlForImage').val();validateImageUrl(imageUrl); });function validateLink(link) {return fetch(link, { method: 'HEAD' }).then(response => {return (response.status === 200 || response.status === 301 || response.status === 302);}).catch(error => {console.log('Error:', error);return false;});}$('.submitLinkButton').on('click', function(e) {e.preventDefault();var textForLink = $('.textForLink').val();if (textForLink.length < 4) {alert('Please put a description for the page you\'re linking to in the "Link Text" field.');}else {var linkUrl = $('.urlForLink').val();var linkHtml = '' + textForLink + '';var selectionStart = $('.textAreaBox').getSelection().start;$('.textAreaBox').insertText(linkHtml, selectionStart, true);$('.linkForm').fadeOut();$('.tableLinkButton').removeClass('tableButtonPressed');$('.textForLink').val('');$('.urlForLink').val('');}});$('.ttLinkButton').on('click', function(e) {e.preventDefault();var link = parseInt($(this).data('link'));// we have to subtract 1 from link to get the proper array indexvar linkHtml = ttLinkButtonArray[link - 1];// var linkText = $(this).html();// var linkHtml = '' + linkText + ''; var selectionStart = $('.textAreaBox').getSelection().start;$('.textAreaBox').insertText(linkHtml, selectionStart, true);});$('.smileyForm').on('click', function(e) {e.preventDefault();if ($(e.target).data('name') == "cancel") {return;}var imageName = $(e.target).closest('img').data('name');if (imageName !== 'cancel') {var imageHtml = 'Truckers Report Website? - Page 1 (1) ';var selectionStart = $('.textAreaBox').getSelection().start;$('.textAreaBox').insertText(imageHtml, selectionStart, true);}});$('.quoteButton').on('click', function(e) {e.preventDefault();$('.newTopicWrapper').show();var comment = $(this).parents('.commentWrapper').find('.commentText');var commentor = $(this).parents('.commentWrapper').find('.nickname').html();$('html, body').animate({scrollTop: ($('.newTopicWrapper').offset().top)}, 500);// gotta get the glossary .definitionTerm spans and .tooltipElements out of the quote$(comment).find('.tooltipElements').remove();$(comment).find('.definitionTerm').each(function(i,v) {$(this).replaceWith($(this).text().trim());});$(comment).find('.viewMoreQuoteButton').remove();// $(comment).find('span[itemprop="text"]').unwrap();// $(comment).trim();var commentWrapped = "
" + $(comment).html().trim() + "
\n\n";var uidOfSender = $('.uidDiv').data('uid');// we have to get the current content of the textarea then append this quotevar currentTextAreaVal = $('.textAreaBox').val();var newTextAreaVal = currentTextAreaVal + "\n\n\n\n" + commentWrapped;// $('.textAreaBox').val(commentWrapped);$('.textAreaBox').val(newTextAreaVal);textAreaCheck(0, 1);});// this is the report button$('.reportButton').on("click", function(e) {e.preventDefault();$thisButton = $(this);if (confirm("Just confirming that you would like to report this comment?")) {$thisButton.text("..sending");var $commentWrapper = $(this).parents('.commentWrapper');var commentId = $commentWrapper.data('commentid');var commentText = $commentWrapper.find('.commentText').html();var nickname = $commentWrapper.find('.nickname a').text();var topicID = $('.topicHeading').data('topic');var topicHeading = $('.topicHeading').text();var page = $('.topicHeading').data('page');var uidOfSender = $('.uidDiv').data('uid');var options = {"reportComment":"1", "topic":topicID, "nickname":nickname, "commentText":commentText, "commentId":commentId, "uidOfSender":uidOfSender, "topicHeading":topicHeading, "page":page};$.post('/truckers-forum/includes/php/setUserPreferences.php', options, function(data) {$thisButton.text('Report');if (data.status == "success") {alert("Thanks! We've received your report about this comment and you can be certain we'll be taking a close look at it. We appreciate the help!");}else {alert("hmmmm....that didn't go through for some reason. Try hitting the 'report' button one more time. Thanks.");}},'json');}});$('.subscribeButton').on('click', function(e) {e.preventDefault();$(this).toggleClass('subscribedToTopic');});$('.goToPageSubmit').on('click', function(e) {e.preventDefault();var topic = $('.topicHeading').data('topic');var page = $(this).parents('.topicPaginationWrapper').find('.goToPage').val();var subjectString = $('.topicHeading').data('subjectstring');var locationString = "https://www.truckingtruth.com/truckers-forum/Topic-" + topic + "/";locationString += "Page-" + page + "/" + subjectString;location.href=locationString;});// this looks for the first blockquote in each commentTextWrapper and shortens it if it's really long$.each($('.commentWrapper'), function(i,comment) {// console.log($(this));var $quote = $(this).find('blockquote:first');// console.log($quote);// if the quote is taller than 450 pxif ($quote.height() > 450) {// create the "View More" buttonvar a = $("").addClass('btn btnDarkBlueArrowDown viewMoreQuoteButton').attr('data-id', i).html('View More');// add the heightReduced class to the quote$quote.addClass('heightReduced');// append the View More button and clearTall$(a).insertAfter($quote);$('').insertAfter($(a));}});// this will expand the blockquote which we shortened with the previous .each function$('.viewMoreQuoteButton').on("click", function(e) {e.preventDefault();// find the blockquotevar $blockquote = $(this).parents('.commentText').find('blockquote:eq(0)')// if the height is currently reducedif ($blockquote.hasClass('heightReduced')) {// remove the height restrictino$blockquote.removeClass('heightReduced');// convert the arrow down to an arrow up$(this).html("View Less").removeClass('btnDarkBlueArrowDown').addClass('btnDarkBlueArrowUp');// scroll to the top of the blockquote$('html, body').animate({scrollTop: ($($blockquote).offset().top - 20)}, 500);}// if it's currently at full heightelse {// add heightReduced to reduce the height$blockquote.addClass('heightReduced');// convert the button to arrow down$(this).html("View More").removeClass('btnDarkBlueArrowUp').addClass('btnDarkBlueArrowDown');// scroll back to the top of the quote$('html, body').animate({scrollTop: ($($blockquote).offset().top - 20)}, 500);}});// if there are new comments this will scroll the page to themif ($('.topicHeading').data('pagename') == "Newest" && $('.newTopic').length) {$('html, body').animate({scrollTop: ($('.newTopic:eq(0)').offset().top - 20)}, 500);}// this creates a searchable list out of the tags with List.js (/includes/js/List.js)// and the fuzzysearch plugin (/includes/js/fuzzysearch.js)var listOptions = { valueNames: [ 'sorted' ], listClass: 'tagListUL', page: 500, plugins:[ListFuzzySearch()]};var tagList = new List('tagListInnerDiv', listOptions);// this is for the page button// make an array of elements that should be included in page menuvar inclusionArray = ["h1","h2","h3",".commentInfo",".nextPageButton",".prevPageButton",".startNewTopic",".returnButtons"];// make an array of elements that should not be included in page menuvar exclusionArray = [".mobileShortcutDiv",".tooltipElements",".previewDiv",".jumpDiv",".newTopicWrapper",".tagListWrapper"];// createPageMenuButton(inclusionArray,exclusionArray);// this is for submitting ratings and tags for each conversation$('.ratingSubmitButton').on('click', function(e) {e.preventDefault();$(this).html('...sending');var rating = $('.ratingSelect').val();var topic = $('.topicHeading').data('topic');$.post('/truckers-forum/includes/php/updateTags.php', {"rating":rating, "topic_id": topic}, function(data) {$('.ratingSubmitButton').html('Success!');setTimeout(function() {$('.ratingSubmitButton').html("Submit");}, 600);});});});

Topic 31307 | Page 1

  • Trucker's Forum
  • Truckers Report Website? - Page 1 (2)
  • General Category
  • Truckers Report Website? - Page 1 (3)
  • Truckers report website?

Page 1 of 3 Next PageGo To Page:

Canaan's Comment

Truckers Report Website? - Page 1 (4)

Canaan

Girard, OH

Considering A Career

Posts: 58

Joined Us:

3 years, 8 months ago

3 Photos

2 years, 6 months ago

Is truckers report.com a good site as additional info for the industry? Is anyone familiar with the site? Or is there any recommendations of sites that I can use for the most up to date info on the different trucking companies? And possibly have reviews from employees and such? I tried glassdoor, but it doesn't seem honest.

Thanks! -Canaan

Robert B. (The Dragon) ye's Comment

Truckers Report Website? - Page 1 (5)

Robert B. (The Dragon) yes, I breathe fire and other sideshow tricks

Home State: MN

Experienced Driver

Posts: 2461

Joined Us:

9 years, 5 months ago

146 Photos

2 years, 6 months ago

It all depends on what information you’re searching for. Technical information about trucks or cb radios, good restaurants and places to park, it’s great. If you’re looking for information about companies, run like hell because it’s nothing but doom and gloom.

Canaan's Comment

Truckers Report Website? - Page 1 (6)

Canaan

Girard, OH

Considering A Career

Posts: 58

Joined Us:

3 years, 8 months ago

3 Photos

2 years, 6 months ago

Thank you for the reply, do you happen to know of a site other than here that I can see company information? Basically just looking for a database of the available companies and those that offer the company paid training. The research of each company I can manage once I figure out all their names Thanks -Canaan

It all depends on what information you’re searching for. Technical information about trucks or cb radios, good restaurants and places to park, it’s great. If you’re looking for information about companies, run like hell because it’s nothing but doom and gloom.

HOS:

Hours Of Service

HOS refers to the logbook hours of service regulations.

G-Town's Comment

Truckers Report Website? - Page 1 (7)

G-Town

Moderator

Lewes , DE

Experienced Driver

Posts: 10634

Joined Us:

8 years, 9 months ago

424 Photos

2 years, 6 months ago

Paid CDL Training Programs

Apply For Paid CDL Training

Trucking Company Reviews

  • Trucker's Career Guide: Choosing Your First Truck Driving Job
  • Article Category: Finding The Right Truck Driving Job
  • Forum Topics Tagged "Choosing A Trucking Company"

Truck Driver's Career Guide

CDL:

Commercial Driver's License (CDL)

A CDL is required to drive any of the following vehicles:

  • Any combination of vehicles with a gross combined weight rating (GCWR) of 26,001 or more pounds, providing the gross vehicle weight rating (GVWR) of the vehicle being towed is in excess of 10,000 pounds.
  • Any single vehicle with a GVWR of 26,001 or more pounds, or any such vehicle towing another not in excess of 10,000 pounds.
  • Any vehicle, regardless of size, designed to transport 16 or more persons, including the driver.
  • Any vehicle required by federal regulations to be placarded while transporting hazardous materials.

OOS:

When a violation by either a driver or company is confirmed, an out-of-service order removes either the driver or the vehicle from the roadway until the violation is corrected.

Canaan's Comment

Truckers Report Website? - Page 1 (8)

Canaan

Girard, OH

Considering A Career

Posts: 58

Joined Us:

3 years, 8 months ago

3 Photos

2 years, 6 months ago

Hey G-Town thanks for the reply. Is our list here on trucking truth a current list of the starter companies? I mean, I have done my reading up here while waiting to find and cure my ailment that's keeping me from taking the plunge(just got new testing done and might finally have it figured out) and I know that you guys here say it's up to me to make the company that I choose be good for me. I was just looking for a current database of available companies for non cdl beginners like myself, while waiting I like to do my research on the companies and find out which ones for example. Hire in my area, offer the company paid training (and hire for that in my area). Don't care too much about the pay scale (yet) as even 40k for my first year would be an embarrassing amount higher than my normal yearly salaries from any previous job.

Thanks! -Canaan

Paid CDL Training Programs

Apply For Paid CDL Training

Trucking Company Reviews

  • Trucker's Career Guide: Choosing Your First Truck Driving Job
  • Article Category: Finding The Right Truck Driving Job
  • Forum Topics Tagged "Choosing A Trucking Company"

Truck Driver's Career Guide

CDL:

Commercial Driver's License (CDL)

A CDL is required to drive any of the following vehicles:

  • Any combination of vehicles with a gross combined weight rating (GCWR) of 26,001 or more pounds, providing the gross vehicle weight rating (GVWR) of the vehicle being towed is in excess of 10,000 pounds.
  • Any single vehicle with a GVWR of 26,001 or more pounds, or any such vehicle towing another not in excess of 10,000 pounds.
  • Any vehicle, regardless of size, designed to transport 16 or more persons, including the driver.
  • Any vehicle required by federal regulations to be placarded while transporting hazardous materials.

OOS:

When a violation by either a driver or company is confirmed, an out-of-service order removes either the driver or the vehicle from the roadway until the violation is corrected.

G-Town's Comment

Truckers Report Website? - Page 1 (9)

G-Town

Moderator

Lewes , DE

Experienced Driver

Posts: 10634

Joined Us:

8 years, 9 months ago

424 Photos

2 years, 6 months ago

Canaan you joined over a year ago and at that time basically asked a similar set of questions. You asked about other trucking websites as well. With all of the research you have claimed to do, what exactly are you looking for that you haven’t found?

IMO we have provided you with plenty of information, more than enough to take the next step.

Canaan's Comment

Truckers Report Website? - Page 1 (10)

Canaan

Girard, OH

Considering A Career

Posts: 58

Joined Us:

3 years, 8 months ago

3 Photos

2 years, 6 months ago

Thanks again for the reply G-Town, I appreciate the time you all take to answer my questions. As for the answers to yours, to he honest sir, I am not sure exactly what I am looking for, I tend to over analyze things. I do know that much. I was only asking because I didn't want to be looking else where than here on trucking truth and see info that may or may not be true and confuse myself. While I am working on discovering my ailment I am taking the time to find any and all info I can about just about everything trucking.

And lastly, I did join over a year ago, and I was 100%, ready to take the plunge and join up with whoever would take me, but I got sick then and am still trying to discover the cause of what's going on. Because of covid being the thing I was not able to get into any Doctors and ended up losing my health insurance because of not being able to work. (Not asking for pity or anything like that, I'm not that kind of person. just explaining why I didnt end up already taking the plunge)

If what I've already been given is more than enough for taking the next step, I will just be spending the time I have reviewing and such and will refrain from asking any other questions regarding outside Information.

Thanks again for taking the time to answer, it is greatly appreciated.Safe travels! (I realize all my questioning may be doing more harm than good, I could very well be overly working myself up which is definitely not the plan here)

-Canaan

Canaan you joined over a year ago and at that time basically asked a similar set of questions. You asked about other trucking websites as well. With all of the research you have claimed to do, what exactly are you looking for that you haven’t found?

IMO we have provided you with plenty of information, more than enough to take the next step.

Anne A. (and sometimes To's Comment

Truckers Report Website? - Page 1 (11)

Anne A. (and sometimes Tom)

Lexington, OH

Considering A Career

Posts: 5582

Joined Us:

6 years, 9 months ago

488 Photos

2 years, 6 months ago

Canaan !!

It seems you took G'town's reply a bit harshly, and I really don't believe that to be his intention. TTR has a real crappy way of putting 'our' site down, and calling us 'juvenile' or such. Ya know 'WHY?' Because we HELP new truckers. (They call y'all FnG's or snowflakes and more...) and have their own agenda, that as a 10 year member (my O/H) I still don't know. We left that playground a time ago...for here! I'm not even a driver, but .. I try to spread cheer, encouragement, and a BIT'O knowledge via the husband person. I could probably pass a pre'trip at the drop of a pin, because...I've got a tractor/trailer outside . . . almost daily. AND, I'm always eager to learn. Everything. About the industry that I can! I won't compete with, nor challenge, the mods. Some love me, some not. Is what it is. By my incessant 'asking....' I am learning SO MUCH!

The thread on doubles / LTL via G'Town . . . I was enamoured !! Polyamoured, haha! I'd always wondered. They taught ME SO MUCH! (Sponge Bob ain't got NOTHIN' on me, hahaha!) BTW .. Canaan .. your picture didn't post in the Eye Candy thread, last I looked. LoL ! Sorry!

There's a couple 'helpful' people on there, few and far between. About 90percent are CB trash talkers and truck stop counter folk. I wish it were different, but unfortunately...we are not in the same mindset as they are. THEIR moderators (and a few great ones,) are even clickey (for lack of a better term.)

Just take their advice with ONE grain of salt, if you DO join. Always come back HERE for the TRUTH.

Really everything you NEED, is here in a bow/package, haha! Sure, there are a few companies that abound, outside the TT realm. Kerry (sorry guys) did extensive research on a few; as have I. You could look thru his old posts and research; he was actually thorough in sharing that with usn's here.

Kerry is still training with DML per an email I'd gotten (it's in my profile) and doing well.

I've got a 'few' other companies I could recommend, should the ones available here aren't in your wheelhouse; do some research:

~ Pride Transport (Read Dave Reid's stuff; a member here!)

~ Witte Bros. (Kerry and a few others looked into them.)

~ Raider Express (has been discussed, but not in much detail.)

~ Dutch Maid Logistics (again, a 2nd chance company; prospering since Carolina Cargo went Penske and Western had a Tornado.)

For some extra 'reading' in other 'arenas....' you could look at CDLlife, TransportTopics, TransportationNation, and Overdrive. Most are followed with a dot com.

I hope this helps ya, man!

I gotta ask ... (and sorry if I'd missed it....) how 'young' are you?!?!? LoL... just helps ME help ya!

~ Always, ~Anne~

Thanks again for the reply G-Town, I appreciate the time you all take to answer my questions. As for the answers to yours, to he honest sir, I am not sure exactly what I am looking for, I tend to over analyze things. I do know that much. I was only asking because I didn't want to be looking else where than here on trucking truth and see info that may or may not be true and confuse myself. While I am working on discovering my ailment I am taking the time to find any and all info I can about just about everything trucking.

And lastly, I did join over a year ago, and I was 100%, ready to take the plunge and join up with whoever would take me, but I got sick then and am still trying to discover the cause of what's going on. Because of covid being the thing I was not able to get into any Doctors and ended up losing my health insurance because of not being able to work. (Not asking for pity or anything like that, I'm not that kind of person. just explaining why I didnt end up already taking the plunge)

If what I've already been given is more than enough for taking the next step, I will just be spending the time I have reviewing and such and will refrain from asking any other questions regarding outside Information.

Thanks again for taking the time to answer, it is greatly appreciated.Safe travels! (I realize all my questioning may be doing more harm than good, I could very well be overly working myself up which is definitely not the plan here)

-Canaan

Truckers Report Website? - Page 1 (12)

Canaan you joined over a year ago and at that time basically asked a similar set of questions. You asked about other trucking websites as well. With all of the research you have claimed to do, what exactly are you looking for that you haven’t found?

IMO we have provided you with plenty of information, more than enough to take the next step.

Truckers Report Website? - Page 1 (13)

CDL:

Commercial Driver's License (CDL)

A CDL is required to drive any of the following vehicles:

  • Any combination of vehicles with a gross combined weight rating (GCWR) of 26,001 or more pounds, providing the gross vehicle weight rating (GVWR) of the vehicle being towed is in excess of 10,000 pounds.
  • Any single vehicle with a GVWR of 26,001 or more pounds, or any such vehicle towing another not in excess of 10,000 pounds.
  • Any vehicle, regardless of size, designed to transport 16 or more persons, including the driver.
  • Any vehicle required by federal regulations to be placarded while transporting hazardous materials.

LTL:

Less Than Truckload

Refers to carriers that make a lot of smaller pickups and deliveries for multiple customers as opposed to hauling one big load of freight for one customer. This type of hauling is normally done by companies with terminals scattered throughout the country where freight is sorted before being moved on to its destination.

LTL carriers include:

  • FedEx Freight
  • Con-way
  • YRC Freight
  • UPS
  • Old Dominion
  • Estes
  • Yellow-Roadway
  • ABF Freight
  • R+L Carrier

DOT:

Department Of Transportation

A department of the federal executive branch responsible for the national highways and for railroad and airline safety. It also manages Amtrak, the national railroad system, and the Coast Guard.

State and Federal DOT Officers are responsible for commercial vehicle enforcement. "The truck police" you could call them.

Doubles:

Refers to pulling two trailers at the same time, otherwise known as "pups" or "pup trailers" because they're only about 28 feet long. However there are some states that allow doubles that are each 48 feet in length.

Dm:

Dispatcher, Fleet Manager, Driver Manager

The primary person a driver communicates with at his/her company. A dispatcher can play many roles, depending on the company's structure. Dispatchers may assign freight, file requests for home time, relay messages between the driver and management, inform customer service of any delays, change appointment times, and report information to the load planners.

G-Town's Comment

Truckers Report Website? - Page 1 (14)

G-Town

Moderator

Lewes , DE

Experienced Driver

Posts: 10634

Joined Us:

8 years, 9 months ago

424 Photos

2 years, 6 months ago

Canaan, I think Anne’s links are a good way to synch the Paid CDL Training Programs with some up to date diaries. (Thanks Anne) That should hopefully fill some of the gaps for you.

As far as the duration of your TT membership, please click on your profile and you’ll see why I mentioned it.

Just trying how best to help you further. Not meant to be harsh.

Get well.

CDL:

Commercial Driver's License (CDL)

A CDL is required to drive any of the following vehicles:

  • Any combination of vehicles with a gross combined weight rating (GCWR) of 26,001 or more pounds, providing the gross vehicle weight rating (GVWR) of the vehicle being towed is in excess of 10,000 pounds.
  • Any single vehicle with a GVWR of 26,001 or more pounds, or any such vehicle towing another not in excess of 10,000 pounds.
  • Any vehicle, regardless of size, designed to transport 16 or more persons, including the driver.
  • Any vehicle required by federal regulations to be placarded while transporting hazardous materials.

Canaan's Comment

Truckers Report Website? - Page 1 (15)

Canaan

Girard, OH

Considering A Career

Posts: 58

Joined Us:

3 years, 8 months ago

3 Photos

2 years, 6 months ago

Thanks for the reply Anne! I did not take Mr G-Towns words harshly at all honestly, I was making sure that it was realized that I'm not here to mess around or waste anyone's time. And I take his and anyone else's words and replys here with seriousness and respect, honestly if he feels like I have all the information that I should need, then I will halt on asking for other info like was the original question of mine in the post here, I have read through a bunch of his posts here and have seen that G-Town is a successful and happy in the industry, he knows more than I do and it would probably be foolish of me not to listen and take note of such replys from him, you, or any of the other experienced guys that may answer on my posts.

Also thank you for the extra sites and companies, I appreciate you answering me! Hope the weather isn't too cold over there on your side of Ohio, it's a good bit chilly for me over on my side!

Also thanks for pointing out I didn't attach my photo, I reposted it. I misunderstood how to attach it to the post lol

Also I am 28. Turning 29 here on the 1st of February.

Thanks! -Canaan

Page 1 of 3 Next PageGo To Page:

Return To General CategoryTrucker's Forum Homepage

New Reply:

New! Check out our help videos for a better understanding of our forum features

Bold

Italic

Underline

Quote

Photo

Link

Smiley

Links On TruckingTruth

Done

Truckers Report Website? - Page 1 (16)Truckers Report Website? - Page 1 (17)Truckers Report Website? - Page 1 (18)Truckers Report Website? - Page 1 (19)Truckers Report Website? - Page 1 (20)Truckers Report Website? - Page 1 (21)Truckers Report Website? - Page 1 (22)Truckers Report Website? - Page 1 (23)Truckers Report Website? - Page 1 (24)Truckers Report Website? - Page 1 (25)Truckers Report Website? - Page 1 (26)Truckers Report Website? - Page 1 (27)Truckers Report Website? - Page 1 (28)Truckers Report Website? - Page 1 (29)Truckers Report Website? - Page 1 (30)Truckers Report Website? - Page 1 (31)Truckers Report Website? - Page 1 (32)

Done


0 characters so far - 5,500 maximum allowed.

Notify Me Of New CommentsSubmitPreview

Preview:

Submit

Cancel

This topic has the following tags:

Becoming A Truck DriverCDL QualificationsChoosing A Truck Driving SchoolChoosing A Trucking CompanyCompany Sponsored CDL TrainingDealing With The Weather

Click on any of the buttons above to view topics with that tag, or you can view a list of all forum tags here.

Truckers Report Website? - Page 1 (2024)
Top Articles
The huge solar storm is keeping power grid and satellite operators on edge
Milesplit Az
Funny Roblox Id Codes 2023
Golden Abyss - Chapter 5 - Lunar_Angel
Www.paystubportal.com/7-11 Login
Joi Databas
DPhil Research - List of thesis titles
Shs Games 1V1 Lol
Evil Dead Rise Showtimes Near Massena Movieplex
Steamy Afternoon With Handsome Fernando
Which aspects are important in sales |#1 Prospection
Detroit Lions 50 50
18443168434
Newgate Honda
Zürich Stadion Letzigrund detailed interactive seating plan with seat & row numbers | Sitzplan Saalplan with Sitzplatz & Reihen Nummerierung
Grace Caroline Deepfake
978-0137606801
Nwi Arrests Lake County
Immortal Ink Waxahachie
Craigslist Free Stuff Santa Cruz
Mflwer
Spergo Net Worth 2022
Costco Gas Foster City
Obsidian Guard's Cutlass
Marvon McCray Update: Did He Pass Away Or Is He Still Alive?
Mccain Agportal
Amih Stocktwits
Fort Mccoy Fire Map
Uta Kinesiology Advising
Kcwi Tv Schedule
What Time Does Walmart Auto Center Open
Nesb Routing Number
Olivia Maeday
Random Bibleizer
10 Best Places to Go and Things to Know for a Trip to the Hickory M...
Black Lion Backpack And Glider Voucher
Gopher Carts Pensacola Beach
Duke University Transcript Request
Lincoln Financial Field, section 110, row 4, home of Philadelphia Eagles, Temple Owls, page 1
Jambus - Definition, Beispiele, Merkmale, Wirkung
Ark Unlock All Skins Command
Craigslist Red Wing Mn
D3 Boards
Jail View Sumter
Nancy Pazelt Obituary
Birmingham City Schools Clever Login
Thotsbook Com
Funkin' on the Heights
Vci Classified Paducah
Www Pig11 Net
Ty Glass Sentenced
Latest Posts
Article information

Author: Kelle Weber

Last Updated:

Views: 6256

Rating: 4.2 / 5 (73 voted)

Reviews: 88% of readers found this page helpful

Author information

Name: Kelle Weber

Birthday: 2000-08-05

Address: 6796 Juan Square, Markfort, MN 58988

Phone: +8215934114615

Job: Hospitality Director

Hobby: tabletop games, Foreign language learning, Leather crafting, Horseback riding, Swimming, Knapping, Handball

Introduction: My name is Kelle Weber, I am a magnificent, enchanting, fair, joyous, light, determined, joyous person who loves writing and wants to share my knowledge and understanding with you.