Rituxan
Rituxan is a prescription medicine used to treat adults with moderate to severe Pemphigus Vulgaris (PV).
//************* TESTING *******************************************// // Display errors // error_reporting(E_ERROR | E_PARSE | E_COMPILE_ERROR); // ini_set('display_errors',1); // ini_set('display_startup_errors',1); // ini_set('log_errors',1); // ini_set('error_log',get_stylesheet_directory().'/debug.txt'); //************* BASIC WP ADDITIONS ********************************// // Allow SVG upload with extra security since an SVG is technically code // Allow SVG upload safely function allow_svg_upload($mimes){ $mimes['svg'] = 'image/svg+xml'; return $mimes; } add_filter('upload_mimes','allow_svg_upload'); // Fix WP filetype check for SVGs function fix_svg_filetype_check($data,$file,$filename,$mimes){ $ext = strtolower(pathinfo($filename,PATHINFO_EXTENSION)); if($ext === 'svg'): $data['ext'] = 'svg'; $data['type'] = 'image/svg+xml'; endif; return $data; } add_filter('wp_check_filetype_and_ext','fix_svg_filetype_check',10,4); // Sanitize SVGs safely before saving function sanitize_svg($file){ $ext = strtolower(pathinfo($file['name'], PATHINFO_EXTENSION)); if($ext !== 'svg') return $file; if(!file_exists($file['tmp_name'])) return $file; libxml_use_internal_errors(true); $svg_content = file_get_contents($file['tmp_name']); if(!$svg_content) return $file; $dom = new DOMDocument(); try{ $dom->loadXML($svg_content, LIBXML_NONET | LIBXML_NOERROR | LIBXML_NOWARNING); // Remove
Rituxan is a prescription medicine used to treat adults with moderate to severe Pemphigus Vulgaris (PV).
Your doctor’s office will schedule appointments for the first course of treatment (2 infusions given 2 weeks apart). Your infusion may be given at your doctor’s office, an infusion center, or a hospital.
Infusions can take several hours, so you should plan accordingly. There are no special rules for what you can eat or drink before, during, or after an infusion. Some people like to eat before or bring a snack along. Just be sure to check with the facility first to see if bringing food is allowed. Due to the possibility of infusion-related reactions, the first infusion may take most of the day, but later infusions may take less time.
As you continue with your Rituxan treatment, it’s important to monitor your progress and remain mindful of how you’re feeling. Rituxan can cause side effects, so be sure to tell your doctor if you experience any discomfort during or after treatment. These are not all of the possible side effects with Rituxan. See below for more important side effect information about Rituxan.
These are not all the possible side effects with Rituxan. Call your healthcare provider for medical advice about side effects.