diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..4892476
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,13 @@
+
+Config/
+Config
+Config/dev.ini
+vendor/
+vendor
+logs/
+logs
+Cron/prod.ini
+Temp/
+Temp
+*.ssh
+.ssh/
\ No newline at end of file
diff --git a/Cron/Acte.php b/Cron/Acte.php
old mode 100644
new mode 100755
diff --git a/Cron/Beneficiaire.php b/Cron/Beneficiaire.php
old mode 100644
new mode 100755
diff --git a/Cron/Configuration.php b/Cron/Configuration.php
old mode 100644
new mode 100755
diff --git a/Cron/Controleurrequete.php b/Cron/Controleurrequete.php
old mode 100644
new mode 100755
diff --git a/Cron/Cronenvoimail.php b/Cron/Cronenvoimail.php
old mode 100644
new mode 100755
index 32c8cfe..3fceba1
--- a/Cron/Cronenvoimail.php
+++ b/Cron/Cronenvoimail.php
@@ -479,7 +479,8 @@ class Cronenvoimail
$this->mailententeprealablemont($idBeneficiaire, $codePrestataire, $heureCourante);
}
- sleep(3);
+ // sleep(3);
+ usleep(200000); // attendre 0.2s entre chaque mail
}
}
diff --git a/Cron/Cronenvoimailadhrent.php b/Cron/Cronenvoimailadhrent.php
old mode 100644
new mode 100755
index 14db776..6c04618
--- a/Cron/Cronenvoimailadhrent.php
+++ b/Cron/Cronenvoimailadhrent.php
@@ -67,6 +67,15 @@ class Cronenvoimailadhrent
$this->email->AddAddress(trim($ad) );
}
+ if($this->emailCc>" ")
+ {
+ $ccs = explode(';', $this->emailCc);
+ foreach ($ccs as $cc)
+ {
+ $this->email->addCC(trim($cc) );
+ }
+ }
+
$this->email->Subject = $this->objet;
$this->email->Body = $this->body;
@@ -92,8 +101,8 @@ class Cronenvoimailadhrent
$this->marquermail($this->idMail, "1");
}
-
- sleep(1);
+
+ usleep(200000); // attendre 0.2s entre chaque mail
}
public function envoyer_les_mails()
@@ -106,6 +115,7 @@ class Cronenvoimailadhrent
{
$this->idMail = $un_mail['idMail'];
$this->emailDestination = $un_mail['email'];
+ $this->emailCc = $un_mail['emailCc'];
$this->objet = $un_mail['objet'];
$this->body = $un_mail['message'];
@@ -116,7 +126,7 @@ class Cronenvoimailadhrent
$this->envoyer_un_des_mail();
- sleep(1);
+ usleep(200000); // attendre 0.2s entre chaque mail
}
}
} // FIN CLASSE
diff --git a/Cron/Cronenvoisms.php b/Cron/Cronenvoisms.php
old mode 100644
new mode 100755
index e812524..5428971
--- a/Cron/Cronenvoisms.php
+++ b/Cron/Cronenvoisms.php
@@ -63,7 +63,7 @@ class Cronenvoisms
$this->envoyer_un_des_sms();
- sleep(1);
+ usleep(200000); // attendre 0.2s entre chaque mail
}
}
@@ -102,7 +102,7 @@ class Cronenvoisms
$this->envoyersmsskysms($tel, $message, $titreSms);
}
- sleep(1);
+ usleep(200000); // attendre 0.2s entre chaque mail
}
}
diff --git a/Cron/Cronenvoismssav.php b/Cron/Cronenvoismssav.php
deleted file mode 100644
index e812524..0000000
--- a/Cron/Cronenvoismssav.php
+++ /dev/null
@@ -1,281 +0,0 @@
-smscron = new Envoismscron();
-
- $this->lesSms = $this->smscron->get_les_smsaenvoyer($nbSms);
- }
-
- public function chargersociete()
- {
- require_once 'Societeuser.php';
-
- $this->societe = new Societeuser();
- $societe = $this->societe->getparametressociete();
-
- $this->fournisseurSms = $societe['fournisseurSms'];
- $this->devise = $societe['devise'];
- $this->nbSmsParCron = $societe['nbSmsParCron'];
- $this->nomProduitSante = $societe['nomProduitSante'];
- $this->titreSms = $societe['titreSms'];
-
- $this->loginSms = $societe['loginSms'];
- $this->motPassSms = $societe['motPassSms'];
- }
-
- public function marquersms($idSms, $etat)
- {
- require_once 'Envoismscron.php';
-
- $this->smscron = new Envoismscron();
- $smsaenvoyer = $this->smscron->marquersms($idSms, $etat);
- }
-
- public function envoyer_les_sms()
- {
- $lesSms = $this->lesSms;
-
- foreach ($lesSms as $un_sms)
- {
- $this->idSms = $un_sms['idSms'];
- $this->destinataires = $un_sms['destinataires'];
- $this->message = $un_sms['message'];
-
- /*
- echo $this->idSms;
- echo "
";
-
- echo $this->destinataires;
- echo "
";
-
- echo $this->message;
- echo "
";
- */
-
- $this->envoyer_un_des_sms();
-
- sleep(1);
- }
- }
-
- public function envoyer_un_des_sms()
- {
- /*
- echo "envoyer_un_des_sms";
- exit();
- */
-
- $destinataires = $this->destinataires;
- $message = $this->message;
- $fournisseurSms = $this->fournisseurSms;
- $nomProduitSante = $this->nomProduitSante;
- $titreSms = $this->titreSms;
- $fournisseurSms = $this->fournisseurSms;
-
-
- $dest = explode(',', $destinataires);
- foreach ($dest as $tel)
- {
- if($fournisseurSms=="esicia")
- {
- $this->envoyersmsesicia($tel, $message, $titreSms);
- }
- elseif($fournisseurSms=="blive")
- {
- $this->envoyersmsbliive($tel, $message, $titreSms);
- }
- elseif($fournisseurSms=="hooza")
- {
- $this->envoyersmshooza($tel, $message, $titreSms);
- }
- elseif($fournisseurSms=="skysms")
- {
- $this->envoyersmsskysms($tel, $message, $titreSms);
- }
-
- sleep(1);
- }
- }
-
- public function envoyersmsbliive($destinataires_c, $message_c, $titreSms_c)
- {
- $loginSms = $this->loginSms;
- $motPassSms = $this->motPassSms;
-
- // problème avec le https
- // $url = "http://app.blive.bi/bridge-ws/ws/send";
- $url = "https://app.blive.bi/bridge-ws/ws/send";
-
- $get = array
- (
- // 'id' =>'snd-4b3abf81d-21707',
- 'id' =>$loginSms,
- 'from' =>$titreSms_c,
- 'to' =>$destinataires_c,
- 'text' =>$message_c
- );
-
- // var_dump($get);
-
- $ch = curl_init();
- curl_setopt($ch, CURLOPT_URL, $url);
- curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
- // curl_setopt($ch, CURLOPT_USERPWD, "BICOR-VIE:60cd7371a27c410484a1b485d273bef9");
- curl_setopt($ch, CURLOPT_USERPWD, $motPassSms);
- curl_setopt($ch, CURLOPT_HTTPAUTH, CURLAUTH_BASIC);
- curl_setopt($ch, CURLOPT_POST, TRUE);
- curl_setopt($ch, CURLOPT_POSTFIELDS, $get);
-
- $result = curl_exec($ch);
-
- if (curl_errno($ch))
- {
- echo 'Error:' . curl_error($ch);
- }
-
- // $info = curl_getinfo($ch);
- curl_close($ch);
-
- $this->marquersms($this->idSms, "1");
-
- // A SUPPRIMER => juste pou tester
- var_dump($result);
- }
-
- public function envoyersmsesicia($destinataires_c, $message_c, $titreSms_c)
- {
- $loginSms = $this->loginSms;
- $motPassSms = $this->motPassSms;
-
- // problème avec le https
- $url = "http://gateway.esicia.com/sendsms/?";
-
- $postFields = array
- (
- 'ohereza' =>$titreSms_c,
- 'kuri' =>$destinataires_c,
- 'ubutumwa' =>$message_c,
-
- // 'client' =>'radiant',
- // 'password' =>'umugozi',
-
- 'client' =>$loginSms,
- 'password' =>$motPassSms,
- 'msgid' =>'kanesin'
- );
-
- $post = http_build_query($postFields);
-
- $url .= $post;
-
- $result = file_get_contents($url);
-
- $this->marquersms($this->idSms, "1");
-
- // A SUPPRIMER
- // var_dump($result);
- }
-
- public function envoyersmshooza($destinataires_c, $message_c, $titreSms_c)
- {
- $loginSms = $this->loginSms;
- $motPassSms = $this->motPassSms;
-
- // $message_c .= " => ".$loginSms;
-
- $url = "http://rslr.connectbind.com/bulksms/bulksms";
-
- $get = array
- (
- // 'username' =>'HoAj-radiant',
- // 'password' =>'radiant',
-
- 'username' =>$loginSms,
- 'password' =>$motPassSms,
- 'type' =>'0',
- 'dlr' =>'1',
- 'destination' =>$destinataires_c,
- 'source' =>$titreSms_c,
- 'message' =>$message_c
- );
-
- $defaults = array(
- CURLOPT_URL => $url. (strpos($url, '?') === FALSE ? '?' : ''). http_build_query($get),
- // CURLOPT_URL => $url,
- CURLOPT_HEADER => 0,
- CURLOPT_RETURNTRANSFER => TRUE,
- CURLOPT_TIMEOUT => 10
- );
-
- $ch = curl_init();
-
- curl_setopt_array($ch, ($defaults));
- if( ! $result = curl_exec($ch))
- {
- trigger_error(curl_error($ch));
- }
-
- curl_close($ch);
-
- $this->marquersms($this->idSms, "1");
-
- // A SUPPRIMER
- // var_dump($result);
- }
-
- public function envoyersmsskysms($destinataires_c, $message_c, $titreSms_c)
- {
- $loginSms = $this->loginSms;
- $motPassSms = $this->motPassSms;
-
- // $message_c .= " => SKYSMS";
-
- $url = "http://137.74.43.214:9000/api/public/sendsms/v2/output=text?";
-
- $postFields = array
- (
- 'user' => $loginSms,
- 'password' => $motPassSms,
- 'sender' => $titreSms_c,
- 'phone' => $destinataires_c,
- 'message' => $message_c
- );
-
- $post = http_build_query($postFields);
-
- $url .= $post;
-
- $result = file_get_contents($url);
-
- $this->marquersms($this->idSms, "1");
-
- // A SUPPRIMER
- // var_dump($result);
- }
-
-
-} // FIN CLASSE
-
-// envoi des SMS
-
-$envoismsdivers = new Cronenvoisms();
-
-$envoismsdivers->chargersociete();
-
-$nbSms = $envoismsdivers->nbSmsParCron;
-
-$envoismsdivers->charger_les_sms($nbSms);
-
-// echo "charger_les_sms";
-// exit();
-
-$envoismsdivers->envoyer_les_sms();
diff --git a/Cron/Cronenvoismstest.php b/Cron/Cronenvoismstest.php
deleted file mode 100644
index d475595..0000000
--- a/Cron/Cronenvoismstest.php
+++ /dev/null
@@ -1,285 +0,0 @@
-smscron = new Envoismscron();
-
- $this->lesSms = $this->smscron->get_les_smsaenvoyer($nbSms);
- }
-
- public function chargersociete()
- {
- require_once 'Societeuser.php';
-
- $this->societe = new Societeuser();
- $societe = $this->societe->getparametressociete();
-
- $this->fournisseurSms = $societe['fournisseurSms'];
- $this->devise = $societe['devise'];
- $this->nbSmsParCron = $societe['nbSmsParCron'];
- $this->nomProduitSante = $societe['nomProduitSante'];
- $this->titreSms = $societe['titreSms'];
-
- $this->loginSms = $societe['loginSms'];
- $this->motPassSms = $societe['motPassSms'];
- }
-
- public function marquersms($idSms, $etat)
- {
- require_once 'Envoismscron.php';
-
- $this->smscron = new Envoismscron();
- $smsaenvoyer = $this->smscron->marquersms($idSms, $etat);
- }
-
- public function envoyer_les_sms()
- {
- $lesSms = $this->lesSms;
-
- foreach ($lesSms as $un_sms)
- {
- $this->idSms = $un_sms['idSms'];
- $this->destinataires = $un_sms['destinataires'];
- $this->message = $un_sms['message'];
-
- /*
- echo $this->idSms;
- echo "
";
-
- echo $this->destinataires;
- echo "
";
-
- echo $this->message;
- echo "
";
- */
-
- $this->envoyer_un_des_sms();
-
- sleep(1);
- }
- }
-
- public function envoyer_un_des_sms()
- {
- /*
- echo "envoyer_un_des_sms";
- exit();
- */
-
- $destinataires = $this->destinataires;
- $message = $this->message;
- $fournisseurSms = $this->fournisseurSms;
- $nomProduitSante = $this->nomProduitSante;
- $titreSms = $this->titreSms;
- $fournisseurSms = $this->fournisseurSms;
-
-
- $dest = explode(',', $destinataires);
- foreach ($dest as $tel)
- {
- if($fournisseurSms=="esicia")
- {
- $this->envoyersmsesicia($tel, $message, $titreSms);
- }
- elseif($fournisseurSms=="blive")
- {
- $this->envoyersmsbliive($tel, $message, $titreSms);
- }
- elseif($fournisseurSms=="hooza")
- {
- $this->envoyersmshooza($tel, $message, $titreSms);
- }
- elseif($fournisseurSms=="skysms")
- {
- $this->envoyersmsskysms($tel, $message, $titreSms);
- }
- elseif($fournisseurSms=="intouchsms")
- {
- $this->envoyersmsintouchsms($tel, $message, $titreSms);
- }
-
- sleep(1);
- }
- }
-
- public function envoyersmsbliive($destinataires_c, $message_c, $titreSms_c)
- {
- $loginSms = $this->loginSms;
- $motPassSms = $this->motPassSms;
-
- // problème avec le https
- // $url = "http://app.blive.bi/bridge-ws/ws/send";
- $url = "https://app.blive.bi/bridge-ws/ws/send";
-
- $get = array
- (
- // 'id' =>'snd-4b3abf81d-21707',
- 'id' =>$loginSms,
- 'from' =>$titreSms_c,
- 'to' =>$destinataires_c,
- 'text' =>$message_c
- );
-
- // var_dump($get);
-
- $ch = curl_init();
- curl_setopt($ch, CURLOPT_URL, $url);
- curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
- // curl_setopt($ch, CURLOPT_USERPWD, "BICOR-VIE:60cd7371a27c410484a1b485d273bef9");
- curl_setopt($ch, CURLOPT_USERPWD, $motPassSms);
- curl_setopt($ch, CURLOPT_HTTPAUTH, CURLAUTH_BASIC);
- curl_setopt($ch, CURLOPT_POST, TRUE);
- curl_setopt($ch, CURLOPT_POSTFIELDS, $get);
-
- $result = curl_exec($ch);
-
- if (curl_errno($ch))
- {
- echo 'Error:' . curl_error($ch);
- }
-
- // $info = curl_getinfo($ch);
- curl_close($ch);
-
- $this->marquersms($this->idSms, "1");
-
- // A SUPPRIMER => juste pou tester
- var_dump($result);
- }
-
- public function envoyersmsesicia($destinataires_c, $message_c, $titreSms_c)
- {
- $loginSms = $this->loginSms;
- $motPassSms = $this->motPassSms;
-
- // problème avec le https
- $url = "http://gateway.esicia.com/sendsms/?";
-
- $postFields = array
- (
- 'ohereza' =>$titreSms_c,
- 'kuri' =>$destinataires_c,
- 'ubutumwa' =>$message_c,
-
- // 'client' =>'radiant',
- // 'password' =>'umugozi',
-
- 'client' =>$loginSms,
- 'password' =>$motPassSms,
- 'msgid' =>'kanesin'
- );
-
- $post = http_build_query($postFields);
-
- $url .= $post;
-
- $result = file_get_contents($url);
-
- $this->marquersms($this->idSms, "1");
-
- // A SUPPRIMER
- // var_dump($result);
- }
-
- public function envoyersmshooza($destinataires_c, $message_c, $titreSms_c)
- {
- $loginSms = $this->loginSms;
- $motPassSms = $this->motPassSms;
-
- // $message_c .= " => ".$loginSms;
-
- $url = "http://rslr.connectbind.com/bulksms/bulksms";
-
- $get = array
- (
- // 'username' =>'HoAj-radiant',
- // 'password' =>'radiant',
-
- 'username' =>$loginSms,
- 'password' =>$motPassSms,
- 'type' =>'0',
- 'dlr' =>'1',
- 'destination' =>$destinataires_c,
- 'source' =>$titreSms_c,
- 'message' =>$message_c
- );
-
- $defaults = array(
- CURLOPT_URL => $url. (strpos($url, '?') === FALSE ? '?' : ''). http_build_query($get),
- // CURLOPT_URL => $url,
- CURLOPT_HEADER => 0,
- CURLOPT_RETURNTRANSFER => TRUE,
- CURLOPT_TIMEOUT => 10
- );
-
- $ch = curl_init();
-
- curl_setopt_array($ch, ($defaults));
- if( ! $result = curl_exec($ch))
- {
- trigger_error(curl_error($ch));
- }
-
- curl_close($ch);
-
- $this->marquersms($this->idSms, "1");
-
- // A SUPPRIMER
- // var_dump($result);
- }
-
- public function envoyersmsskysms($destinataires_c, $message_c, $titreSms_c)
- {
- $loginSms = $this->loginSms;
- $motPassSms = $this->motPassSms;
-
- // $message_c .= " => SKYSMS";
-
- $url = "http://137.74.43.214:9000/api/public/sendsms/v2/output=text?";
-
- $postFields = array
- (
- 'user' => $loginSms,
- 'password' => $motPassSms,
- 'sender' => $titreSms_c,
- 'phone' => $destinataires_c,
- 'message' => $message_c
- );
-
- $post = http_build_query($postFields);
-
- $url .= $post;
-
- $result = file_get_contents($url);
-
- $this->marquersms($this->idSms, "1");
-
- // A SUPPRIMER
- // var_dump($result);
- }
-
-
-} // FIN CLASSE
-
-// envoi des SMS
-
-$envoismsdivers = new Cronenvoisms();
-
-$envoismsdivers->chargersociete();
-
-$nbSms = $envoismsdivers->nbSmsParCron;
-
-$envoismsdivers->charger_les_sms($nbSms);
-
-// echo "charger_les_sms";
-// exit();
-
-$envoismsdivers->envoyer_les_sms();
diff --git a/Cron/Cronnettoyerfihierstemp.php b/Cron/Cronnettoyerfihierstemp.php
old mode 100644
new mode 100755
diff --git a/Cron/Cronnettoyerfihierstempimport.php b/Cron/Cronnettoyerfihierstempimport.php
old mode 100644
new mode 100755
diff --git a/Cron/Derogation.php b/Cron/Derogation.php
old mode 100644
new mode 100755
diff --git a/Cron/Ebenegmail.php b/Cron/Ebenegmail.php
old mode 100644
new mode 100755
index f4b53dc..d897f68
--- a/Cron/Ebenegmail.php
+++ b/Cron/Ebenegmail.php
@@ -27,6 +27,12 @@ $mail->SMTPSecure = 'tls';
$mail->SMTPAuth = true;
+// ajout du 18/03/2026
+$mail->CharSet = 'UTF-8';
+$mail->SMTPKeepAlive = true; // ← connexion réutilisée pour tout le batch
+$mail->Timeout = 15;
+// fin ajout 18/03/2026
+
// $mail->Username = "intersanteebene@gmail.com";
// $mail->Username = "intersante@radiant.rw";
$mail->Username = "bkwitonda@radiant.rw";
diff --git a/Cron/Envoimail.php b/Cron/Envoimail.php
old mode 100644
new mode 100755
diff --git a/Cron/Envoimailadherentcron.php b/Cron/Envoimailadherentcron.php
old mode 100644
new mode 100755
diff --git a/Cron/Envoimailcron.php b/Cron/Envoimailcron.php
old mode 100644
new mode 100755
diff --git a/Cron/Envoismscron.php b/Cron/Envoismscron.php
old mode 100644
new mode 100755
diff --git a/Cron/Facture.php b/Cron/Facture.php
old mode 100644
new mode 100755
diff --git a/Cron/Feuillemaladie.php b/Cron/Feuillemaladie.php
old mode 100644
new mode 100755
diff --git a/Cron/Fpdf/font/courier.php b/Cron/Fpdf/font/courier.php
old mode 100644
new mode 100755
diff --git a/Cron/Fpdf/font/courierb.php b/Cron/Fpdf/font/courierb.php
old mode 100644
new mode 100755
diff --git a/Cron/Fpdf/font/courierbi.php b/Cron/Fpdf/font/courierbi.php
old mode 100644
new mode 100755
diff --git a/Cron/Fpdf/font/courieri.php b/Cron/Fpdf/font/courieri.php
old mode 100644
new mode 100755
diff --git a/Cron/Fpdf/font/helvetica.php b/Cron/Fpdf/font/helvetica.php
old mode 100644
new mode 100755
diff --git a/Cron/Fpdf/font/helveticab.php b/Cron/Fpdf/font/helveticab.php
old mode 100644
new mode 100755
diff --git a/Cron/Fpdf/font/helveticabi.php b/Cron/Fpdf/font/helveticabi.php
old mode 100644
new mode 100755
diff --git a/Cron/Fpdf/font/helveticai.php b/Cron/Fpdf/font/helveticai.php
old mode 100644
new mode 100755
diff --git a/Cron/Fpdf/font/symbol.php b/Cron/Fpdf/font/symbol.php
old mode 100644
new mode 100755
diff --git a/Cron/Fpdf/font/times.php b/Cron/Fpdf/font/times.php
old mode 100644
new mode 100755
diff --git a/Cron/Fpdf/font/timesb.php b/Cron/Fpdf/font/timesb.php
old mode 100644
new mode 100755
diff --git a/Cron/Fpdf/font/timesbi.php b/Cron/Fpdf/font/timesbi.php
old mode 100644
new mode 100755
diff --git a/Cron/Fpdf/font/timesi.php b/Cron/Fpdf/font/timesi.php
old mode 100644
new mode 100755
diff --git a/Cron/Fpdf/font/zapfdingbats.php b/Cron/Fpdf/font/zapfdingbats.php
old mode 100644
new mode 100755
diff --git a/Cron/Fpdf/fpdf.php b/Cron/Fpdf/fpdf.php
old mode 100644
new mode 100755
diff --git a/Cron/Functions.php b/Cron/Functions.php
old mode 100644
new mode 100755
diff --git a/Cron/Functions_old.php b/Cron/Functions_old.php
old mode 100644
new mode 100755
diff --git a/Cron/Medicament.php b/Cron/Medicament.php
old mode 100644
new mode 100755
diff --git a/Cron/Modele.php b/Cron/Modele.php
old mode 100644
new mode 100755
diff --git a/Cron/Ordonnance.php b/Cron/Ordonnance.php
old mode 100644
new mode 100755
diff --git a/Cron/PHPExcel/PHPExcel.php b/Cron/PHPExcel/PHPExcel.php
old mode 100644
new mode 100755
diff --git a/Cron/PHPExcel/PHPExcel/Autoloader.php b/Cron/PHPExcel/PHPExcel/Autoloader.php
old mode 100644
new mode 100755
diff --git a/Cron/PHPExcel/PHPExcel/CachedObjectStorage/APC.php b/Cron/PHPExcel/PHPExcel/CachedObjectStorage/APC.php
old mode 100644
new mode 100755
diff --git a/Cron/PHPExcel/PHPExcel/CachedObjectStorage/CacheBase.php b/Cron/PHPExcel/PHPExcel/CachedObjectStorage/CacheBase.php
old mode 100644
new mode 100755
diff --git a/Cron/PHPExcel/PHPExcel/CachedObjectStorage/DiscISAM.php b/Cron/PHPExcel/PHPExcel/CachedObjectStorage/DiscISAM.php
old mode 100644
new mode 100755
diff --git a/Cron/PHPExcel/PHPExcel/CachedObjectStorage/ICache.php b/Cron/PHPExcel/PHPExcel/CachedObjectStorage/ICache.php
old mode 100644
new mode 100755
diff --git a/Cron/PHPExcel/PHPExcel/CachedObjectStorage/Igbinary.php b/Cron/PHPExcel/PHPExcel/CachedObjectStorage/Igbinary.php
old mode 100644
new mode 100755
diff --git a/Cron/PHPExcel/PHPExcel/CachedObjectStorage/Memcache.php b/Cron/PHPExcel/PHPExcel/CachedObjectStorage/Memcache.php
old mode 100644
new mode 100755
diff --git a/Cron/PHPExcel/PHPExcel/CachedObjectStorage/Memory.php b/Cron/PHPExcel/PHPExcel/CachedObjectStorage/Memory.php
old mode 100644
new mode 100755
diff --git a/Cron/PHPExcel/PHPExcel/CachedObjectStorage/MemoryGZip.php b/Cron/PHPExcel/PHPExcel/CachedObjectStorage/MemoryGZip.php
old mode 100644
new mode 100755
diff --git a/Cron/PHPExcel/PHPExcel/CachedObjectStorage/MemorySerialized.php b/Cron/PHPExcel/PHPExcel/CachedObjectStorage/MemorySerialized.php
old mode 100644
new mode 100755
diff --git a/Cron/PHPExcel/PHPExcel/CachedObjectStorage/PHPTemp.php b/Cron/PHPExcel/PHPExcel/CachedObjectStorage/PHPTemp.php
old mode 100644
new mode 100755
diff --git a/Cron/PHPExcel/PHPExcel/CachedObjectStorage/SQLite.php b/Cron/PHPExcel/PHPExcel/CachedObjectStorage/SQLite.php
old mode 100644
new mode 100755
diff --git a/Cron/PHPExcel/PHPExcel/CachedObjectStorage/SQLite3.php b/Cron/PHPExcel/PHPExcel/CachedObjectStorage/SQLite3.php
old mode 100644
new mode 100755
diff --git a/Cron/PHPExcel/PHPExcel/CachedObjectStorage/Wincache.php b/Cron/PHPExcel/PHPExcel/CachedObjectStorage/Wincache.php
old mode 100644
new mode 100755
diff --git a/Cron/PHPExcel/PHPExcel/CachedObjectStorageFactory.php b/Cron/PHPExcel/PHPExcel/CachedObjectStorageFactory.php
old mode 100644
new mode 100755
diff --git a/Cron/PHPExcel/PHPExcel/CalcEngine/CyclicReferenceStack.php b/Cron/PHPExcel/PHPExcel/CalcEngine/CyclicReferenceStack.php
old mode 100644
new mode 100755
diff --git a/Cron/PHPExcel/PHPExcel/CalcEngine/Logger.php b/Cron/PHPExcel/PHPExcel/CalcEngine/Logger.php
old mode 100644
new mode 100755
diff --git a/Cron/PHPExcel/PHPExcel/Calculation.php b/Cron/PHPExcel/PHPExcel/Calculation.php
old mode 100644
new mode 100755
diff --git a/Cron/PHPExcel/PHPExcel/Calculation/Database.php b/Cron/PHPExcel/PHPExcel/Calculation/Database.php
old mode 100644
new mode 100755
diff --git a/Cron/PHPExcel/PHPExcel/Calculation/DateTime.php b/Cron/PHPExcel/PHPExcel/Calculation/DateTime.php
old mode 100644
new mode 100755
diff --git a/Cron/PHPExcel/PHPExcel/Calculation/Engineering.php b/Cron/PHPExcel/PHPExcel/Calculation/Engineering.php
old mode 100644
new mode 100755
diff --git a/Cron/PHPExcel/PHPExcel/Calculation/Exception.php b/Cron/PHPExcel/PHPExcel/Calculation/Exception.php
old mode 100644
new mode 100755
diff --git a/Cron/PHPExcel/PHPExcel/Calculation/ExceptionHandler.php b/Cron/PHPExcel/PHPExcel/Calculation/ExceptionHandler.php
old mode 100644
new mode 100755
diff --git a/Cron/PHPExcel/PHPExcel/Calculation/Financial.php b/Cron/PHPExcel/PHPExcel/Calculation/Financial.php
old mode 100644
new mode 100755
diff --git a/Cron/PHPExcel/PHPExcel/Calculation/FormulaParser.php b/Cron/PHPExcel/PHPExcel/Calculation/FormulaParser.php
old mode 100644
new mode 100755
diff --git a/Cron/PHPExcel/PHPExcel/Calculation/FormulaToken.php b/Cron/PHPExcel/PHPExcel/Calculation/FormulaToken.php
old mode 100644
new mode 100755
diff --git a/Cron/PHPExcel/PHPExcel/Calculation/Function.php b/Cron/PHPExcel/PHPExcel/Calculation/Function.php
old mode 100644
new mode 100755
diff --git a/Cron/PHPExcel/PHPExcel/Calculation/Functions.php b/Cron/PHPExcel/PHPExcel/Calculation/Functions.php
old mode 100644
new mode 100755
diff --git a/Cron/PHPExcel/PHPExcel/Calculation/Logical.php b/Cron/PHPExcel/PHPExcel/Calculation/Logical.php
old mode 100644
new mode 100755
diff --git a/Cron/PHPExcel/PHPExcel/Calculation/LookupRef.php b/Cron/PHPExcel/PHPExcel/Calculation/LookupRef.php
old mode 100644
new mode 100755
diff --git a/Cron/PHPExcel/PHPExcel/Calculation/MathTrig.php b/Cron/PHPExcel/PHPExcel/Calculation/MathTrig.php
old mode 100644
new mode 100755
diff --git a/Cron/PHPExcel/PHPExcel/Calculation/Statistical.php b/Cron/PHPExcel/PHPExcel/Calculation/Statistical.php
old mode 100644
new mode 100755
diff --git a/Cron/PHPExcel/PHPExcel/Calculation/TextData.php b/Cron/PHPExcel/PHPExcel/Calculation/TextData.php
old mode 100644
new mode 100755
diff --git a/Cron/PHPExcel/PHPExcel/Calculation/Token/Stack.php b/Cron/PHPExcel/PHPExcel/Calculation/Token/Stack.php
old mode 100644
new mode 100755
diff --git a/Cron/PHPExcel/PHPExcel/Calculation/functionlist.txt b/Cron/PHPExcel/PHPExcel/Calculation/functionlist.txt
old mode 100644
new mode 100755
diff --git a/Cron/PHPExcel/PHPExcel/Cell.php b/Cron/PHPExcel/PHPExcel/Cell.php
old mode 100644
new mode 100755
diff --git a/Cron/PHPExcel/PHPExcel/Cell/AdvancedValueBinder.php b/Cron/PHPExcel/PHPExcel/Cell/AdvancedValueBinder.php
old mode 100644
new mode 100755
diff --git a/Cron/PHPExcel/PHPExcel/Cell/DataType.php b/Cron/PHPExcel/PHPExcel/Cell/DataType.php
old mode 100644
new mode 100755
diff --git a/Cron/PHPExcel/PHPExcel/Cell/DataValidation.php b/Cron/PHPExcel/PHPExcel/Cell/DataValidation.php
old mode 100644
new mode 100755
diff --git a/Cron/PHPExcel/PHPExcel/Cell/DefaultValueBinder.php b/Cron/PHPExcel/PHPExcel/Cell/DefaultValueBinder.php
old mode 100644
new mode 100755
diff --git a/Cron/PHPExcel/PHPExcel/Cell/Hyperlink.php b/Cron/PHPExcel/PHPExcel/Cell/Hyperlink.php
old mode 100644
new mode 100755
diff --git a/Cron/PHPExcel/PHPExcel/Cell/IValueBinder.php b/Cron/PHPExcel/PHPExcel/Cell/IValueBinder.php
old mode 100644
new mode 100755
diff --git a/Cron/PHPExcel/PHPExcel/Chart.php b/Cron/PHPExcel/PHPExcel/Chart.php
old mode 100644
new mode 100755
diff --git a/Cron/PHPExcel/PHPExcel/Chart/DataSeries.php b/Cron/PHPExcel/PHPExcel/Chart/DataSeries.php
old mode 100644
new mode 100755
diff --git a/Cron/PHPExcel/PHPExcel/Chart/DataSeriesValues.php b/Cron/PHPExcel/PHPExcel/Chart/DataSeriesValues.php
old mode 100644
new mode 100755
diff --git a/Cron/PHPExcel/PHPExcel/Chart/Exception.php b/Cron/PHPExcel/PHPExcel/Chart/Exception.php
old mode 100644
new mode 100755
diff --git a/Cron/PHPExcel/PHPExcel/Chart/Layout.php b/Cron/PHPExcel/PHPExcel/Chart/Layout.php
old mode 100644
new mode 100755
diff --git a/Cron/PHPExcel/PHPExcel/Chart/Legend.php b/Cron/PHPExcel/PHPExcel/Chart/Legend.php
old mode 100644
new mode 100755
diff --git a/Cron/PHPExcel/PHPExcel/Chart/PlotArea.php b/Cron/PHPExcel/PHPExcel/Chart/PlotArea.php
old mode 100644
new mode 100755
diff --git a/Cron/PHPExcel/PHPExcel/Chart/Renderer/PHP Charting Libraries.txt b/Cron/PHPExcel/PHPExcel/Chart/Renderer/PHP Charting Libraries.txt
old mode 100644
new mode 100755
diff --git a/Cron/PHPExcel/PHPExcel/Chart/Renderer/jpgraph.php b/Cron/PHPExcel/PHPExcel/Chart/Renderer/jpgraph.php
old mode 100644
new mode 100755
diff --git a/Cron/PHPExcel/PHPExcel/Chart/Title.php b/Cron/PHPExcel/PHPExcel/Chart/Title.php
old mode 100644
new mode 100755
diff --git a/Cron/PHPExcel/PHPExcel/Comment.php b/Cron/PHPExcel/PHPExcel/Comment.php
old mode 100644
new mode 100755
diff --git a/Cron/PHPExcel/PHPExcel/DocumentProperties.php b/Cron/PHPExcel/PHPExcel/DocumentProperties.php
old mode 100644
new mode 100755
diff --git a/Cron/PHPExcel/PHPExcel/DocumentSecurity.php b/Cron/PHPExcel/PHPExcel/DocumentSecurity.php
old mode 100644
new mode 100755
diff --git a/Cron/PHPExcel/PHPExcel/Exception.php b/Cron/PHPExcel/PHPExcel/Exception.php
old mode 100644
new mode 100755
diff --git a/Cron/PHPExcel/PHPExcel/HashTable.php b/Cron/PHPExcel/PHPExcel/HashTable.php
old mode 100644
new mode 100755
diff --git a/Cron/PHPExcel/PHPExcel/IComparable.php b/Cron/PHPExcel/PHPExcel/IComparable.php
old mode 100644
new mode 100755
diff --git a/Cron/PHPExcel/PHPExcel/IOFactory.php b/Cron/PHPExcel/PHPExcel/IOFactory.php
old mode 100644
new mode 100755
diff --git a/Cron/PHPExcel/PHPExcel/NamedRange.php b/Cron/PHPExcel/PHPExcel/NamedRange.php
old mode 100644
new mode 100755
diff --git a/Cron/PHPExcel/PHPExcel/Reader/Abstract.php b/Cron/PHPExcel/PHPExcel/Reader/Abstract.php
old mode 100644
new mode 100755
diff --git a/Cron/PHPExcel/PHPExcel/Reader/CSV.php b/Cron/PHPExcel/PHPExcel/Reader/CSV.php
old mode 100644
new mode 100755
diff --git a/Cron/PHPExcel/PHPExcel/Reader/DefaultReadFilter.php b/Cron/PHPExcel/PHPExcel/Reader/DefaultReadFilter.php
old mode 100644
new mode 100755
diff --git a/Cron/PHPExcel/PHPExcel/Reader/Excel2003XML.php b/Cron/PHPExcel/PHPExcel/Reader/Excel2003XML.php
old mode 100644
new mode 100755
diff --git a/Cron/PHPExcel/PHPExcel/Reader/Excel2007.php b/Cron/PHPExcel/PHPExcel/Reader/Excel2007.php
old mode 100644
new mode 100755
diff --git a/Cron/PHPExcel/PHPExcel/Reader/Excel2007/Chart.php b/Cron/PHPExcel/PHPExcel/Reader/Excel2007/Chart.php
old mode 100644
new mode 100755
diff --git a/Cron/PHPExcel/PHPExcel/Reader/Excel2007/Theme.php b/Cron/PHPExcel/PHPExcel/Reader/Excel2007/Theme.php
old mode 100644
new mode 100755
diff --git a/Cron/PHPExcel/PHPExcel/Reader/Excel5.php b/Cron/PHPExcel/PHPExcel/Reader/Excel5.php
old mode 100644
new mode 100755
diff --git a/Cron/PHPExcel/PHPExcel/Reader/Excel5/Escher.php b/Cron/PHPExcel/PHPExcel/Reader/Excel5/Escher.php
old mode 100644
new mode 100755
diff --git a/Cron/PHPExcel/PHPExcel/Reader/Excel5/MD5.php b/Cron/PHPExcel/PHPExcel/Reader/Excel5/MD5.php
old mode 100644
new mode 100755
diff --git a/Cron/PHPExcel/PHPExcel/Reader/Excel5/RC4.php b/Cron/PHPExcel/PHPExcel/Reader/Excel5/RC4.php
old mode 100644
new mode 100755
diff --git a/Cron/PHPExcel/PHPExcel/Reader/Exception.php b/Cron/PHPExcel/PHPExcel/Reader/Exception.php
old mode 100644
new mode 100755
diff --git a/Cron/PHPExcel/PHPExcel/Reader/Gnumeric.php b/Cron/PHPExcel/PHPExcel/Reader/Gnumeric.php
old mode 100644
new mode 100755
diff --git a/Cron/PHPExcel/PHPExcel/Reader/HTML.php b/Cron/PHPExcel/PHPExcel/Reader/HTML.php
old mode 100644
new mode 100755
diff --git a/Cron/PHPExcel/PHPExcel/Reader/IReadFilter.php b/Cron/PHPExcel/PHPExcel/Reader/IReadFilter.php
old mode 100644
new mode 100755
diff --git a/Cron/PHPExcel/PHPExcel/Reader/IReader.php b/Cron/PHPExcel/PHPExcel/Reader/IReader.php
old mode 100644
new mode 100755
diff --git a/Cron/PHPExcel/PHPExcel/Reader/OOCalc.php b/Cron/PHPExcel/PHPExcel/Reader/OOCalc.php
old mode 100644
new mode 100755
diff --git a/Cron/PHPExcel/PHPExcel/Reader/SYLK.php b/Cron/PHPExcel/PHPExcel/Reader/SYLK.php
old mode 100644
new mode 100755
diff --git a/Cron/PHPExcel/PHPExcel/ReferenceHelper.php b/Cron/PHPExcel/PHPExcel/ReferenceHelper.php
old mode 100644
new mode 100755
diff --git a/Cron/PHPExcel/PHPExcel/RichText.php b/Cron/PHPExcel/PHPExcel/RichText.php
old mode 100644
new mode 100755
diff --git a/Cron/PHPExcel/PHPExcel/RichText/ITextElement.php b/Cron/PHPExcel/PHPExcel/RichText/ITextElement.php
old mode 100644
new mode 100755
diff --git a/Cron/PHPExcel/PHPExcel/RichText/Run.php b/Cron/PHPExcel/PHPExcel/RichText/Run.php
old mode 100644
new mode 100755
diff --git a/Cron/PHPExcel/PHPExcel/RichText/TextElement.php b/Cron/PHPExcel/PHPExcel/RichText/TextElement.php
old mode 100644
new mode 100755
diff --git a/Cron/PHPExcel/PHPExcel/Settings.php b/Cron/PHPExcel/PHPExcel/Settings.php
old mode 100644
new mode 100755
diff --git a/Cron/PHPExcel/PHPExcel/Shared/CodePage.php b/Cron/PHPExcel/PHPExcel/Shared/CodePage.php
old mode 100644
new mode 100755
diff --git a/Cron/PHPExcel/PHPExcel/Shared/Date.php b/Cron/PHPExcel/PHPExcel/Shared/Date.php
old mode 100644
new mode 100755
diff --git a/Cron/PHPExcel/PHPExcel/Shared/Drawing.php b/Cron/PHPExcel/PHPExcel/Shared/Drawing.php
old mode 100644
new mode 100755
diff --git a/Cron/PHPExcel/PHPExcel/Shared/Escher.php b/Cron/PHPExcel/PHPExcel/Shared/Escher.php
old mode 100644
new mode 100755
diff --git a/Cron/PHPExcel/PHPExcel/Shared/Escher/DgContainer.php b/Cron/PHPExcel/PHPExcel/Shared/Escher/DgContainer.php
old mode 100644
new mode 100755
diff --git a/Cron/PHPExcel/PHPExcel/Shared/Escher/DgContainer/SpgrContainer.php b/Cron/PHPExcel/PHPExcel/Shared/Escher/DgContainer/SpgrContainer.php
old mode 100644
new mode 100755
diff --git a/Cron/PHPExcel/PHPExcel/Shared/Escher/DgContainer/SpgrContainer/SpContainer.php b/Cron/PHPExcel/PHPExcel/Shared/Escher/DgContainer/SpgrContainer/SpContainer.php
old mode 100644
new mode 100755
diff --git a/Cron/PHPExcel/PHPExcel/Shared/Escher/DggContainer.php b/Cron/PHPExcel/PHPExcel/Shared/Escher/DggContainer.php
old mode 100644
new mode 100755
diff --git a/Cron/PHPExcel/PHPExcel/Shared/Escher/DggContainer/BstoreContainer.php b/Cron/PHPExcel/PHPExcel/Shared/Escher/DggContainer/BstoreContainer.php
old mode 100644
new mode 100755
diff --git a/Cron/PHPExcel/PHPExcel/Shared/Escher/DggContainer/BstoreContainer/BSE.php b/Cron/PHPExcel/PHPExcel/Shared/Escher/DggContainer/BstoreContainer/BSE.php
old mode 100644
new mode 100755
diff --git a/Cron/PHPExcel/PHPExcel/Shared/Escher/DggContainer/BstoreContainer/BSE/Blip.php b/Cron/PHPExcel/PHPExcel/Shared/Escher/DggContainer/BstoreContainer/BSE/Blip.php
old mode 100644
new mode 100755
diff --git a/Cron/PHPExcel/PHPExcel/Shared/Excel5.php b/Cron/PHPExcel/PHPExcel/Shared/Excel5.php
old mode 100644
new mode 100755
diff --git a/Cron/PHPExcel/PHPExcel/Shared/File.php b/Cron/PHPExcel/PHPExcel/Shared/File.php
old mode 100644
new mode 100755
diff --git a/Cron/PHPExcel/PHPExcel/Shared/Font.php b/Cron/PHPExcel/PHPExcel/Shared/Font.php
old mode 100644
new mode 100755
diff --git a/Cron/PHPExcel/PHPExcel/Shared/JAMA/CHANGELOG.TXT b/Cron/PHPExcel/PHPExcel/Shared/JAMA/CHANGELOG.TXT
old mode 100644
new mode 100755
diff --git a/Cron/PHPExcel/PHPExcel/Shared/JAMA/CholeskyDecomposition.php b/Cron/PHPExcel/PHPExcel/Shared/JAMA/CholeskyDecomposition.php
old mode 100644
new mode 100755
diff --git a/Cron/PHPExcel/PHPExcel/Shared/JAMA/EigenvalueDecomposition.php b/Cron/PHPExcel/PHPExcel/Shared/JAMA/EigenvalueDecomposition.php
old mode 100644
new mode 100755
diff --git a/Cron/PHPExcel/PHPExcel/Shared/JAMA/LUDecomposition.php b/Cron/PHPExcel/PHPExcel/Shared/JAMA/LUDecomposition.php
old mode 100644
new mode 100755
diff --git a/Cron/PHPExcel/PHPExcel/Shared/JAMA/Matrix.php b/Cron/PHPExcel/PHPExcel/Shared/JAMA/Matrix.php
old mode 100644
new mode 100755
diff --git a/Cron/PHPExcel/PHPExcel/Shared/JAMA/QRDecomposition.php b/Cron/PHPExcel/PHPExcel/Shared/JAMA/QRDecomposition.php
old mode 100644
new mode 100755
diff --git a/Cron/PHPExcel/PHPExcel/Shared/JAMA/SingularValueDecomposition.php b/Cron/PHPExcel/PHPExcel/Shared/JAMA/SingularValueDecomposition.php
old mode 100644
new mode 100755
diff --git a/Cron/PHPExcel/PHPExcel/Shared/JAMA/utils/Error.php b/Cron/PHPExcel/PHPExcel/Shared/JAMA/utils/Error.php
old mode 100644
new mode 100755
diff --git a/Cron/PHPExcel/PHPExcel/Shared/JAMA/utils/Maths.php b/Cron/PHPExcel/PHPExcel/Shared/JAMA/utils/Maths.php
old mode 100644
new mode 100755
diff --git a/Cron/PHPExcel/PHPExcel/Shared/OLE.php b/Cron/PHPExcel/PHPExcel/Shared/OLE.php
old mode 100644
new mode 100755
diff --git a/Cron/PHPExcel/PHPExcel/Shared/OLE/ChainedBlockStream.php b/Cron/PHPExcel/PHPExcel/Shared/OLE/ChainedBlockStream.php
old mode 100644
new mode 100755
diff --git a/Cron/PHPExcel/PHPExcel/Shared/OLE/PPS.php b/Cron/PHPExcel/PHPExcel/Shared/OLE/PPS.php
old mode 100644
new mode 100755
diff --git a/Cron/PHPExcel/PHPExcel/Shared/OLE/PPS/File.php b/Cron/PHPExcel/PHPExcel/Shared/OLE/PPS/File.php
old mode 100644
new mode 100755
diff --git a/Cron/PHPExcel/PHPExcel/Shared/OLE/PPS/Root.php b/Cron/PHPExcel/PHPExcel/Shared/OLE/PPS/Root.php
old mode 100644
new mode 100755
diff --git a/Cron/PHPExcel/PHPExcel/Shared/OLERead.php b/Cron/PHPExcel/PHPExcel/Shared/OLERead.php
old mode 100644
new mode 100755
diff --git a/Cron/PHPExcel/PHPExcel/Shared/PCLZip/gnu-lgpl.txt b/Cron/PHPExcel/PHPExcel/Shared/PCLZip/gnu-lgpl.txt
old mode 100644
new mode 100755
diff --git a/Cron/PHPExcel/PHPExcel/Shared/PCLZip/pclzip.lib.php b/Cron/PHPExcel/PHPExcel/Shared/PCLZip/pclzip.lib.php
old mode 100644
new mode 100755
diff --git a/Cron/PHPExcel/PHPExcel/Shared/PCLZip/readme.txt b/Cron/PHPExcel/PHPExcel/Shared/PCLZip/readme.txt
old mode 100644
new mode 100755
diff --git a/Cron/PHPExcel/PHPExcel/Shared/PasswordHasher.php b/Cron/PHPExcel/PHPExcel/Shared/PasswordHasher.php
old mode 100644
new mode 100755
diff --git a/Cron/PHPExcel/PHPExcel/Shared/String.php b/Cron/PHPExcel/PHPExcel/Shared/String.php
old mode 100644
new mode 100755
diff --git a/Cron/PHPExcel/PHPExcel/Shared/TimeZone.php b/Cron/PHPExcel/PHPExcel/Shared/TimeZone.php
old mode 100644
new mode 100755
diff --git a/Cron/PHPExcel/PHPExcel/Shared/XMLWriter.php b/Cron/PHPExcel/PHPExcel/Shared/XMLWriter.php
old mode 100644
new mode 100755
diff --git a/Cron/PHPExcel/PHPExcel/Shared/ZipArchive.php b/Cron/PHPExcel/PHPExcel/Shared/ZipArchive.php
old mode 100644
new mode 100755
diff --git a/Cron/PHPExcel/PHPExcel/Shared/ZipStreamWrapper.php b/Cron/PHPExcel/PHPExcel/Shared/ZipStreamWrapper.php
old mode 100644
new mode 100755
diff --git a/Cron/PHPExcel/PHPExcel/Shared/trend/bestFitClass.php b/Cron/PHPExcel/PHPExcel/Shared/trend/bestFitClass.php
old mode 100644
new mode 100755
diff --git a/Cron/PHPExcel/PHPExcel/Shared/trend/exponentialBestFitClass.php b/Cron/PHPExcel/PHPExcel/Shared/trend/exponentialBestFitClass.php
old mode 100644
new mode 100755
diff --git a/Cron/PHPExcel/PHPExcel/Shared/trend/linearBestFitClass.php b/Cron/PHPExcel/PHPExcel/Shared/trend/linearBestFitClass.php
old mode 100644
new mode 100755
diff --git a/Cron/PHPExcel/PHPExcel/Shared/trend/logarithmicBestFitClass.php b/Cron/PHPExcel/PHPExcel/Shared/trend/logarithmicBestFitClass.php
old mode 100644
new mode 100755
diff --git a/Cron/PHPExcel/PHPExcel/Shared/trend/polynomialBestFitClass.php b/Cron/PHPExcel/PHPExcel/Shared/trend/polynomialBestFitClass.php
old mode 100644
new mode 100755
diff --git a/Cron/PHPExcel/PHPExcel/Shared/trend/powerBestFitClass.php b/Cron/PHPExcel/PHPExcel/Shared/trend/powerBestFitClass.php
old mode 100644
new mode 100755
diff --git a/Cron/PHPExcel/PHPExcel/Shared/trend/trendClass.php b/Cron/PHPExcel/PHPExcel/Shared/trend/trendClass.php
old mode 100644
new mode 100755
diff --git a/Cron/PHPExcel/PHPExcel/Style.php b/Cron/PHPExcel/PHPExcel/Style.php
old mode 100644
new mode 100755
diff --git a/Cron/PHPExcel/PHPExcel/Style/Alignment.php b/Cron/PHPExcel/PHPExcel/Style/Alignment.php
old mode 100644
new mode 100755
diff --git a/Cron/PHPExcel/PHPExcel/Style/Border.php b/Cron/PHPExcel/PHPExcel/Style/Border.php
old mode 100644
new mode 100755
diff --git a/Cron/PHPExcel/PHPExcel/Style/Borders.php b/Cron/PHPExcel/PHPExcel/Style/Borders.php
old mode 100644
new mode 100755
diff --git a/Cron/PHPExcel/PHPExcel/Style/Color.php b/Cron/PHPExcel/PHPExcel/Style/Color.php
old mode 100644
new mode 100755
diff --git a/Cron/PHPExcel/PHPExcel/Style/Conditional.php b/Cron/PHPExcel/PHPExcel/Style/Conditional.php
old mode 100644
new mode 100755
diff --git a/Cron/PHPExcel/PHPExcel/Style/Fill.php b/Cron/PHPExcel/PHPExcel/Style/Fill.php
old mode 100644
new mode 100755
diff --git a/Cron/PHPExcel/PHPExcel/Style/Font.php b/Cron/PHPExcel/PHPExcel/Style/Font.php
old mode 100644
new mode 100755
diff --git a/Cron/PHPExcel/PHPExcel/Style/NumberFormat.php b/Cron/PHPExcel/PHPExcel/Style/NumberFormat.php
old mode 100644
new mode 100755
diff --git a/Cron/PHPExcel/PHPExcel/Style/Protection.php b/Cron/PHPExcel/PHPExcel/Style/Protection.php
old mode 100644
new mode 100755
diff --git a/Cron/PHPExcel/PHPExcel/Style/Supervisor.php b/Cron/PHPExcel/PHPExcel/Style/Supervisor.php
old mode 100644
new mode 100755
diff --git a/Cron/PHPExcel/PHPExcel/Worksheet.php b/Cron/PHPExcel/PHPExcel/Worksheet.php
old mode 100644
new mode 100755
diff --git a/Cron/PHPExcel/PHPExcel/Worksheet/AutoFilter.php b/Cron/PHPExcel/PHPExcel/Worksheet/AutoFilter.php
old mode 100644
new mode 100755
diff --git a/Cron/PHPExcel/PHPExcel/Worksheet/AutoFilter/Column.php b/Cron/PHPExcel/PHPExcel/Worksheet/AutoFilter/Column.php
old mode 100644
new mode 100755
diff --git a/Cron/PHPExcel/PHPExcel/Worksheet/AutoFilter/Column/Rule.php b/Cron/PHPExcel/PHPExcel/Worksheet/AutoFilter/Column/Rule.php
old mode 100644
new mode 100755
diff --git a/Cron/PHPExcel/PHPExcel/Worksheet/BaseDrawing.php b/Cron/PHPExcel/PHPExcel/Worksheet/BaseDrawing.php
old mode 100644
new mode 100755
diff --git a/Cron/PHPExcel/PHPExcel/Worksheet/CellIterator.php b/Cron/PHPExcel/PHPExcel/Worksheet/CellIterator.php
old mode 100644
new mode 100755
diff --git a/Cron/PHPExcel/PHPExcel/Worksheet/ColumnDimension.php b/Cron/PHPExcel/PHPExcel/Worksheet/ColumnDimension.php
old mode 100644
new mode 100755
diff --git a/Cron/PHPExcel/PHPExcel/Worksheet/Drawing.php b/Cron/PHPExcel/PHPExcel/Worksheet/Drawing.php
old mode 100644
new mode 100755
diff --git a/Cron/PHPExcel/PHPExcel/Worksheet/Drawing/Shadow.php b/Cron/PHPExcel/PHPExcel/Worksheet/Drawing/Shadow.php
old mode 100644
new mode 100755
diff --git a/Cron/PHPExcel/PHPExcel/Worksheet/HeaderFooter.php b/Cron/PHPExcel/PHPExcel/Worksheet/HeaderFooter.php
old mode 100644
new mode 100755
diff --git a/Cron/PHPExcel/PHPExcel/Worksheet/HeaderFooterDrawing.php b/Cron/PHPExcel/PHPExcel/Worksheet/HeaderFooterDrawing.php
old mode 100644
new mode 100755
diff --git a/Cron/PHPExcel/PHPExcel/Worksheet/MemoryDrawing.php b/Cron/PHPExcel/PHPExcel/Worksheet/MemoryDrawing.php
old mode 100644
new mode 100755
diff --git a/Cron/PHPExcel/PHPExcel/Worksheet/PageMargins.php b/Cron/PHPExcel/PHPExcel/Worksheet/PageMargins.php
old mode 100644
new mode 100755
diff --git a/Cron/PHPExcel/PHPExcel/Worksheet/PageSetup.php b/Cron/PHPExcel/PHPExcel/Worksheet/PageSetup.php
old mode 100644
new mode 100755
diff --git a/Cron/PHPExcel/PHPExcel/Worksheet/Protection.php b/Cron/PHPExcel/PHPExcel/Worksheet/Protection.php
old mode 100644
new mode 100755
diff --git a/Cron/PHPExcel/PHPExcel/Worksheet/Row.php b/Cron/PHPExcel/PHPExcel/Worksheet/Row.php
old mode 100644
new mode 100755
diff --git a/Cron/PHPExcel/PHPExcel/Worksheet/RowDimension.php b/Cron/PHPExcel/PHPExcel/Worksheet/RowDimension.php
old mode 100644
new mode 100755
diff --git a/Cron/PHPExcel/PHPExcel/Worksheet/RowIterator.php b/Cron/PHPExcel/PHPExcel/Worksheet/RowIterator.php
old mode 100644
new mode 100755
diff --git a/Cron/PHPExcel/PHPExcel/Worksheet/SheetView.php b/Cron/PHPExcel/PHPExcel/Worksheet/SheetView.php
old mode 100644
new mode 100755
diff --git a/Cron/PHPExcel/PHPExcel/WorksheetIterator.php b/Cron/PHPExcel/PHPExcel/WorksheetIterator.php
old mode 100644
new mode 100755
diff --git a/Cron/PHPExcel/PHPExcel/Writer/Abstract.php b/Cron/PHPExcel/PHPExcel/Writer/Abstract.php
old mode 100644
new mode 100755
diff --git a/Cron/PHPExcel/PHPExcel/Writer/CSV.php b/Cron/PHPExcel/PHPExcel/Writer/CSV.php
old mode 100644
new mode 100755
diff --git a/Cron/PHPExcel/PHPExcel/Writer/Excel2007.php b/Cron/PHPExcel/PHPExcel/Writer/Excel2007.php
old mode 100644
new mode 100755
diff --git a/Cron/PHPExcel/PHPExcel/Writer/Excel2007/Chart.php b/Cron/PHPExcel/PHPExcel/Writer/Excel2007/Chart.php
old mode 100644
new mode 100755
diff --git a/Cron/PHPExcel/PHPExcel/Writer/Excel2007/Comments.php b/Cron/PHPExcel/PHPExcel/Writer/Excel2007/Comments.php
old mode 100644
new mode 100755
diff --git a/Cron/PHPExcel/PHPExcel/Writer/Excel2007/ContentTypes.php b/Cron/PHPExcel/PHPExcel/Writer/Excel2007/ContentTypes.php
old mode 100644
new mode 100755
diff --git a/Cron/PHPExcel/PHPExcel/Writer/Excel2007/DocProps.php b/Cron/PHPExcel/PHPExcel/Writer/Excel2007/DocProps.php
old mode 100644
new mode 100755
diff --git a/Cron/PHPExcel/PHPExcel/Writer/Excel2007/Drawing.php b/Cron/PHPExcel/PHPExcel/Writer/Excel2007/Drawing.php
old mode 100644
new mode 100755
diff --git a/Cron/PHPExcel/PHPExcel/Writer/Excel2007/Rels.php b/Cron/PHPExcel/PHPExcel/Writer/Excel2007/Rels.php
old mode 100644
new mode 100755
diff --git a/Cron/PHPExcel/PHPExcel/Writer/Excel2007/RelsRibbon.php b/Cron/PHPExcel/PHPExcel/Writer/Excel2007/RelsRibbon.php
old mode 100644
new mode 100755
diff --git a/Cron/PHPExcel/PHPExcel/Writer/Excel2007/RelsVBA.php b/Cron/PHPExcel/PHPExcel/Writer/Excel2007/RelsVBA.php
old mode 100644
new mode 100755
diff --git a/Cron/PHPExcel/PHPExcel/Writer/Excel2007/StringTable.php b/Cron/PHPExcel/PHPExcel/Writer/Excel2007/StringTable.php
old mode 100644
new mode 100755
diff --git a/Cron/PHPExcel/PHPExcel/Writer/Excel2007/Style.php b/Cron/PHPExcel/PHPExcel/Writer/Excel2007/Style.php
old mode 100644
new mode 100755
diff --git a/Cron/PHPExcel/PHPExcel/Writer/Excel2007/Theme.php b/Cron/PHPExcel/PHPExcel/Writer/Excel2007/Theme.php
old mode 100644
new mode 100755
diff --git a/Cron/PHPExcel/PHPExcel/Writer/Excel2007/Workbook.php b/Cron/PHPExcel/PHPExcel/Writer/Excel2007/Workbook.php
old mode 100644
new mode 100755
diff --git a/Cron/PHPExcel/PHPExcel/Writer/Excel2007/Worksheet.php b/Cron/PHPExcel/PHPExcel/Writer/Excel2007/Worksheet.php
old mode 100644
new mode 100755
diff --git a/Cron/PHPExcel/PHPExcel/Writer/Excel2007/WriterPart.php b/Cron/PHPExcel/PHPExcel/Writer/Excel2007/WriterPart.php
old mode 100644
new mode 100755
diff --git a/Cron/PHPExcel/PHPExcel/Writer/Excel5.php b/Cron/PHPExcel/PHPExcel/Writer/Excel5.php
old mode 100644
new mode 100755
diff --git a/Cron/PHPExcel/PHPExcel/Writer/Excel5/BIFFwriter.php b/Cron/PHPExcel/PHPExcel/Writer/Excel5/BIFFwriter.php
old mode 100644
new mode 100755
diff --git a/Cron/PHPExcel/PHPExcel/Writer/Excel5/Escher.php b/Cron/PHPExcel/PHPExcel/Writer/Excel5/Escher.php
old mode 100644
new mode 100755
diff --git a/Cron/PHPExcel/PHPExcel/Writer/Excel5/Font.php b/Cron/PHPExcel/PHPExcel/Writer/Excel5/Font.php
old mode 100644
new mode 100755
diff --git a/Cron/PHPExcel/PHPExcel/Writer/Excel5/Parser.php b/Cron/PHPExcel/PHPExcel/Writer/Excel5/Parser.php
old mode 100644
new mode 100755
diff --git a/Cron/PHPExcel/PHPExcel/Writer/Excel5/Workbook.php b/Cron/PHPExcel/PHPExcel/Writer/Excel5/Workbook.php
old mode 100644
new mode 100755
diff --git a/Cron/PHPExcel/PHPExcel/Writer/Excel5/Worksheet.php b/Cron/PHPExcel/PHPExcel/Writer/Excel5/Worksheet.php
old mode 100644
new mode 100755
diff --git a/Cron/PHPExcel/PHPExcel/Writer/Excel5/Xf.php b/Cron/PHPExcel/PHPExcel/Writer/Excel5/Xf.php
old mode 100644
new mode 100755
diff --git a/Cron/PHPExcel/PHPExcel/Writer/Exception.php b/Cron/PHPExcel/PHPExcel/Writer/Exception.php
old mode 100644
new mode 100755
diff --git a/Cron/PHPExcel/PHPExcel/Writer/HTML.php b/Cron/PHPExcel/PHPExcel/Writer/HTML.php
old mode 100644
new mode 100755
diff --git a/Cron/PHPExcel/PHPExcel/Writer/IWriter.php b/Cron/PHPExcel/PHPExcel/Writer/IWriter.php
old mode 100644
new mode 100755
diff --git a/Cron/PHPExcel/PHPExcel/Writer/PDF.php b/Cron/PHPExcel/PHPExcel/Writer/PDF.php
old mode 100644
new mode 100755
diff --git a/Cron/PHPExcel/PHPExcel/Writer/PDF/Core.php b/Cron/PHPExcel/PHPExcel/Writer/PDF/Core.php
old mode 100644
new mode 100755
diff --git a/Cron/PHPExcel/PHPExcel/Writer/PDF/DomPDF.php b/Cron/PHPExcel/PHPExcel/Writer/PDF/DomPDF.php
old mode 100644
new mode 100755
diff --git a/Cron/PHPExcel/PHPExcel/Writer/PDF/mPDF.php b/Cron/PHPExcel/PHPExcel/Writer/PDF/mPDF.php
old mode 100644
new mode 100755
diff --git a/Cron/PHPExcel/PHPExcel/Writer/PDF/tcPDF.php b/Cron/PHPExcel/PHPExcel/Writer/PDF/tcPDF.php
old mode 100644
new mode 100755
diff --git a/Cron/PHPExcel/PHPExcel/locale/bg/config b/Cron/PHPExcel/PHPExcel/locale/bg/config
old mode 100644
new mode 100755
diff --git a/Cron/PHPExcel/PHPExcel/locale/cs/config b/Cron/PHPExcel/PHPExcel/locale/cs/config
old mode 100644
new mode 100755
diff --git a/Cron/PHPExcel/PHPExcel/locale/cs/functions b/Cron/PHPExcel/PHPExcel/locale/cs/functions
old mode 100644
new mode 100755
diff --git a/Cron/PHPExcel/PHPExcel/locale/da/config b/Cron/PHPExcel/PHPExcel/locale/da/config
old mode 100644
new mode 100755
diff --git a/Cron/PHPExcel/PHPExcel/locale/da/functions b/Cron/PHPExcel/PHPExcel/locale/da/functions
old mode 100644
new mode 100755
diff --git a/Cron/PHPExcel/PHPExcel/locale/de/config b/Cron/PHPExcel/PHPExcel/locale/de/config
old mode 100644
new mode 100755
diff --git a/Cron/PHPExcel/PHPExcel/locale/de/functions b/Cron/PHPExcel/PHPExcel/locale/de/functions
old mode 100644
new mode 100755
diff --git a/Cron/PHPExcel/PHPExcel/locale/en/uk/config b/Cron/PHPExcel/PHPExcel/locale/en/uk/config
old mode 100644
new mode 100755
diff --git a/Cron/PHPExcel/PHPExcel/locale/es/config b/Cron/PHPExcel/PHPExcel/locale/es/config
old mode 100644
new mode 100755
diff --git a/Cron/PHPExcel/PHPExcel/locale/es/functions b/Cron/PHPExcel/PHPExcel/locale/es/functions
old mode 100644
new mode 100755
diff --git a/Cron/PHPExcel/PHPExcel/locale/fi/config b/Cron/PHPExcel/PHPExcel/locale/fi/config
old mode 100644
new mode 100755
diff --git a/Cron/PHPExcel/PHPExcel/locale/fi/functions b/Cron/PHPExcel/PHPExcel/locale/fi/functions
old mode 100644
new mode 100755
diff --git a/Cron/PHPExcel/PHPExcel/locale/fr/config b/Cron/PHPExcel/PHPExcel/locale/fr/config
old mode 100644
new mode 100755
diff --git a/Cron/PHPExcel/PHPExcel/locale/fr/functions b/Cron/PHPExcel/PHPExcel/locale/fr/functions
old mode 100644
new mode 100755
diff --git a/Cron/PHPExcel/PHPExcel/locale/hu/config b/Cron/PHPExcel/PHPExcel/locale/hu/config
old mode 100644
new mode 100755
diff --git a/Cron/PHPExcel/PHPExcel/locale/hu/functions b/Cron/PHPExcel/PHPExcel/locale/hu/functions
old mode 100644
new mode 100755
diff --git a/Cron/PHPExcel/PHPExcel/locale/it/config b/Cron/PHPExcel/PHPExcel/locale/it/config
old mode 100644
new mode 100755
diff --git a/Cron/PHPExcel/PHPExcel/locale/it/functions b/Cron/PHPExcel/PHPExcel/locale/it/functions
old mode 100644
new mode 100755
diff --git a/Cron/PHPExcel/PHPExcel/locale/nl/config b/Cron/PHPExcel/PHPExcel/locale/nl/config
old mode 100644
new mode 100755
diff --git a/Cron/PHPExcel/PHPExcel/locale/nl/functions b/Cron/PHPExcel/PHPExcel/locale/nl/functions
old mode 100644
new mode 100755
diff --git a/Cron/PHPExcel/PHPExcel/locale/no/config b/Cron/PHPExcel/PHPExcel/locale/no/config
old mode 100644
new mode 100755
diff --git a/Cron/PHPExcel/PHPExcel/locale/no/functions b/Cron/PHPExcel/PHPExcel/locale/no/functions
old mode 100644
new mode 100755
diff --git a/Cron/PHPExcel/PHPExcel/locale/pl/config b/Cron/PHPExcel/PHPExcel/locale/pl/config
old mode 100644
new mode 100755
diff --git a/Cron/PHPExcel/PHPExcel/locale/pl/functions b/Cron/PHPExcel/PHPExcel/locale/pl/functions
old mode 100644
new mode 100755
diff --git a/Cron/PHPExcel/PHPExcel/locale/pt/br/config b/Cron/PHPExcel/PHPExcel/locale/pt/br/config
old mode 100644
new mode 100755
diff --git a/Cron/PHPExcel/PHPExcel/locale/pt/br/functions b/Cron/PHPExcel/PHPExcel/locale/pt/br/functions
old mode 100644
new mode 100755
diff --git a/Cron/PHPExcel/PHPExcel/locale/pt/config b/Cron/PHPExcel/PHPExcel/locale/pt/config
old mode 100644
new mode 100755
diff --git a/Cron/PHPExcel/PHPExcel/locale/pt/functions b/Cron/PHPExcel/PHPExcel/locale/pt/functions
old mode 100644
new mode 100755
diff --git a/Cron/PHPExcel/PHPExcel/locale/ru/config b/Cron/PHPExcel/PHPExcel/locale/ru/config
old mode 100644
new mode 100755
diff --git a/Cron/PHPExcel/PHPExcel/locale/ru/functions b/Cron/PHPExcel/PHPExcel/locale/ru/functions
old mode 100644
new mode 100755
diff --git a/Cron/PHPExcel/PHPExcel/locale/sv/config b/Cron/PHPExcel/PHPExcel/locale/sv/config
old mode 100644
new mode 100755
diff --git a/Cron/PHPExcel/PHPExcel/locale/sv/functions b/Cron/PHPExcel/PHPExcel/locale/sv/functions
old mode 100644
new mode 100755
diff --git a/Cron/PHPExcel/PHPExcel/locale/tr/config b/Cron/PHPExcel/PHPExcel/locale/tr/config
old mode 100644
new mode 100755
diff --git a/Cron/PHPExcel/PHPExcel/locale/tr/functions b/Cron/PHPExcel/PHPExcel/locale/tr/functions
old mode 100644
new mode 100755
diff --git a/Cron/PHPMailer/LICENSE b/Cron/PHPMailer/LICENSE
old mode 100644
new mode 100755
diff --git a/Cron/PHPMailer/PHPMailerAutoload.php b/Cron/PHPMailer/PHPMailerAutoload.php
old mode 100644
new mode 100755
diff --git a/Cron/PHPMailer/VERSION b/Cron/PHPMailer/VERSION
old mode 100644
new mode 100755
diff --git a/Cron/PHPMailer/class.phpmailer.php b/Cron/PHPMailer/class.phpmailer.php
old mode 100644
new mode 100755
diff --git a/Cron/PHPMailer/class.phpmaileroauth.php b/Cron/PHPMailer/class.phpmaileroauth.php
old mode 100644
new mode 100755
diff --git a/Cron/PHPMailer/class.phpmaileroauthgoogle.php b/Cron/PHPMailer/class.phpmaileroauthgoogle.php
old mode 100644
new mode 100755
diff --git a/Cron/PHPMailer/class.pop3.php b/Cron/PHPMailer/class.pop3.php
old mode 100644
new mode 100755
diff --git a/Cron/PHPMailer/class.smtp.php b/Cron/PHPMailer/class.smtp.php
old mode 100644
new mode 100755
diff --git a/Cron/PHPMailer/composer.json b/Cron/PHPMailer/composer.json
old mode 100644
new mode 100755
diff --git a/Cron/PHPMailer/composer.lock b/Cron/PHPMailer/composer.lock
old mode 100644
new mode 100755
diff --git a/Cron/PHPMailer/examples/DKIM.phps b/Cron/PHPMailer/examples/DKIM.phps
old mode 100644
new mode 100755
diff --git a/Cron/PHPMailer/examples/code_generator.phps b/Cron/PHPMailer/examples/code_generator.phps
old mode 100644
new mode 100755
diff --git a/Cron/PHPMailer/examples/contactform.phps b/Cron/PHPMailer/examples/contactform.phps
old mode 100644
new mode 100755
diff --git a/Cron/PHPMailer/examples/contents.html b/Cron/PHPMailer/examples/contents.html
old mode 100644
new mode 100755
diff --git a/Cron/PHPMailer/examples/contentsutf8.html b/Cron/PHPMailer/examples/contentsutf8.html
old mode 100644
new mode 100755
diff --git a/Cron/PHPMailer/examples/exceptions.phps b/Cron/PHPMailer/examples/exceptions.phps
old mode 100644
new mode 100755
diff --git a/Cron/PHPMailer/examples/gmail.phps b/Cron/PHPMailer/examples/gmail.phps
old mode 100644
new mode 100755
diff --git a/Cron/PHPMailer/examples/gmail_xoauth.phps b/Cron/PHPMailer/examples/gmail_xoauth.phps
old mode 100644
new mode 100755
diff --git a/Cron/PHPMailer/examples/images/phpmailer.png b/Cron/PHPMailer/examples/images/phpmailer.png
old mode 100644
new mode 100755
diff --git a/Cron/PHPMailer/examples/images/phpmailer_mini.png b/Cron/PHPMailer/examples/images/phpmailer_mini.png
old mode 100644
new mode 100755
diff --git a/Cron/PHPMailer/examples/index.html b/Cron/PHPMailer/examples/index.html
old mode 100644
new mode 100755
diff --git a/Cron/PHPMailer/examples/mail.phps b/Cron/PHPMailer/examples/mail.phps
old mode 100644
new mode 100755
diff --git a/Cron/PHPMailer/examples/mailing_list.phps b/Cron/PHPMailer/examples/mailing_list.phps
old mode 100644
new mode 100755
diff --git a/Cron/PHPMailer/examples/pop_before_smtp.phps b/Cron/PHPMailer/examples/pop_before_smtp.phps
old mode 100644
new mode 100755
diff --git a/Cron/PHPMailer/examples/scripts/XRegExp.js b/Cron/PHPMailer/examples/scripts/XRegExp.js
old mode 100644
new mode 100755
diff --git a/Cron/PHPMailer/examples/scripts/shAutoloader.js b/Cron/PHPMailer/examples/scripts/shAutoloader.js
old mode 100644
new mode 100755
diff --git a/Cron/PHPMailer/examples/scripts/shBrushPhp.js b/Cron/PHPMailer/examples/scripts/shBrushPhp.js
old mode 100644
new mode 100755
diff --git a/Cron/PHPMailer/examples/scripts/shCore.js b/Cron/PHPMailer/examples/scripts/shCore.js
old mode 100644
new mode 100755
diff --git a/Cron/PHPMailer/examples/scripts/shLegacy.js b/Cron/PHPMailer/examples/scripts/shLegacy.js
old mode 100644
new mode 100755
diff --git a/Cron/PHPMailer/examples/send_file_upload.phps b/Cron/PHPMailer/examples/send_file_upload.phps
old mode 100644
new mode 100755
diff --git a/Cron/PHPMailer/examples/send_multiple_file_upload.phps b/Cron/PHPMailer/examples/send_multiple_file_upload.phps
old mode 100644
new mode 100755
diff --git a/Cron/PHPMailer/examples/sendmail.phps b/Cron/PHPMailer/examples/sendmail.phps
old mode 100644
new mode 100755
diff --git a/Cron/PHPMailer/examples/signed-mail.phps b/Cron/PHPMailer/examples/signed-mail.phps
old mode 100644
new mode 100755
diff --git a/Cron/PHPMailer/examples/smtp.phps b/Cron/PHPMailer/examples/smtp.phps
old mode 100644
new mode 100755
diff --git a/Cron/PHPMailer/examples/smtp_check.phps b/Cron/PHPMailer/examples/smtp_check.phps
old mode 100644
new mode 100755
diff --git a/Cron/PHPMailer/examples/smtp_no_auth.phps b/Cron/PHPMailer/examples/smtp_no_auth.phps
old mode 100644
new mode 100755
diff --git a/Cron/PHPMailer/examples/ssl_options.phps b/Cron/PHPMailer/examples/ssl_options.phps
old mode 100644
new mode 100755
diff --git a/Cron/PHPMailer/examples/styles/shCore.css b/Cron/PHPMailer/examples/styles/shCore.css
old mode 100644
new mode 100755
diff --git a/Cron/PHPMailer/examples/styles/shCoreDefault.css b/Cron/PHPMailer/examples/styles/shCoreDefault.css
old mode 100644
new mode 100755
diff --git a/Cron/PHPMailer/examples/styles/shCoreDjango.css b/Cron/PHPMailer/examples/styles/shCoreDjango.css
old mode 100644
new mode 100755
diff --git a/Cron/PHPMailer/examples/styles/shCoreEclipse.css b/Cron/PHPMailer/examples/styles/shCoreEclipse.css
old mode 100644
new mode 100755
diff --git a/Cron/PHPMailer/examples/styles/shCoreEmacs.css b/Cron/PHPMailer/examples/styles/shCoreEmacs.css
old mode 100644
new mode 100755
diff --git a/Cron/PHPMailer/examples/styles/shCoreFadeToGrey.css b/Cron/PHPMailer/examples/styles/shCoreFadeToGrey.css
old mode 100644
new mode 100755
diff --git a/Cron/PHPMailer/examples/styles/shCoreMDUltra.css b/Cron/PHPMailer/examples/styles/shCoreMDUltra.css
old mode 100644
new mode 100755
diff --git a/Cron/PHPMailer/examples/styles/shCoreMidnight.css b/Cron/PHPMailer/examples/styles/shCoreMidnight.css
old mode 100644
new mode 100755
diff --git a/Cron/PHPMailer/examples/styles/shCoreRDark.css b/Cron/PHPMailer/examples/styles/shCoreRDark.css
old mode 100644
new mode 100755
diff --git a/Cron/PHPMailer/examples/styles/shThemeAppleScript.css b/Cron/PHPMailer/examples/styles/shThemeAppleScript.css
old mode 100644
new mode 100755
diff --git a/Cron/PHPMailer/examples/styles/shThemeDefault.css b/Cron/PHPMailer/examples/styles/shThemeDefault.css
old mode 100644
new mode 100755
diff --git a/Cron/PHPMailer/examples/styles/shThemeDjango.css b/Cron/PHPMailer/examples/styles/shThemeDjango.css
old mode 100644
new mode 100755
diff --git a/Cron/PHPMailer/examples/styles/shThemeEclipse.css b/Cron/PHPMailer/examples/styles/shThemeEclipse.css
old mode 100644
new mode 100755
diff --git a/Cron/PHPMailer/examples/styles/shThemeEmacs.css b/Cron/PHPMailer/examples/styles/shThemeEmacs.css
old mode 100644
new mode 100755
diff --git a/Cron/PHPMailer/examples/styles/shThemeFadeToGrey.css b/Cron/PHPMailer/examples/styles/shThemeFadeToGrey.css
old mode 100644
new mode 100755
diff --git a/Cron/PHPMailer/examples/styles/shThemeMDUltra.css b/Cron/PHPMailer/examples/styles/shThemeMDUltra.css
old mode 100644
new mode 100755
diff --git a/Cron/PHPMailer/examples/styles/shThemeMidnight.css b/Cron/PHPMailer/examples/styles/shThemeMidnight.css
old mode 100644
new mode 100755
diff --git a/Cron/PHPMailer/examples/styles/shThemeRDark.css b/Cron/PHPMailer/examples/styles/shThemeRDark.css
old mode 100644
new mode 100755
diff --git a/Cron/PHPMailer/examples/styles/shThemeVisualStudio.css b/Cron/PHPMailer/examples/styles/shThemeVisualStudio.css
old mode 100644
new mode 100755
diff --git a/Cron/PHPMailer/examples/styles/wrapping.png b/Cron/PHPMailer/examples/styles/wrapping.png
old mode 100644
new mode 100755
diff --git a/Cron/PHPMailer/extras/EasyPeasyICS.php b/Cron/PHPMailer/extras/EasyPeasyICS.php
old mode 100644
new mode 100755
diff --git a/Cron/PHPMailer/extras/README.md b/Cron/PHPMailer/extras/README.md
old mode 100644
new mode 100755
diff --git a/Cron/PHPMailer/extras/htmlfilter.php b/Cron/PHPMailer/extras/htmlfilter.php
old mode 100644
new mode 100755
diff --git a/Cron/PHPMailer/extras/ntlm_sasl_client.php b/Cron/PHPMailer/extras/ntlm_sasl_client.php
old mode 100644
new mode 100755
diff --git a/Cron/PHPMailer/get_oauth_token.php b/Cron/PHPMailer/get_oauth_token.php
old mode 100644
new mode 100755
diff --git a/Cron/PHPMailer/language/phpmailer.lang-am.php b/Cron/PHPMailer/language/phpmailer.lang-am.php
old mode 100644
new mode 100755
diff --git a/Cron/PHPMailer/language/phpmailer.lang-ar.php b/Cron/PHPMailer/language/phpmailer.lang-ar.php
old mode 100644
new mode 100755
diff --git a/Cron/PHPMailer/language/phpmailer.lang-az.php b/Cron/PHPMailer/language/phpmailer.lang-az.php
old mode 100644
new mode 100755
diff --git a/Cron/PHPMailer/language/phpmailer.lang-be.php b/Cron/PHPMailer/language/phpmailer.lang-be.php
old mode 100644
new mode 100755
diff --git a/Cron/PHPMailer/language/phpmailer.lang-bg.php b/Cron/PHPMailer/language/phpmailer.lang-bg.php
old mode 100644
new mode 100755
diff --git a/Cron/PHPMailer/language/phpmailer.lang-ca.php b/Cron/PHPMailer/language/phpmailer.lang-ca.php
old mode 100644
new mode 100755
diff --git a/Cron/PHPMailer/language/phpmailer.lang-ch.php b/Cron/PHPMailer/language/phpmailer.lang-ch.php
old mode 100644
new mode 100755
diff --git a/Cron/PHPMailer/language/phpmailer.lang-cs.php b/Cron/PHPMailer/language/phpmailer.lang-cs.php
old mode 100644
new mode 100755
diff --git a/Cron/PHPMailer/language/phpmailer.lang-da.php b/Cron/PHPMailer/language/phpmailer.lang-da.php
old mode 100644
new mode 100755
diff --git a/Cron/PHPMailer/language/phpmailer.lang-de.php b/Cron/PHPMailer/language/phpmailer.lang-de.php
old mode 100644
new mode 100755
diff --git a/Cron/PHPMailer/language/phpmailer.lang-el.php b/Cron/PHPMailer/language/phpmailer.lang-el.php
old mode 100644
new mode 100755
diff --git a/Cron/PHPMailer/language/phpmailer.lang-eo.php b/Cron/PHPMailer/language/phpmailer.lang-eo.php
old mode 100644
new mode 100755
diff --git a/Cron/PHPMailer/language/phpmailer.lang-es.php b/Cron/PHPMailer/language/phpmailer.lang-es.php
old mode 100644
new mode 100755
diff --git a/Cron/PHPMailer/language/phpmailer.lang-et.php b/Cron/PHPMailer/language/phpmailer.lang-et.php
old mode 100644
new mode 100755
diff --git a/Cron/PHPMailer/language/phpmailer.lang-fa.php b/Cron/PHPMailer/language/phpmailer.lang-fa.php
old mode 100644
new mode 100755
diff --git a/Cron/PHPMailer/language/phpmailer.lang-fi.php b/Cron/PHPMailer/language/phpmailer.lang-fi.php
old mode 100644
new mode 100755
diff --git a/Cron/PHPMailer/language/phpmailer.lang-fo.php b/Cron/PHPMailer/language/phpmailer.lang-fo.php
old mode 100644
new mode 100755
diff --git a/Cron/PHPMailer/language/phpmailer.lang-fr.php b/Cron/PHPMailer/language/phpmailer.lang-fr.php
old mode 100644
new mode 100755
diff --git a/Cron/PHPMailer/language/phpmailer.lang-gl.php b/Cron/PHPMailer/language/phpmailer.lang-gl.php
old mode 100644
new mode 100755
diff --git a/Cron/PHPMailer/language/phpmailer.lang-he.php b/Cron/PHPMailer/language/phpmailer.lang-he.php
old mode 100644
new mode 100755
diff --git a/Cron/PHPMailer/language/phpmailer.lang-hr.php b/Cron/PHPMailer/language/phpmailer.lang-hr.php
old mode 100644
new mode 100755
diff --git a/Cron/PHPMailer/language/phpmailer.lang-hu.php b/Cron/PHPMailer/language/phpmailer.lang-hu.php
old mode 100644
new mode 100755
diff --git a/Cron/PHPMailer/language/phpmailer.lang-id.php b/Cron/PHPMailer/language/phpmailer.lang-id.php
old mode 100644
new mode 100755
diff --git a/Cron/PHPMailer/language/phpmailer.lang-it.php b/Cron/PHPMailer/language/phpmailer.lang-it.php
old mode 100644
new mode 100755
diff --git a/Cron/PHPMailer/language/phpmailer.lang-ja.php b/Cron/PHPMailer/language/phpmailer.lang-ja.php
old mode 100644
new mode 100755
diff --git a/Cron/PHPMailer/language/phpmailer.lang-ka.php b/Cron/PHPMailer/language/phpmailer.lang-ka.php
old mode 100644
new mode 100755
diff --git a/Cron/PHPMailer/language/phpmailer.lang-ko.php b/Cron/PHPMailer/language/phpmailer.lang-ko.php
old mode 100644
new mode 100755
diff --git a/Cron/PHPMailer/language/phpmailer.lang-lt.php b/Cron/PHPMailer/language/phpmailer.lang-lt.php
old mode 100644
new mode 100755
diff --git a/Cron/PHPMailer/language/phpmailer.lang-lv.php b/Cron/PHPMailer/language/phpmailer.lang-lv.php
old mode 100644
new mode 100755
diff --git a/Cron/PHPMailer/language/phpmailer.lang-ms.php b/Cron/PHPMailer/language/phpmailer.lang-ms.php
old mode 100644
new mode 100755
diff --git a/Cron/PHPMailer/language/phpmailer.lang-nb.php b/Cron/PHPMailer/language/phpmailer.lang-nb.php
old mode 100644
new mode 100755
diff --git a/Cron/PHPMailer/language/phpmailer.lang-nl.php b/Cron/PHPMailer/language/phpmailer.lang-nl.php
old mode 100644
new mode 100755
diff --git a/Cron/PHPMailer/language/phpmailer.lang-pl.php b/Cron/PHPMailer/language/phpmailer.lang-pl.php
old mode 100644
new mode 100755
diff --git a/Cron/PHPMailer/language/phpmailer.lang-pt.php b/Cron/PHPMailer/language/phpmailer.lang-pt.php
old mode 100644
new mode 100755
diff --git a/Cron/PHPMailer/language/phpmailer.lang-pt_br.php b/Cron/PHPMailer/language/phpmailer.lang-pt_br.php
old mode 100644
new mode 100755
diff --git a/Cron/PHPMailer/language/phpmailer.lang-ro.php b/Cron/PHPMailer/language/phpmailer.lang-ro.php
old mode 100644
new mode 100755
diff --git a/Cron/PHPMailer/language/phpmailer.lang-ru.php b/Cron/PHPMailer/language/phpmailer.lang-ru.php
old mode 100644
new mode 100755
diff --git a/Cron/PHPMailer/language/phpmailer.lang-sk.php b/Cron/PHPMailer/language/phpmailer.lang-sk.php
old mode 100644
new mode 100755
diff --git a/Cron/PHPMailer/language/phpmailer.lang-sl.php b/Cron/PHPMailer/language/phpmailer.lang-sl.php
old mode 100644
new mode 100755
diff --git a/Cron/PHPMailer/language/phpmailer.lang-sr.php b/Cron/PHPMailer/language/phpmailer.lang-sr.php
old mode 100644
new mode 100755
diff --git a/Cron/PHPMailer/language/phpmailer.lang-sv.php b/Cron/PHPMailer/language/phpmailer.lang-sv.php
old mode 100644
new mode 100755
diff --git a/Cron/PHPMailer/language/phpmailer.lang-tr.php b/Cron/PHPMailer/language/phpmailer.lang-tr.php
old mode 100644
new mode 100755
diff --git a/Cron/PHPMailer/language/phpmailer.lang-uk.php b/Cron/PHPMailer/language/phpmailer.lang-uk.php
old mode 100644
new mode 100755
diff --git a/Cron/PHPMailer/language/phpmailer.lang-vi.php b/Cron/PHPMailer/language/phpmailer.lang-vi.php
old mode 100644
new mode 100755
diff --git a/Cron/PHPMailer/language/phpmailer.lang-zh.php b/Cron/PHPMailer/language/phpmailer.lang-zh.php
old mode 100644
new mode 100755
diff --git a/Cron/PHPMailer/language/phpmailer.lang-zh_cn.php b/Cron/PHPMailer/language/phpmailer.lang-zh_cn.php
old mode 100644
new mode 100755
diff --git a/Cron/Phpinfo.php b/Cron/Phpinfo.php
old mode 100644
new mode 100755
diff --git a/Cron/Societeuser.php b/Cron/Societeuser.php
old mode 100644
new mode 100755
diff --git a/Cron/Typebon.php b/Cron/Typebon.php
old mode 100644
new mode 100755
diff --git a/Cron/crontab b/Cron/crontab
old mode 100644
new mode 100755
diff --git a/Cron/testcurl.php b/Cron/testcurl.php
old mode 100644
new mode 100755