Brother MFC-J825DW can't print more than one copy

1,076

I ran into the same problem with a Brother MFC-8710DW. I found a blog post that suggested a problem with spooling, so I tried this:

  • Open Printers and Devices
  • Right click on the printer and choose "Printer properties"
  • Click the Advanced tab, then select "Print directly to the printer".

After that, I was able to print multiple copies just fine.

I don't know if this will work with other models.

Share:
1,076

Related videos on Youtube

Undefined
Author by

Undefined

Updated on September 18, 2022

Comments

  • Undefined
    Undefined almost 2 years

    I am trying to make simple NextJs Application where I included bootstrap.

    Package.json:

      "dependencies": {
        "@zeit/next-css": "^1.0.1",
        "@zeit/next-sass": "^1.0.1",
        "autoprefixer": "^9.8.6",
        "bootstrap": "^4.5.3",         <----------------------------
        "next": "^10.0.3",
        "next-compose-plugins": "^2.2.0",
        "next-fonts": "^1.5.1",
        "node-sass": "^5.0.0",
        "postcss": "^7.0.35",
        "postcss-easy-import": "^3.0.0",
        "react": "^17.0.1",
        "react-dom": "^17.0.1",
        "react-multi-carousel": "^2.5.5",
        "reactstrap": "^8.7.1",
        "sass": "^1.29.0",
        "tailwindcss": "npm:@tailwindcss/postcss7-compat@^2.0.1"
      },
    

    next.config.js:

    const withSass = require('@zeit/next-sass');
    const withCss = require('@zeit/next-css');
    
    module.exports = withSass(withCss({
      webpack (config) {
        config.module.rules.push({
          test: /\.(png|svg|eot|otf|ttf|woff|woff2)$/,
          use: {
            loader: 'url-loader',
            options: {
              limit: 100000,
              publicPath: './',
              outputPath: 'static/',
              name: '[name].[ext]'
            }
          }
        });
    
        return config
      },
      cssLoaderOptions: {
        url: false
      }
    }));
    

    pages/_app.tsx:

    import React from "react";
    import App from "next/app";
    
    import 'bootstrap/dist/css/bootstrap.min.css';
    import "react-multi-carousel/lib/styles.css";
    import "../styles/styles.scss";
    
    export default class ClnUi extends App {
      render() {
        const { Component, pageProps } = this.props;
        return <Component {...pageProps} />;
      }
    }
    

    pages/index.tsx:

        const Home = () => (
           <div class="container">
             This is a container div..
           </div>
        )
    
       export default Home;
    

    I have made the import in _app.tsx and used inside index.tsx but this works perfectly fine in localhost but only not in deployed vercel app. (projectname.vercel.app) ..

    Could you please kindly help me in figure out what I am doing wrong with my code above that causes the bootstrap css not loading in production environment alone?

    But this css import import "../styles/styles.scss"; has been working fine in both environments.

    Huge thanks in advance.

    • Admin
      Admin over 10 years
      Is this a networked printer or connected via USB?
    • posfan12
      posfan12 over 10 years
      It can do both but I chose to use WiFi.
  • Ramhound
    Ramhound over 8 years
    One shouldn't have to change the permissions of C:\Windows\Temp, a user should already have read and write permissions to that folder, all data in that folder is suppose to be temporary. It is not clear to me how changing the permissions of this folder would solve the problem described by the author.
  • ganesh
    ganesh over 8 years
    I am not sure what a user has to do in C:\WINDOWS\temp\. I would expect it to use %tmp% or %temp% (which may resolve to something like c:\users\username\Appdata\local\temp)