421 Too many concurrent SMTP connections; please try again later.

Hi,
At first I send an email, it works fine. After i try again but this time, i get "421 Too many concurrent SMTP connections; please try again later". What do i have to do? Thanks
create or replace PROCEDURE SEND_MAIL
(name_in IN Varchar, surname_in IN Varchar, email_in IN Varchar)
IS
conn utl_smtp.connection;
BEGIN
conn := utl_smtp.open_connection ( 'mail.ppp.com', 25 ); -- SMTP database host and on port 25
utl_smtp.ehlo( conn, 'mail.ppp.com' );
utl_smtp.command(conn, 'auth login');
     utl_smtp.command(conn,UTL_RAW.CAST_TO_VARCHAR2(utl_encode.base64_encode(utl_raw.cast_to_raw('oooo'))));
     utl_smtp.command(conn,UTL_RAW.CAST_TO_VARCHAR2(utl_encode.base64_encode(utl_raw.cast_to_raw('oooo'))));
utl_smtp.mail( conn, '[email protected]' );
utl_smtp.rcpt( conn, email_in );
utl_smtp.data( conn,
'From: Rental' || utl_tcp.crlf ||
'To: ' || eremail_in || utl_tcp.crlf ||
'Subject: ' || 'Confirmation' ||
utl_tcp.crlf || 'Dear'||' '||name_in||' '||surname_in||','
||chr(13)||chr(10)||chr(13)||chr(10)||'Welcome'
utl_smtp.quit(conn);
END;
Message was edited by:
veledrom

Sounds like you have an exception in the code and not protecting the resource - which means resource leakage.
In your case, not closing TCP socket connections to the SMTP server. This then results in the SMTP server refusing to allow you more connections.
Or.. there is simply too many concurrent connections from different users/sessions/processes at the same time and it cannot service your connection.
PL/SQL does not specifically support a resource protection block. These are typically in the form of:
allocate resource;
try
use resource;
finally
release resource;The intention being that should sosmething go pear shape while using that resource, the resource is protected and released - thus preventing that resource from leaking all over the code and the server.
In PL/SQL we can only achieve this by creating an exception handler, releasing the resource (if allocated) and then re-raising the exception.
Suggest that you consider this approach whenever you allocate anything in PL/SQL - from a TCP socket handle to LOB locater or ref cursor.

Similar Messages

  • Mozilla login "Account locked: too many login attempts. Please try again later."

    How long until do I have to wait till my account will be able to be accessed?
    I reset my password…blah blah blah..but I continue to get this when trying to login.

    Ah, okay. I'm stupid. Apparently, you've entered a wrong password too many times. You have to wait a while to log back in. I don't know exactly the time frame but you should try again tomorrow. In the meantime, you can go ahead and create a new thread at [/questions/new] if you need support with Firefox.

  • ORA-29278: SMTP transient error: 421 Too many concurrent SMTP

    Hi Gurus,
    I'm send emails by using UTL_MAIL in oracle 10g but some time I got this error
    ORA-29278: SMTP transient error:
    421 Too many concurrent SMTP connections;
    please try again later
    my database detail are as under
    Oracle Database 10g Enterprise Edition Release 10.2.0.1.0 - Prod
    PL/SQL Release 10.2.0.1.0 - Production
    CORE     10.2.0.1.0     Production
    TNS for Linux: Version 10.2.0.1.0 - Production
    NLSRTL Version 10.2.0.1.0 - Production
    please help to resolve this issue.
    Thanks in advance
    sadiq

    CREATE OR REPLACE PROCEDURE production_status_email
    AS
    v_sender VARCHAR2 (100) := '[email protected]';
    v_recipients VARCHAR2 (100) := '[email protected]';
    v_cc VARCHAR2 (200) := '[email protected]';
    v_date date default sysdate-1;
    v_subj VARCHAR2 (200) := 'Production Status of ' || to_date(v_date);
    l_mesg LONG := NULL;
    v_mtype VARCHAR2 (30) := 'text/html; charset=us-ascii';
    l_greetings LONG := NULL;
    l_table_heading LONG := NULL;
    l_table_data LONG := NULL;
    l_line_total LONG := NULL;
    l_line_bpcs LONG := NULL;
    l_table_footer LONG := NULL;
    l_regards LONG := NULL;
    n_row_counter NUMBER := 0;
    n_sr_counter NUMBER := 1;
    d_date DATE;
    n_sum_frozen_quantity NUMBER;
    n_sum_plan_quantity NUMBER;
    n_sum_achieve_quantity NUMBER;
    n_sum_price NUMBER;
    n_sum_b_pieces NUMBER;
    n_sum_b_price NUMBER;
    BEGIN
    l_greetings :=
    '<p>Dear sir,</p>'
    ||'<p>Following is Production Status of '
    || v_date
    || '</p>
    l_table_heading :=
    '<table border = "1" cellpadding="1" width="100%" >
    <tr bgcolor="CYAN"><font size="2" face="times" color="BLUE">
    <th align="LEFT" width="100">Main Resource</th>
    <th align="LEFT" width="150">Sub Resource</th>
    <th align="LEFT" width="60">UOM</th>
    <th align="RIGHT" width="100">Frozen Quantity</th>
    <th align="RIGHT" width="100">Plan Quantity</th>
    <th align="RIGHT" width="100">Acheived Quantity</th>
    <th align="RIGHT" width="100">Amount</th>
    <th align="LEFT">Reason</th></tr>';
    FOR mr IN (SELECT DISTINCT mrno, mresource
    FROM image.production_status_v
    WHERE pdate = TO_DATE (v_date)
    ORDER BY 1)
    LOOP
    l_table_data :=
    l_table_data
    || '<tr><font size="2" face="times"><th align="LEFT">'
    || mr.mresource
    || '</th>';
    n_sr_counter := 1;
    FOR sr IN (SELECT srno, sresource, uom, frozen_quantity, plan_quantity, achieve_quantity,price,
    remarks
    FROM image.production_status_v sr
    WHERE mresource = mr.mresource
    AND pdate = TO_DATE (v_date)
    ORDER BY srno)
    LOOP
    IF n_sr_counter > 1
    THEN
    l_table_data := l_table_data || '</font></tr>';
    l_table_data :=
    l_table_data || '<tr><font size="2" face="times"><td></td>';
    END IF;
    l_table_data :=
    l_table_data
    || '<td align="LEFT">'
    || sr.sresource
    || '</td>'
    || '<td align="LEFT">'
    || sr.uom
    || '</td>'
    || '<td align="RIGHT">'
    || TO_CHAR (sr.frozen_quantity, '99,999,999')
    || '</td>'
    || '<td align="RIGHT">'
    || TO_CHAR (sr.plan_quantity, '99,999,999')
    || '</td>'
    || '<td align="RIGHT">'
    || TO_CHAR (sr.achieve_quantity, '99,999,999')
    || '</td>'
    || '<td align="RIGHT">'
    || TO_CHAR (sr.price, '99,999,999')
    || '</td>'
    || '<td align="LEFT">'
    || sr.remarks
    || '</td>';
    n_sr_counter := n_sr_counter + 1;
    n_row_counter := n_row_counter + 1;
    END LOOP;
    l_table_data := l_table_data || '</font></tr>';
    IF n_sr_counter > 2
    THEN
    SELECT SUM (frozen_quantity)
    INTO n_sum_frozen_quantity
    FROM image.production_status_v
    WHERE mresource = mr.mresource AND pdate = TO_DATE (v_date);
    SELECT SUM (plan_quantity)
    INTO n_sum_plan_quantity
    FROM image.production_status_v
    WHERE mresource = mr.mresource AND pdate = TO_DATE (v_date);
    SELECT SUM (achieve_quantity)
    INTO n_sum_achieve_quantity
    FROM image.production_status_v
    WHERE mresource = mr.mresource AND pdate = TO_DATE (v_date);
    SELECT SUM (price)
    INTO n_sum_price
    FROM image.production_status_v
    WHERE mresource = mr.mresource AND pdate = TO_DATE (v_date);
    l_line_total :=
    '<tr bgcolor="#F0F0F0"><font size="2" face="times" color="BLUE">'
    || '<th align="RIGHT" colspan="3">Total</th>'
    || '<th align="RIGHT">'
    || TO_CHAR (n_sum_frozen_quantity, '99,999,999')
    || '</th><th align="RIGHT">'
    || TO_CHAR (n_sum_plan_quantity, '99,999,999')
    || '</th><th align="RIGHT">'
    || TO_CHAR (n_sum_achieve_quantity, '99,999,999')
    || '</th><th align="RIGHT">'
    || TO_CHAR (n_sum_price, '99,999,999')
    || '</th>
    </font></tr>';-- <td></td>
    l_table_data := l_table_data || l_line_total;
    END IF;
    IF mr.mresource = 'Stitching' then
    SELECT SUM(bqr)
    into n_sum_b_pieces
    from image.bundle2
    WHERE to_date(bqr_date) = TO_DATE (v_date);
    SELECT SUM(bqr * (SELECT ROUND (oe.price * er.rate)
    FROM orderent oe, ex_rate er
    WHERE oe.currency = er.currency
    AND oe.order# =
    SUBSTR (b2.order#, 1, 7)))
    into n_sum_b_price
    from image.bundle2 b2
    WHERE to_date(bqr_date) = TO_DATE (v_date);
    l_line_bpcs :=
    '<tr bgcolor="#F0F0F0"><font size="2" face="times" color="BLUE">'
    || '<th align="RIGHT" colspan="3">B Pieces</th>'
    || '<th align="RIGHT">'
    || ''
    || '</th><th align="RIGHT">'
    || ''
    || '</th><th align="RIGHT">'
    || TO_CHAR (n_sum_b_pieces, '99,999,999')
    || '</th><th align="RIGHT">'
    || TO_CHAR (n_sum_b_price, '99,999,999')
    || '</th>
    </font></tr>';-- <td></td>
    l_table_data := l_table_data || l_line_bpcs;
    END IF;
    END LOOP;
    l_table_footer := '</table>';
    --------------------------regards sectionstarts-
    l_regards :=
    '<p><font color="BLUE"><Address><br> Regards,<br> Information Systems
    </address></font>';
    -----------------------regards section ends;
    l_mesg :=
    l_mesg
    || l_greetings
    || l_table_heading
    || l_table_data
    || l_table_footer
    || l_regards;
    IF n_row_counter > 0
    THEN
    UTL_MAIL.send (v_sender,
    v_recipients,
    v_cc,
    NULL,
    v_subj,
    l_mesg,
    v_mtype,
    NULL
    END IF;
    END;
    /

  • HT1551 Hi I havnt been able to download anything for two days, the message just keeps telling me unable to connect please try again later, I have signed off from apple, wifi, and signed back in but with still no luck, I can make purchases on my iPad but N

    Tried everything, keep getting unable to sign in or unable to connect, try again later.  Have unplugged everything and signed out of everything and then signed back in but still no luck. Just can not get on to Apple TV, please help and thank you in advance

    Welcome to the Apple Community.
    Have you tried restarting the router or checking your location settings are correct.
    Do you have any other problems with the Apple TV.

  • "We could not complete your itunes store request. The network connection could not be established. There was an error in the itunes store. Please try again later."

    When I try to open the home page in my Itunes I get the message "we could not complete your itunes store request. The network connection is not be established. There was an error in the itunes store. Please try again later." It had been working just fine, in fact I had just purchased a song & edited my itunes account. Could changing the name on my account have cause the error message or is something else going on? This is a brand new computer.

    I've got an Apple ID problem, too. All of the sudden in the midnight between August 31st and September 1st, the new apps I picked up on the App Store hung forever 'Waiting..' in my iPhone and never turned 'Loading'. When a substantial amont of time had passed, they reported, they 'could not connect to the App Store' and .. disappeared! Well what they told was not perfectly true because I could however connect to the store as I could browse and pick the apps, but the apps just didn't load. I tried to log into my account in iTunes on my Windows 7 laptop, too, and there got exactly the message in the topic title.
    It appeared later my Apple ID did not completely fail because when I switched from my home WiFi to the phone 3G, everything worked just as nothing happened. Logically, this intimated my WiFi had flaws. Or, some place between my WiFi router and Apple servers did, to be precise. My router was not to blame because I did no changes to it whatsoever.
    All right, it is Saturday today and my ISP is running in unmanned mode meaning no hotline, but I call them on Monday unless the problem disappears by itself. I just wonder what I say, because from non-i-world point of view everything works well, and I know for sure guys in the ISP support don't own any i-stuff, (because they are all android fanatics) . I'm not telling them my Apple ID to let them reproduce the problem on their home equipment, which means I come almost totally proofless.

  • Unable to connect to the selected mobile data service, please try again later. If the problem persists please contact your administrator

    Since last week or 2 weeks ago, some of our users (both Batam and Singapore) here encountered a problem where they are not able to browse the Internet on their BB as they used to.
    Example :
    I did a test to browse on their BB
    www.cnn.com
    they will see below error:
    “Unable to connect to the selected mobile data service, please try again later.
    If the problem persists please contact your administrator “
    However if we use ‘Google’ or  ‘Yahoo’ search on the BB and entered ‘CNN’ and run a search on it.
    We are able to open the CNN  website – from the link result search by Yahoo or Google
    It’s also applicable to other websites too.
    Any idea?

    Hi thatemailguy,
    Are the users on a BlackBerry Enterprise Server?
    Thanks
    -CptS
    Come follow your BlackBerry Technical Team on twitter! @BlackBerryHelp
    Be sure to click Kudos! for those who have helped you.Click Solution? for posts that have solved your issue(s)!

  • How can I back up ipad on icloud? Keep getting message "There was a problem completing the back up. Please try again later." I have, many times! The trouble shooting info does not resolve the problem.

    How can I back up ipad on icloud? I keep getting the message "There was a problem completing the back up. Please try again later." I have done so MANY times! I've followed the instructions ( I believe!) and the trouble shooting info does not resolve the problem. Can you please help?

    I had this exact same problem because the router i had in my house was having interference issues and the speed was too slow to do it.
    I would download a speedtest app on your iPad and see how fast your internet is.  I think the app is called speedtest in fact.

  • When trying to update my CC apps, the update fails. I get this error: Update Failed. There was an error installing this update. Please try again later or connect customer support. This is currently happening for InDesign, Photoshop and Bridge. I had this

    When trying to update my CC apps, the update fails. I get this error: Update Failed. There was an error installing this update. Please try again later or connect customer support. This is currently happening for InDesign, Photoshop and Bridge. I had this problem previous and was able to fix by doing a complete wipe of my computer and reinstalling CC. However, I should not have to wipe my computer clean everytime I need to do a CC update. HELP!

    Hi,
    Please download the updates directly from the link below:
    WIN: All Adobe CC 2014 Updates: The Direct Download Links for Windows | ProDesignTools
    MAC: All Adobe CC 2014 Updates: The Direct Download Links for Mac OS | ProDesignTools
    Regards,
    Sheena

  • I recently got an iPhone 4 out of nowhere it has decided to go to connect to iTunes screen/emergency calls only when I plug into iTunes it states we are unable to continue with your activation at this time please try again later, or contact customer care

    I have recently got an iPhone 4 out of no where it has decided to think that my headphones are in and they are not but does work with headphones in.
    Then later on within the same day it after turning my phone on and putting it on charge it comes to the screen stating to connect to iTunes/emergency calls only/no service so I connect it iTunes and it says we are unavailable to continue with your activation at this time. Please try again later, or contact customer care.
    HELP!

    the same problem but i used it already for 3 years my iphone 4, when i update to ios 6.1.3 version, now is failure like said.
    we are unable to continue with your activation at this time please try again later, or contact customer care
    any help please. i am here in saudi arabia city of jeddah.
    thank you very much in advance
    pabs

  • I get the following message, when trying to check for updates on itunes:-  "The iTunes update server could not be contacted. Please check your internet connection or try again later".

    I get the following message when I go to "check for updates" on iTunes (I have XP on windows). Error message: "The iTunes update server could not be contacted. Please check your internet connection or try again later".
    My firewall (both anti virus firewall and windows firewall, are set up to allow itunes programme to work) - I also have set both internet explorer and chrome to allow
    apple website as an exception.
    However, I still get the same error message... can anyone help?
    Thanks

    Try updating your iTunes using an iTunesSetup.exe (or iTunes64Setup.exe) installer file downloaded from the Apple website:
    http://www.apple.com/itunes/download/

  • 10.3 OS Upgrade error. An error has occurred while downloading software for your device. Please verify your internet connection or try again later

    HELP ! HELP ! HELP ! "An error has occurred while downloading software for your device. Please verify your internet connection or try again later, if the problem persists." appears while attempting to upgrade or install BlackBerry Device Software. upgrading my Z10 OS to 10.3 on both (link & web). but facing same problem again and again. plz help. internet speed is 1mbps and working fine.

    I suggest you try the very clean and very forceful AutoLoader method:
    http://supportforums.blackberry.com/t5/BlackBerry-10-OS-Device-Software/Upgrading-OS10-devices-using...
    Beware that it is completely destructive...the device will be "like new"...no data, no apps, no accounts, etc. Be sure you take a full backup first, as well as make full manual documentation of all apps, accounts, configurations, etc. Sometimes a restore reintroduces the very corruption one is trying to eliminate, and manual reconfiguration is necessary.
    You can also use this to fall back to a prior OS if you desire...you can install any OS level for which you can find an AutoLoader. (Hint...search over on the CB site!)
    Good luck and let us know!
    Occam's Razor nearly always applies when troubleshooting technology issues!
    If anyone has been helpful to you, please show your appreciation by clicking the button inside of their post. Please click here and read, along with the threads to which it links, for helpful information to guide you as you proceed. I always recommend that you treat your BlackBerry like any other computing device, including using a regular backup schedule...click here for an article with instructions.
    Join our BBM Channels
    BSCF General Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • (Cisco Historical Reporting / HRC ) All available connections to database server are in use by other client machines. Please try again later and check the log file for error 5054

    Hi All,
    I am getting an error message "All available connections to database server are in use by other client machines. Please try again later and check the log file for error 5054"  when trying to log into HRC (This user has the reporting capabilities) . I checked the log files this is what i found out 
    The log file stated that there were ongoing connections of HRC with the CCX  (I am sure there isn't any active login to HRC)
    || When you tried to login the following error was being displayed because the maximum number of connections were reached for the server .  We can see that a total number of 5 connections have been configured . ||
    1: 6/20/2014 9:13:49 AM %CHC-LOG_SUBFAC-3-UNK:Current number of connections (5) from historical Clients/Scheduler to 'CRA_DATABASE' database exceeded the maximum number of possible connections (5).Check with your administrator about changing this limit on server (wfengine.properties), however this might impact server performance.
    || Below we can see all 5 connections being used up . ||
    2: 6/20/2014 9:13:49 AM %CHC-LOG_SUBFAC-3-UNK:[DB Connections From Clients (count=5)]|[(#1) 'username'='uccxhrc','hostname'='3SK5FS1.ucsfmedicalcenter.org']|[(#2) 'username'='uccxhrc','hostname'='PFS-HHXDGX1.ucsfmedicalcenter.org']|[(#3) 'username'='uccxhrc','hostname'='PFS-HHXDGX1.ucsfmedicalcenter.org']|[(#4) 'username'='uccxhrc','hostname'='PFS-HHXDGX1.ucsfmedicalcenter.org']|[(#5) 'username'='uccxhrc','hostname'='47BMMM1.ucsfmedicalcenter.org']
    || Once the maximum number of connection was reached it threw an error . ||
    3: 6/20/2014 9:13:49 AM %CHC-LOG_SUBFAC-3-UNK:Number of max connection to 'CRA_DATABASE' database was reached! Connection could not be established.
    4: 6/20/2014 9:13:49 AM %CHC-LOG_SUBFAC-3-UNK:Database connection to 'CRA_DATABASE' failed due to (All available connections to database server are in use by other client machines. Please try again later and check the log file for error 5054.)
    Current exact UCCX Version 9.0.2.11001-24
    Current CUCM Version 8.6.2.23900-10
    Business impact  Not Critical
    Exact error message  All available connections to database server are in use by other client machines. Please try again later and check the log file for error 5054
    What is the OS version of the PC you are running  and is it physical machine or virtual machine that is running the HRC client ..
    OS Version Windows 7 Home Premium  64 bit and it’s a physical machine.
    . The Max DB Connections for Report Client Sessions is set to 5 for each servers (There are two servers). The no of HR Sessions is set to 10.
    I wanted to know if there is a way to find the HRC sessions active now and terminate the one or more or all of that sessions from the server end ? 

    We have had this "PRX5" problem with Exchange 2013 since the RTM version.  We recently applied CU3, and it did not correct the problem.  We have seen this problem on every Exchange 2013 we manage.  They are all installations where all roles
    are installed on the same Windows server, and in our case, they are all Windows virtual machines using Windows 2012 Hyper-V.
    We have tried all the "this fixed it for me" solutions regarding DNS, network cards, host file entries and so forth.  None of those "solutions" made any difference whatsoever.  The occurrence of the temporary error PRX5 seems totally random. 
    About 2 out of 20 incoming mail test by Microsoft Connectivity Analyzer fail with this PRX5 error.
    Most people don't ever notice the issue because remote mail servers retry the connection later.  However, telephone voice mail systems that forward voice message files to email, or other such applications such as your scanner, often don't retry and
    simply fail.  Our phone system actually disables all further attempts to send voice mail to a particular user if the PRX5 error is returned when the email is sent by the phone system.
    Is Microsoft totally oblivious to this problem?
    PRX5 is a serious issue that needs an Exchange team resolution, or at least an acknowledgement that the problem actually does exist and has negative consequences for proper mail flow.
    JSB

  • TS3297 i can no longer connect to itunes. a message comes up "we could not complete your itunes request. The itunes store is temporarily unavailable. please try again later. but when i use a different acct. it goes through right away . why did this start

    i can no longer connect to itunes. a message comes up "we could not complete your itunes request. The itunes store is temporarily unavailable. please try again later. but when i use a different acct. it goes through right away . why did this start happening?

    I don't know - but I am having the same problem and have not had any useful help from Apple Support.  Everything they told be to do has been done and it hasn't fixed the problem.

  • ERROR: Could not connect to WhatsApp service. Please try again later.

    Hi,
    Today there was a connection error with WhatsApp. I needed to send something, so decided to delete and then reinstall the app to try and attempt to fix the connection problem. I am using the iPhone 5C.
    Once I redownloaded the app, I opened it and the app asked me for my phone number. I typed it in.
    But to my surprise, I got this error:
    Could not connect to WhatsApp service. Please try again later.
    After several attempts of writing my phone number (100% in the correct format) I had found no luck or success.
    Anyone else having this error, or is it just me? Please provide some steps on how to fix this if so!
    Thank you

    Thank you for the heads up. It seems like it's working now.
    For everyone with this problem please thank AlbertoRuperto and follow these steps:
    1. Restart your iPhone.
    2. Open WhatsApp.
    3. Enter your phone number.
    4. Enter verification code (if you're a new member) or just click 'Next' if you're a returning user.
    5. Done! All your contacts should be there and your chats (as long as you backed them up).
    P.S. This only applies to people who redownloaded and are stuck on phone verification page.

  • Today is April 10, 2013. I try to login to iTunes connect and I keep getting the message "An error has occurred processing your request. Please try again later or send an email for assistance." It never tells us what email address we need to write to.

    Today is April 10, 2013. I try to login to iTunes connect and I keep getting the message "An error has occurred processing your request. Please try again later or send an email for assistance." It never tells us what email address we need to write to.

    The problem was solved by Apple Technical Help. The process is as flollows:
    1. Open Safari
    2. Menu item Safari-Reset Safari - remove all website data - reset
    3. Now if you try to login on iTunes connect it will work.

Maybe you are looking for

  • Is Ipod compatible with Windows VISTA?

    Hi Folks Sorry - may have posted in the wrong discussion, but here's trying! Read some posts on this subject before, the suggestion is not, the iPod shows up as a removable drive in VISTA but iTunes won't sync - that was RC1 and not release versions.

  • How to make iWeb NOT start up at login?

    I did something, somhow, to make iWeb start up at login. I checked the Preferences to find a place to stop this, but Preferences does not deal with automatic login. QUESTION: Where do I go to get iWeb not to start up automatically at login? Thank you

  • Running Java Console

    Hi, I have a user who has a problem with java console. He just changed his computer and in both he run Discoverer Plus 10.1.2.0. In the new computer the java console appears in the screen and doesn't close. When in the old computer this problem didn'

  • All the tunes in my library have duplicated. 1,1,2,2,3,3, etc. Is there a quick way of deleting the duplicates? I have Windows 7.

    All my tunes in my library have duplicated. 1,1,2,2,3.3. etc.  Is there a quick way to delete the duplications - I have over a 1000. I have Windows 7.?? Help please.

  • Change color on a scrollbar

    Hi! I have tried to find an answer to this problem in several places, books and forums, everywhere. I need a code snippet on how to change color on a scrollbar. Things like: scrollbar-base-color scrollbar-face-color scrollbar-track-color ....and so o