User Profile

Collapse

Profile Sidebar

Collapse
ryno du preez
ryno du preez
Last Activity: Jan 29 '19, 01:59 PM
Joined: Jul 5 '11
Location: south africa
  •  
  • Time
  • Show
  • Source
Clear All
new posts

  • The wouls suggest implementing a proxy server so you can control internet access and who is allowed see wich websites like youtube ect. It sounds to me you have an Abuse problem. You can also run antivirus scans on your computers as bots will also cause high internet usage
    See more | Go to post

    Leave a comment:


  • ryno du preez
    replied to VLAN Question
    It is not hard to reach your end goal, If you use a Manageable switch that you can configure to allow your IP ranges to the new switches. But this, of course, depends on your core switch. you will have to setup the core switch to listen for the vlans on the attached ports
    See more | Go to post

    Leave a comment:


  • ryno du preez
    replied to Unknown Virus/Malware
    Try running combo fix from Bleeping computer and adware remover also run Eset online scanner. Also, check your antivirus software if it is not compromised in any way. (process logs)

    If the above fails you have two options that you may want to consider, Restore your computer to an earlier date or Format and reinstall
    See more | Go to post

    Leave a comment:


  • Try installing 7zip to uncompress the file in question. another reason for this error can be that the backup file is corrupted and it can not be extracted.
    See more | Go to post

    Leave a comment:


  • Have you tried to scan your pst for corruptions? The only other reason would be if there is a black list set on your incoming mail. one way of testing this is to setup your pop account on another email client like ms mail or thunderbird
    See more | Go to post

    Leave a comment:


  • ryno du preez
    started a topic Progress Bar when copying files

    Progress Bar when copying files

    Hello All
    I'm new to Python And tkinter
    With that said I'm trying to write a simple code to show a progress bar while I'm copying files from one directory to another one. But all my efforts has turned out to be a waste of time. I wold really appreciate any help on this. The end result will be a Gui for the user to click on and the copy process will start.
    Code:
    import os
    import shutil
    # make sure that these directories
    ...
    See more | Go to post

  • ryno du preez
    replied to running multiple functions
    Ok that makes sense Thank you I'll Play around with it and see what I get. This is all new to me.Like I said I'm very new to python and programing.

    Yes there is only one file in the directory list that needs to be changed. That is what the script is looking for.
    See more | Go to post

    Leave a comment:


  • ryno du preez
    replied to running multiple functions
    Thank you very mush for the sample code. I only have one problem I do not know how many files are going to get prossessed as this script is walking the directory And finding all the hits in that directory tree. Below is the core script

    Code:
    for root, dirs, files in os.walk(search_folder):
    
                for file in files:
                    print os.path.join(root, file)
    
                    if file == 'shell.htm':
    ...
    See more | Go to post

    Leave a comment:


  • ryno du preez
    started a topic running multiple functions

    running multiple functions

    Hello all

    Im new to python, I'm trying to write a small Program that will update find files and update then in directory ( this is working ) the problem Im facing is that I can not get two functions to run at the same time. For example While the code searches for the file and replaces them, also display a small popup window showing an text message that the system is busy. and after the code has completed show a popup message Completed....
    See more | Go to post

  • ryno du preez
    replied to Hide Subdirectory name in URL
    thank you I'll Try that
    See more | Go to post

    Leave a comment:


  • ryno du preez
    replied to Hide Subdirectory name in URL
    Thank you for your reply What must I use
    See more | Go to post

    Leave a comment:


  • ryno du preez
    started a topic Hide Subdirectory name in URL

    Hide Subdirectory name in URL

    I 'm trying to hide my sub directory with in the URl
    exp wwww.exsample.c om/directory/index.php I want to display it as www.exsample.co m/index.php
    Below is the Htaccess script I'm using but it causes my site to break
    Code:
    Options +FollowSymLinks -MultiViews
    # Turn mod_rewrite on
    RewriteEngine On
    RewriteBase /
    
    RewriteCond %{REQUEST_FILENAME}.php -f
    RewriteCond %{REQUEST_URI} !/$
    RewriteRule
    ...
    See more | Go to post

  • ryno du preez
    replied to Upgradeing LAMP on redhat 5
    thank you for the reply
    just one more question if you upgrade from mysql 5.0 to 5.5 will it make any diffrence to the dbs
    See more | Go to post

    Leave a comment:


  • ryno du preez
    started a topic Upgradeing LAMP on redhat 5

    Upgradeing LAMP on redhat 5

    Good day all

    I need to upgrade my LAMP server apache 2.2 php 5.3.22 mysql 5.0.77.

    I would like to find out can you install php 5.5 on apache 2.2 or do you need to upgrade the apcahe aswell?

    secondly

    if I check the DB in MySQL I can't see any of the db on the server all the sites uses JOOMLA for the sites and want to upgrade to Joomla 3 how to backup the sites
    See more | Go to post

  • ryno du preez
    started a topic Split Lan Network in to two groups

    Split Lan Network in to two groups

    Hi all

    I have a lan network with let say 10 users
    5 users in group "A" and 5 users in group "B"

    Now my problem is as follows I want the Group A to see Group B but Group "B" may not see Group A at all.

    Is there a way of doing this with every one on the same network range

    I've tryed shanging the sub net Group A 255.255.0.0 and Group B 255.255.255.0...
    See more | Go to post

  • install FileZilla Server and configure
    See more | Go to post

    Leave a comment:


  • ryno du preez
    replied to How to read data into an array
    I'm trying to write a report in python where the data is read from a text file with CSV and then using report lab producing a PDF file(Invoice)

    In the text file We have different sections 'H' Header 'B' Body ect. so that is why I'm using more then one loop. it is reading the text file and using row to assign it to a verable that gets coped to the PDF.
    I manage to get it to read the RB section by using the following
    ...
    See more | Go to post

    Leave a comment:


  • ryno du preez
    started a topic How to read data into an array

    How to read data into an array

    HI all
    I'm reading data from a CSV (text file) with a "| " as the denominator. Every is working as planned but I'm having a problem with the last 3 lines of code. In the text Document the 'RB' (Body) has more than one entry exp.
    RB | INV000111 | price to be charged
    RB | INV000112 | price 2 to be charged

    some has more then TWO entry. Now the problem being

    When Python reads the CSV it only...
    See more | Go to post
    Last edited by bvdet; Mar 25 '14, 03:06 PM. Reason: Clarify title

  • I Use Photoshop and Gimp both of them will work for you the one you have to pay for and the other is free enjoy
    See more | Go to post

    Leave a comment:


  • Did this masjien have any office updates installed on it ?
    See more | Go to post

    Leave a comment:

No activity results to display
Show More
Working...