Jump to content

gally06

Members
  • Posts

    23
  • Joined

  • Last visited

gally06's Achievements

Newbie

Newbie (1/5)

0

Reputation

  1. Yes it would be easier but that would mean changing the look a little which at the moment I havn't got the time so wandered if there was a way of quickly putting a button in as people are moaning they can't delete all. Is this possible? Thanks for your quick reply
  2. Hey guys just wandered if you can help me on my website in the mailbox section next to the message there is a delete button to obviously delete that current message. However as I am sure you can appreciate it get tedious when you have 20 messages to do them all at once. So I am after putting a button at the top of this column in the table that will delete all the messages in there with one click. Below is the coding of where all this takes place: function mailbox($mes,$page) { global $config; if(!$page) { $page="1"; } $page=($page - 1); $totalmes=mysql_query("SELECT COUNT(*) FROM messages WHERE toid='".$_SESSION['tid']."' AND rcvddel=0"); $totalmes=mysql_result($totalmes,0); $out[body].=" <div style='float:left;width:69%;margin:5px;'> <table cellspacing='1' cellpadding='1' border='0' width='100%'> <tr> <td width='100%' class='blk_tcon' colspan='5'><b>" . LANG_MAI_MAILBOX . "</b></td> </tr> <tr> <td width='50%' colspan='2' class='blk_tcon_top'>" . LANG_MAI_SUBJECT . "</td> <td width='20%' class='blk_tcon_top'>" . LANG_MAI_FROM . "</td> <td width='25%' class='blk_tcon_top'>" . LANG_MAI_DATE . "</td> <td width='5%' class='blk_tcon_top'></td> </tr>"; $fmail=mysql_query("SELECT id,fromid,subject,active,sent FROM messages WHERE toid='".$_SESSION['tid']."' AND grid='1' AND rcvddel=0 ORDER BY sent DESC LIMIT $page, 15"); while(list($id,$fromid,$subject,$active,$sent)=mysql_fetch_row($fmail)) { $from=mysql_query("SELECT name FROM members WHERE id='$fromid'"); $from=mysql_fetch_array($from); if($fromid == '01') { $froma="Site Challenge"; }else{ $froma="<a href='./profile.php?account=$fromid'>$from[name]</a>"; } if($active == 1) { $icon="<img src='./images/unread.gif' border='0' alt='' />"; $title="<a href='./mailbox.php?action=readmail&mailtype=received&mid=$id'><b>$subject</b></a>"; }else if($active == 2){ $icon="<img src='./images/read.gif' border='0' alt='' />"; $title="<a href='./mailbox.php?action=readmail&mailtype=received&mid=$id'>$subject</a>"; }else{ $icon="<img src='./images/replied.gif' border='0' alt='' />"; $title="<a href='./mailbox.php?action=readmail&mailtype=received&mid=$id'>$subject</a>"; } $out[body].=" <tr> <td width='5%' align='center' class='blk_tcon'>$icon</td> <td width='45%' align='left' class='blk_tcon'>$title</td> <td width='20%' align='center' class='blk_tcon'>$froma</td> <td width='25%' align='center' class='blk_tcon'>$sent</td> <td width='5%' align='center' class='blk_tcon'> <form method='post'> <input type='hidden' name='mail[id]' value='$id' /> <input type='hidden' name='mail[mailtype]' value='received' /> <input type='hidden' name='action' value='delete' /> <input type='submit' class='button' name='submit' value='X' style='color:red; font-weight:bold;' title='" . LANG_MAI_DELETE . "' /> </form> </td> </tr>"; } if($totalmes == 0) { $out[body].=" <tr> <td width='100%' align='center' colspan='5' class='blk_tcon'>" . LANG_MAI_MAILBOX_EMPTY . "</td> </tr>"; } $pagenow=($page + 1); $pages=1; if($pagenow==1) { $skipranks.="[$pages] "; }else{ $skipranks.="<a href='./mailbox.php?page=1'>$pages</a> "; } $arank=1; $brank=15; while($brank < $totalmes) { $arank=($arank + 15); $brank=($brank + 15); $pages++; if($pagenow==$arank) { $skipranks.="[$pages] "; }else{ $skipranks.="<a href='./mailbox.php?page=$arank'>$pages</a> "; } } $out[body].=" <tr> <td width='100%' align='center' class='blk_tcon' colspan='5'>$skipranks</td> </tr> </table> </div> ".TOP_MENU.""; include("$config[html]"); } </tr>"; That is the whole coding of the mailbox received section, as you can see the messages section is all done in form coding so can i pop a nice button at the top to delete all or does it have to be check boxes and stuff. For help with the view of this I have attached a screenshot Thanks for any help in advance.
  3. Hi thanks for the quick reply below is what the egl_inc.php file looks like does it make any sense to you of what i want to achieve sorry i am a noob to php <?php //0046b if(!extension_loaded('ionCube Loader')){$__oc=strtolower(substr(php_uname(),0,3));$__ln='ioncube_loader_'.$__oc.'_'.substr(phpversion(),0,3).(($__oc=='win')?'.dll':'.so');if(function_exists('dl')){@dl($__ln);}if(function_exists('_il_exec')){return _il_exec();}$__ln='/ioncube/'.$__ln;$__oid=$__id=realpath(ini_get('extension_dir'));$__here=dirname(__FILE__);if(strlen($__id)>1&&$__id[1]==':'){$__id=str_replace('\\','/',substr($__id,2));$__here=str_replace('\\','/',substr($__here,2));}$__rd=str_repeat('/..',substr_count($__id,'/')).$__here.'/';$__i=strlen($__rd);while($__i--){if($__rd[$__i]=='/'){$__lp=substr($__rd,0,$__i).$__ln;if(file_exists($__oid.$__lp)){$__ln=$__lp;break;}}}if(function_exists('dl')){@dl($__ln);}}else{die('The file '.__FILE__." is corrupted.\n");}if(function_exists('_il_exec')){return _il_exec();}echo('Site error: the file <b>'.__FILE__.'</b> requires the ionCube PHP Loader '.basename($__ln).' to be installed by the website operator. If you are the website operator please use the <a href="http://www.ioncube.com/lw/">ionCube Loader Wizard</a> to assist with installation.');exit(199); ?> 4+oV56yM/7t2eCHoZ+vfNiHO9PpVbFTJ3UlV8T1EbAZq0FkOafk8pfF/Ay7e6CyEBtO9AP2KYIuo aadiT5HNcLd5VeYIPk5olYvj/4LBAQ3JH/zTXHk3VbANbx0iKMm0dP2KrTLoPPsIfwA2uq+zIeDE W3THnL+4P1KCnnPgUmIjUjEprp+p4187Q58t7uMZ9bz0Df/RmLXkhTMLBXVNgAV2kTuasVJjTxhW xyJriaaE88f0fmMHa0MThUsThWrGgOHt5FqFqKhe9HSuKMHkD+DcoQEBZrMBpetOQY0UgSWKZRKO 81NcaJQwSbIlmE04QGzg01qOnadU7GZOW41yu9Ak0NlJbOu/cz/kQ80Bw4Hkkoueqm9VwmftmsHm CNIdROeWKyRbv6bnFcMppGbkdgvQbi9vARPDjc96FxiQy0MTUyojqi9UKrTq5lG2scz7X8YHkLjj k4l2RUX8NHaXOUS+1MoeZT4TN9mguSWd8kGV1pBtpQVud+0U93UThu4Nmy3cE04M0OEcm+kJGqrd sPn23FyO3AbiLeQx8A6mpXF8wQvYdsoY/0a6l6ogwAZLdCusLWp85/VJHxyiM0R5NoARDzZvTA8z x/5YQMSGfY5Oz5HMuxVLzoUW3SCG/PiHD/+oJGsIsq4okak2ZJgtO9wcJKJYore6cbwfhfvhr+Tv ojk1+yx4WMmEHPaxEwweIHsVUpatnxZorqXTDlckUNKbeq/oEPF/6NWlurZEv+QyyCjg3roIN3eI e0LnyTxqOroFpjGKNWYm3cuMqzi95Zioc7Ch9VU9FJtAxfURV6mTKbBVmangpfnYV0hO8xpNakgL PznnbgQfhpA0e8Q0V0Y2y2g4h4qMzGVArTR95NzSO0+t/nCxwRJ0ST1h1QoP0cqP8FbduWYHKH/E wCpbGTaJtdEW48Gj9rkt8GBitXnj3DQCwTbr/jz6qvgtCOg604pvTScBfXJL6fS1MHJoaFanrEpf B4swJreremkQ45hlSuMNODBpQY1RON4IIWcQWE+7ZGhZz4/O1ksXstK05+3O/iGQ3YdHe0nB0PXl NHQuk3uH7UhGY7xSnbikL35npi4WrsrTp1Cnou+vLMWR8Pqh0OxBGP4RvF9UIzrlL55yMs4GmCf7 0Od9jrY/2wGNiKea+mL3aSrU7yol+ybcCivM0d57zpP+TkDsNxZqWEBj2Aq0WZBaqrzclhhAg1uT w+eKGOXLKTuzygb+oqRULdVciWmOrDwyBczNil0buVrS30FfpsX8aQmiAhhKkYxGHCAKxvz0AkUj ymjDYuPapNQ2brqCzJrL59+v97maTAsQgY0VN47/AvnhlxeVjnd7o3u1JfKmSAg0gW9h5Xw6oKIQ 50vPh/KRRJdH/sfhuYNA+Jlm+TPi+8+vhryxmQn3p/tvek+NxeDCk8cOC+9K/0fJVwqBMtekcck4 Ei1vdYuorHWroIWuBD5aZ9ijLzEIi4aP0a1OP5o3dV2Gt+aCeZAzt2nBQTrzeqGmhf/e31EGN+ba 24pYjDFjmdttqH/aEvix+Zslt97JckTUQV4ZtxXVODAcislnGX5kakGEr9szs3suop0zFQfwILWT O8faG3qw4AacGwjCmaHmLKmLeqbY3b1FrH06vaJmCUhQh5DVvKT0WEDlb6AIZJgrVmLFeGPmdX3c R/yS8zgNjcLrrCq1RH4JEuBwUART71QpLot+EQCVxaf0E+NOM4PlWmx3UHCARc8GJjcct1vvNc5X fo5t9DS6HixSJ3l6ezKj0G1SEyo0TzBmv1FP4GX01LBDx79XjBUvppsj4wrslsR52I/i2fxQktbn q0Rtql5lEmZqY8z6RIUq+lBVmASpXJEGIN/l8PFKKwa9dEVLD4Y1XuyazuIu2sWJqP/Yatp4Fnjy hcALR3QD18husvS3QEQ5+9e5ORDfOWyco1eopa4DlS7frBMGuXg3mBwwNPDBMSHBLE9HIVRe6EIi 9boKAJvnFQi2/5qkovIJCQeE4R/TIl3t2rqcPbOWVflqWu10HgKcgRofeh90NyeXgo+yGZFsl8Tu MG9oyVxGYqiP0Klh0vX2JXXWOx3FmsmAeZ6RsAq3xhd5GCRZUmlyrJSuf7OhG7LOXPCh3xvyVInL ntB8EkL8jxsa8fuN6v9jWgpDdBRzmZQ3+s40E1eG/aIDFifZVAohDrfvDO1wRKDOcTdvZ5sv/mXh RXVcKqVeid7dnR5X//G1PNvGvIyFmSGVFhDbEAj4Tzq9g1DsyGRIYYUizyjLLCUf3Kfewywmkae5 ZGLKEyu4NVuoNvxDXwyUCGx3um9VhHyLiW/NPLN385yge8YY1APyn382cALZRCqLa2WHafu6TIHU SLSrm7LfVG6C8XZNdL8C0+WCuAPAS+U3LQ+8MmLBSHqnxMc2ztM30KZVpMwF4LhZm5wcnOBuUwg1 asgW+6wgc8wP06XN/RvjKGgY3feMFUPfAhiEqIbHNerKz7IAv8ulTvew7oE7mz+eh+DFnulDgXJf oaoLG9RT91Tt+bmB4t90QGqMuDA1CqQGuu9W49zLi7b+QcoSvFpwNG/8wPbVf/zL1lnPzwl61PAL 5sLYtzyMPOWTEBxFAjaB61z/aUtrr33zxWENN7pii5Dby0LPV+UbaAeDzZQd/idrEU9XR06wn2lV eaStR2V3tpZM3/FMUVCdcyMUIz28r+ZDbxI9KA2worKdztozFXMYV7xw4u4r/pltBAT0TntGzEpI oR0LgnKQtyXNwOHVpJ9NJN38jzAZNAT7BMENRVlydG6idPXNwAsAd+d4y0J7KzRJ/ZOv4veE2dVr xBzhsA/IG0/WFuVPbQkOlSbHL8G1Zm5qRhezPIpI/+8QpSVGnNVZdtGIjsqKyrQpiUcT9Dukurej fE4KLtWlNXzqxvbt/UZ9vgvs7HtNWtPsBVHr/5p8kZyGiTT7uYKJjG5ori8kjXrSwmtHFbwjCb0v yRntYVaK9qQdFhXUHZYVxrlpi3smoMdISeQfn/VZX4nElnS5UBP+stKpQwKJgHZHlpw50npjoeP6 vQ6Mx3B65SXAzvTwORQxz67/MSeEsK4CwLtSGzkavDImkoO7GUufoI1Ac0K+sInrJ1LJIxO4NgYu yavgV4llr/HXFcT8JKrLFdQLK2o04uLaYMObTRZeEp3GVTwmxUKPrVomupx+116YWdPwCbu+xCU0 EQqgrP1MY7d+J2CreirD/dqxLye4IhrhEJqdvufe0wMBXMOrsS+4eK4ddNsBbS67iHKHGL6gZwvJ +UZX1THgov9iWVkE3oGfVXaadP0mVt1jSexqOhRd9M5NoQJCkdJiQYsrWDse9eIPDOfHaSXW0Qmu wE1JBqZLMhHAulkIj3VhffplJadjxmESzqFw2n0Lz4OUEU+Vu8ADzmLevaRXEVyYxhCXesAfqVrn /QX33y4iyIta3uIQNKmNB+fK6oGoCFzNX1ciGCj9/SMeIg4asaWgAq3KU5QXX7hbGdNZSlCuA8PH nULpz8oG8F5uKQff91s8kWjApfnCIw5h5dyu1+/DMfCxPUjgnc/gDO34S3q+ta54OsZVI29k4Mj1 UTLpTjxW/P+7BupCA9TxgmxFsH+p5BtU4Q+qI5tNTlan6twH4gab9qRohXM4wM/4Ft+1s+9j8BRc Euz9kVa0DIJQTwzqKyFoomjzmJeYb2ho6wajo0kwL6nmo+ovpJYDl6nc3Yu49S7zzKbNgDwhxRCM Bunh05DjjaGwgKh4tbjOm7eG/yVhnoqf/a0bAKVpude3WmiXcSgKIdLEU+odM3NKzcTKZgJydrNZ lXFo2LAC+jDMWVe1uQsfoc0FfHzLMyyUvAovOgKo3ROE8XG61uRWjFZhcBf+DHGJR52y4Q9aGZHc 8Ruwpn61YE2B8CKb2IpQ0+gbN4uvPG1XyWSxxXmjdooN6njwPBKbD77SDFFN7eAxbf/PnbXL9q84 ag62DcZina+FXzaHr0zA7lK66F/nrPXean1lXQvm7ij/gXFkWwNId1jMwcOqbQuN4mdz6T1s6P29 sMW0sdva9o9jny8nQWEG9zsMGRJhw6AwZgYC4cbQhQNQw0pOD8GckgOcOlgSE69HO1VNR+Af7iHI d/wPhfqrl2fO8sCnSzDHxA0U2XW/+AGdXqpgT5bBOiJBuYaEE2DRtQbRWX2cg4CL+s2rbDyeB442 TMG/yAX3oB0r1TVLWZfBWjfjPR/lG2B/w7NXYX7FT/rjS0cE5TdNVSOt5rP+cZY111EACIm7ha/M nXyMIf4IodXDnrIQoLrQcnL9K5Hz5QjcMUo9PxYUO4LQR1TLtlqOvinrkudAvjNGL2kYtBwhyMrK L26SyZ+XZSfZHsaOXhqwJqlVssZQ6NAfuSmIgvgqJqda118iqAWBJm24d26FJOZz13S9718jS9FS D8UOYmDCkHx6oy3SoLjg7Yn2sl6K2EOtVV+cKDLrOUFqA7XDA8Z/B5Fa7jzzwpcfeXc1FhMjrMkZ FRAypa+dyiTgiStSLwRlavznjSGAhdX+rC31S7YmrtY9kuRPdk+wUhn54fOqye7YjM28gumgDeK5 HBIIQKrYE+VdzhXJiFAgnOXapMCOwpI3SVfewi/FYkllHv018aZ8Dxsc5A1iumA/nY99Lp1+T/ut WzaVjaKFa2VzmlTrMdwconn2Bp0BCKKdkVSUi2RzUeMX8+QE4T+za3kcMqs3Z3wwxIRxJAW2bl1L 1t8LL0bKZSM3imG/izV7GWxtC9RMsG9GyJAuVem+jVdZVo5fk/WjnAxMC12gsfq4aeHQwBm8/upr iLr6zGJ5lZhOjTeUhgrAHdnhnvWuZSRnuEuW2AcFNMPucFDrhqykI2ODUdV0bAZITAolHtW0ta5w h6MoRP95PbYCr3a6JyJu99PYKFqOwG+gnzso/3I2h9MP0VnJoee+3tbP17rZYhUZL5GSAVG6bep/ zLFjrUnBikSpsX+7s5Fh/s6LScEIRRXiw7Ro3VOsBXXP1C2bP2+Ov+wJv3X2HTHsxf+Qgk8I5HAR mZD76hNWvbj1ON/RNSTJha0ET6oF/nw3kdwY8xEgIqhsJ8r3byujSwe/3d9/iioSyrkxymEkRXv0 hUpSA1y+AfPhYPFLhwCHVikHRHsFc/MBBLZ//DOR/tH6bWz7CyvQnVvFN/Ngzeg/4n3xh3ub3wkk +NFrDqEq7vma+wdVvfNdXkhLmxDeAfM1AGRPARBVslybwEraKbQlp5aaiZhL42QJ4phnojDoBO+R NDpG6e/YtvwCTuGYJaiwycKuR7ZKVJZx7JuzEoOWH5Lu8vVfRaP1Rkzb3t0c7ySSQbOkmHARvbDf gmS/868g91fnBV20XxN86T9ledlos3fCMLT6iZWGTGmfKVzpcUnFm5SvHtF84EvheuNB2GL2k/Su 0p7dvdEeHxbQDKQoB2G5vt44GB88Q2VT0osxm/uhNkvRY7ILonfhwe1vc/6bDqz/j0w9uJICPMBy 5BIkogI+xUxBwipZajEENT8ts1iep0o5rayYqInPlbHNyv3klG3dM23YNGuaCwAfbQFhYApZ+9zJ sMKRuemqzEXtEQU3gJw87GCccw1ror4G3ZGYgQWuM1nyy2en7ECQ+ONu6LIo1jFOi6P43hys/wyC KPmiemvcENS66Yp/nEOwlohwNUkDBgGoLVL7ipeftg1kGUTAakD+NZwMA4EYZ0VoYhERbo7+MAoX RN+v7QRdQroJLGgzTqAPUY97sRV0EhK9lggCkwKxxSwrbeO1P/qakaUlN9UWpnlgwGeQxHJck29e 54stn2yMXE/Q5elQMOGNMgblMNQINJ6GN76nVqohGCPJ2wR9XDGrc0PG44RGauqL87IIQttwgb5N uf262E35VcIlIlNhtNbFI63SpWtJVPRFbQiTPgyMWju4UTTCo6h8CS9ymRtTx0IKvsSsCg4iusUB 5wFeOFzqSr6Q5heQ130xe3IIAUHFJLLfuwLq9PXQky0MJKR0rGYYp0x6GrnPDlDZQ+DAodJ/ESaC VAdRqH0osUI4hRnw2+Bqq9r3KZxss3UkMcKw90iNbroigjrxImpl7dVKZWavCVZDEhAjaVWNwwuu qsU9KrjTg2cQMCEcwhshLOLSTknu+vj7jP9zIYoJhrRiLAnziA5OGjaEbAeYjF89ay3VFOO2BSIf VfJBeNviVAAi8m+fD5EWQGDo5kCS+yAkWeUovkZAgg6fwpLcPu7KG+FPJLoyypTX2hxsNa/A8FMA xAfZSOe0D994M2l/deCcZyBRCKV2y4I+AZCiKn56Yvkx6UipSKyM4zNJmRZ4q06RJByWTJJCLl6e GYbVMSZYY3WInTcEbXLpVCS1WuWwDOGUz8lg6EczhT1giJ87bdqhxAX83x11RiSu4qb3G+XWGAc7 tcQlxmlWKMPHOywb2gQSAiZ5cWncLlKp6do/BNNscwBsJTuf47jKKExS6dzuHkSpT9X4h3NZPazn L4EYVbcYPzFie9M0j4jTWcqxpES9t+WnotksQd4rrprpVhbvw3GixXwmltr6KFYwhA1yS//Pxc26 05IUUn5IZcyiahBQ9+pR4hKVwK8maYnvbhda9ykokICF7AVlOqUpbEz+E85o3cvkyJfHOTLi4NAU z+20/XEfQUsMzgAFhLcIOvTZk1nzhjrWOW0o0Mvhd2yUanqmyCrjco/r2MTMMwkfPwKLzNpsRy33 IGZ820MaPoc5RCX6YNfgvwH6rP2OFn21sS3wuLBXIS5uUv0sQh/OzXdWrcpRFX/v+shpcBYdqLTC +/gAUICLER8n5INJG1Hr1flTPzUL6gq5M4EaP+OLhaBSQITMstxxAexxdk+cBXlatpMT+L2M/dg7 MShDTMqcbiibfQR6C8OSiH18S9j1ENan7A/2oHyZIyefxjF3mRDQSim1BGG8sACxMMtGok6HpLAg JmmowUvk6Iyaa5b5zzCV99bAPVsulCWYf6573lGxjLfXI2eu5iezR+WGURrAGTlIvuT1I0jppn/d LS9Hmy5qET5ad82O9WaJPagEmOctP6d6gWuDQ9B/kWjCKGemqZPdHnjnVkC8oaJLMH91hXO4nzWK RGeXzqKwcJ+GebPQkZLdIm4UznEhapXc72NrRZ41xuPcdtYx9VCr8i6LVAa5Ek3orXNjE5WQhDcI SoCtUg9mpRR+CqUgdVEY3YCjjn1aY64a5ThaHAyQYjImakoR+Ag3G7KgUq7tUcmkCffQ5CxINuR2 rmh/KGyHHLJqFPhDU/O+U7CfdoiFLpAX9yxZILVpQbyzj+SrYtuoPCLDMrb/p2HIdth9f6V0Z7bY g2IflKHyc3L1lrWkNa00kLIuQDvo4zA8B3GF7zPeGqh1hdUouyXTinyR0pHMh5XV0N2rsPCY9ZkO Au98p7akZa5vAmiGjJ6sM3aa6ZPIWTUINJ/CYuP71+I+ZKB1gH3ahqnNnGmJcfFOdjJS+OhS+Koa 7nZO/ufQ6ZNC/NfEU7zaUlxGdJsCnIPA07jrfm7SBlqIX6DUc1pDJ4DntST0FV1HKlrNbD90XyOg yBT2QOHq17R7IUUmgToAfwRFiixGzs91fIVJTCIo8V+lWDee4AVQug0Ojv9NQXgIT6V3vUOO63s0 neHGsDA1nvEFNOLoM5DZ6DqTCec0+HgtPoBHfyJVzZRS2J27N2kvR1v3K2LrUmFV3Kn+q+zYWYz+ zTbkyb5FWh1PbwbZ3A07i+FybsSmarS6WOuU+nCEhxllgPMOyatNl0fDpncaR6c1Zs+KsP8m8cem WuaLi07flYgK9s5skMnvSBOC+KSzII/57JAfbaHElvpkMayi3EPGqQoZoedFyFnD0ZzSjjRZmX4D AGljxBBX+fKvaWJRUi3WnMqtRfeK394QSGObootblXKQjkrVzVIaGTKliloUUaqiOCgMzjbfVG6M Ja19/w2y8gzy4A60EUJxJfT/8cpPhfhyuW9XWA5z2I8KBaBK5NoC6JjBPkFcbG4KoK8Z8s7yf8fB oDxmXFp8q8U00elORCNKbKAKwXyDhD1dP8Sxv0GO4idpPqsf3GEEbnJJzuqOjH/RYkYteClP395G Q5RusiYvyuI9y+Pslq37IXDHfCz12ow2wB4TLxRx08U1cN3paiRz5nCup5poXZqBRT97EOFNhHlg MybGKuPA9k6P8p0N/qlPDLLq/AwzfUaI8kTan97wXR37sWjAT4BDg49E8smG4u+//52aeYHULtxx i8En+NnnPI1TTQvnmbRsCWKI5mxjLfrk+gI/XfibLI3Obl/rMHrWNqmXVMioSlKes7IS8m9+V4ub t9rRRKtj94qr83BYfAZCOvjG+BFj+UC9DfvUyIVfkQgeqSYcnDeWrpkN8L0QQd/pcIz610ityjiE 2VOJ78aLMIk3TUh4+mvAy21PNli45Rc0e8e01gu4GfRHY6XIHufReOmAl9pAxx+Ztk3jqqroHt9k oZsDmyrz8u0/hWep05jwk6kJ3Ga95q3F4KqD9pfAIZJFiBNb9RXHijoiigKDCDP+wLcb6ETSAP5O JsgVohx8WZOQvG8HHzZQGiX4l6DyW5G+9g4OB43vvQjQhUSsXIl7tCVAjzwew7/68NXGLxAlK/RX Z/UJYK8oU//K3qQlttWhxSCIlW4CAaJa+zHJeZ0V4fNP6lM5BeK9To+dzXkyfgNiQtHl4r8eWdMu MZ0eK1Cf9qaDTHPAYwODE0s59F8X5M3lgOsd8LMgZiPuby3GNBNxDWyvn0Inu3BVkyjKrQfM9qIH 4bRiDTWh3ANd4FuFHWXY36wPOpHqNx/Ty8obA1aDnK8XWdiGrhtp6jHEE1s27ZLAg8BM4zgtcbfq X6ZqD0wb87egGFcsDEIT2KXDy37r6/BTrCC06/1lfSfyRITGO43qegaLg1uLprCGSe4IO/I4la2S QBoEvAbwMYRuwvvsSYP4T5mgBccgrqZfRrBqfF8IxGFjD5PdkVaH9OGKaHBctiWm720QQDKfLOoO ifNC79z2VGHZfq6iNs1Y1bwbv7MuRzZAvevkFwUNPnxoIUE0h3blsDKie2gWvsER77IcJpcVLlJb 4VXxHNzsf0/ajV2gzB2mh3R/pojjtCWdf2ECnXkQMe2lfRvQxu86EF3TWtFEPRDI7GqS/CNeS0/h CvxT1fOGVfhqmHa85WW3o1Iqp9T06sH5rpOsyiPylXBM8VTTcui2/xBieTM3tOGEZ5vfXnzEHQMQ emTuwrILER4LPAoBGuVBFqB0Yo2CvAUf6MWwszLNG6L3Uqqm1/lh1f+6FM4xM9l1XXQFEKZZRDGV bmdExaG1v4AcjW4OSctxeVC2gAUuGgGwyMqr+SY9vzWTnvX9WLWPvZfx5xie4Sg8zLVntPSumGZR SCXQg8Vq+VfyPG8s9x46x4c3jE69pyxFk2wqwrJ9Nfl3QPNVhy99m/TOEaCmGdDkidSwx2k02KxZ BoykgS+ttf9YDFBGFhfVPOCL2h0cnDtMMag9ztx/KA5g7abRo6IToogsmtyhh1XLdUw71QJ7yVQt ZgI2p0ON3RTJMUS9cfTUzP30XW/BQW5Y2FYR6RNeS4iFSbo+YqOgJo38DgP6CXhJRPkSoe9oJ3QU /CUClcwetteVEN5udzrFcHts7EIWXlXH4p7l5FzQEPBCs3Dt+v74Aq1w5V/nzHgKhTJayJ/iWprr 7l4mIn+ROyWR6Par8szq5mU1NbIQVVf3Cie8dJDlrQznaMt9BFs30wladzgWPbHp9sIPpF9lW4CS YbSFCibyNh1FzS9G5j4WMQIEDqu0vGtRaDwRHfRRTq3hUwvJ3DxT7bnipbSJDYuzFQQIeD1EiGqC 9+Ov40Xl9OlKP5lqRR6xC0oR9lmXYw0DzhSNtZ6qpHsH0gFR8fLfetismiOd+xneDqxB+C4ZhpxH lcegb25tzWDZ9h3/EPJkt+kT1VIMD8MLsxqZAP+FBeHZOfFMcZHAg2gb3eYDL4Pxdak188fOV0xI B7bZld1HaQNGEIuXlBSH//BwXXMbsRJ0aNUSi7gv3v7jHPFr5a7AMGo9k3VQem1hn9CCp/uGIDK4 9Hfw3cvynHlFmAHYfmYQBJNu9/3E4gbt8OEKVRfMcZ43AJumyMsp1n+geh5+zz2QMm5eBtvLCuvf oQcczEHIk5TmNzPNXwU2vW7SyHNhVzskRjf9e8m0a8QzWHfh0Tw0jfvVaZK5f443a6tTVhy11NcR 294nwf96SlOScKEpR455POL+9aFzY3waI4f8ptMZWdswR+cfZOlj68vAYfC9JCB2Z+sL969B3ND1 Xd1G4Mf5gv3qcINKfY5C5nQgTReDAQvMbor27ajlfjNvjtyx5/lolUNcUY9H7mvOvEx3lO8tu4Tt qsG8hHrhMTmY0wZ9APjB3Dx9MN+N/AMJB1am1SdOkaCeweE7Tc8Y1/mYL26a3QO1AxNPJcMSvKls yiZRLhpxsfcRLXPVWkP4VWcbBQEOPo+dkBjmjKTerJj+v0J5vYgFu0DbKMd85OEJJwvNBfEB2Gnh SOwkC4/Frm/EUQx2TiV/W9Niklx/a2QYivzG+Eqr/qbR2y7/EGiJNYoVjnISsRp/2SiCQZFZWFTQ nTut+IRgUszXW+KfIxmvIgbX8E8G3jP+xroW/eJ/N2vkC40Rcc9lrHqQYwwyaVL8aP13Q6E837Wi uv3j5cAR2KNzXmV7YwrDA7zSySgBOF/xQeDJD5T3ZfPR1qE5qY4jBY77zoTcNoqShkkfUNFDUuZc 0OaY04c2PSxsubLJZGvW3G4qrdK29RojaQoywFl3lwYJSqMUtuOYpV7Q/cxz0yDWqZWBZKGYRoHk SHDU56+XGUDpevxtWGDscNKNvIUYpT0EUeA1pDUpwADmLe9U4tO7yEH29Tfhk0UhkMhUWhYGTAjJ 5bUE4p/Mhf4P82wptL6P8HIq5wUiuC/zJLWnhAC01drK75LwBvd5rCZEOx0l4ZtKOytBBntoeYGU P+xWZkX1MwLVqIb0kEdiVVkEjkH41bXNyQPa8FbiXBdYkw4xALFEJv4piXOWTngVAsXjSdaRv+cb 126cluHuzr/nz1XmWU8gBoVT9KNoconEO7DXgmYzXM6JDuG516JpOt8VtWWdE5ljuUxoqrixMcsT hjegByi4meIGwGQ27ZwWGU+l/SN13mS/8vMVDpY5guLkKhUIG52BUk5YyVmoj9i5j/C+5eswgz+y l7GlZ13rI3xCIQkucEwhyZQcdx9w1kllrhjzg8uWaf6MeH0nyojNUhx4IyKNtifaJWCRFwM1zbLM l3/BD8ldEni4cDFShySS9kkSHee2WG8mfGc7MAQ+tGkUCFojxyLKz15MhvC1UGMCfagyJy3ayP77 caMHoqwwU7puBEWJItBvlES9tPpubggOqMGuO9kY2Vymiagn8OVOvc5DM+PKyxFf0nPrmw6NZeiT 0wPDITYo4l/DqECGN/m3KpQGb+qUtod9LQul2EWx//0dtwOxPJZR1oEAlsy1BdQc+riVMRMzmdxj dPi/hl03kGeCpDiGgYHJ3Fi6TXa/3GJKuSVDAAM9WS/jw8ZEC69V/+fWzUG4PkYa+0HdSFzSm33a BPguahhjb5HwzBfpoI0WMkqejkR5cZGG9F+UggZDcAkboxIYGpDNI0NBKwpgkBVUbqGulnCblX6w 8aGeqcGtpc4L4nbt8Bl0sq7TrdGxEvySyC0Z/E1bWNDfPMds1wzgtUQKvKNUUSyc6G86CRBm+9nb O45wyLGx1fWZpn6ADfRlgKTX+JJbzanJfTzvD2fWz31GDKqw4U2V3guiG8Dlm6Xh32/0spGWV8kd a/uFlBRsqTdufe2GRt44S4OsFJbPK15mns1vVD1Q4oOqQMyBRuYoU+dh5ynDB2XIk3JVQyxMr6so V6d8ZLqCNLJiKpUCQIbFNei2M7LCatcxpXiLQbaCeNjyzUFar78cEB2Ba8f8XCq53BlvN9bDI/Bz wK6qts/G43xi0/kDHl/HKEZ+fNEEdzyIRuloYzOiDJHeRD0+ANRnxeVmUdj5x0lWS5cZEwkOyBYs PF86p1ttL19PC2S0o65z+kkQtZWDRqQXLsX9Dp0Vw3RkQqT/4MNow0482hJauYemwHjOn353hyoO GwoBYosv/UD37M/JDsGKx/Opq4IY0AVQoUvNgUkeVdFPeTZM+sSD5rWiOYVz2qfAioBKLcAmRbw1 xguavDoyJ7r2FPe8WsJPdm8f/bppyVck1QXR1blVrE/nGDRYmQ6//6LaO4I2ONtqh8VYJbLzR2VV qDOwZW+MGsAMrtlV7jRY/m/KfZue31tK5y02QFTZ9RksNtckWXVYVp2C4YUBC7UGzUS2xvwbFP0X okVNkfls4VYS7cUcSwm0upufkPNNsrbsZkWKAKZcFUvNVSumBizr5hn/A6vImhvEu1q9VFNWGWWB NDkHyrOihMSR6UU3EPuev2HxgX8Hz1lug9s59UcC/iOLbtP49b69jjznHPClpPTKG8OBuUWkP63Z kKQQB64OhHvDOMXy+Hj98zI4JJsSMG+nzGtzZv30GwjDLCmcrE+277B9N7Hwut3GXQtXdY1NghnX hpltn5bIf1YRGevKNNwfW/GhiXuiKQ85Uf/Wwi2XWQecliswrIPc5IDZvEkrrSFal2ptw/wSKNfE mfdTRM3e2U7XgHNnehEWMiS0EiE+T4jF0fbZJC31eu0/A3ZAxLsblw3JX9KMazCgV5qA0mKoy01R pGHeHDgzUBNgZOYDHWqCJE+/Q1SovB2lG6F7ebS7aCiGWbY5gcaHsX1hE1LjH7bC9B4r2Fd6t+gR JBnHSRTYjlvS+Zac+UO+KWkf5TVl3hvQzuJL6ATRoHCT1pkee+3VjWggfLedCu9vyQE6isTaK+NF ZPu16GizwsUUE5pAT81cyJwSeOHuoorf/qji9Zk1lnsWBh19aNQYyCo/kzMNwOHtzzZOitR2hK6o Uh4Vbci2+sGp5p7XAFqrw8djAZIZykycMOSOmLTHjniMgxHs0MYdHN6jDrEq93ZyVXkkAkZessX/ i/laV0UjiJIQgCZBmcm3tez01HrIjn3He3DwunqmXxh9blqZ2uEWYf5BgJ0guX6wuvEKOkOQxnBI uXgP67m+1qzzZdqcb9JIdAS4cYnaJmKLd/jL2w/fzf49CRj/r8Ba7mRS1vVAXM9YaitY7vpMwKjj IWW7MCfttdAWg7ag2hB9zb8XGjEhMk6MJrxMZ5o4II8qGnPl5HiBzLsI99KvpRd+XCJlx8B8xvmD f0ixR9OVDO29d8du7Rf82ZxGfWA9aQ93hMX+LzIB6VJ8S6ozQRr0Ox0kfXs6eiPD04ZyCPDpPobi 8jv6EAvRMHZh+cvynGat8REic6UvfnPFWc41LZY2L2mmNVtHKH60P+R4+L2xCa7uLlTSJF458p33 x2vWbdYefmRktVMO467pBG4qLvp9hcyEK94gtF8PoBWwTbg0uN76UH6wjYxBe7zgQ4CGE+n6VEkj VoNX3n/oMUymgCVpctM9pcNcYdV8rKfHmnFAMInxMhv2KzPCZV1Rdrc6MJeCY0DwCx5O05Hbn8Yv ckU4vv/dVLhWb1w7HBJtPcULwZ00SauNprjn0yky/14ObhR8QY8bL5iTGwtC89NkL9IqaHDKN8Va gOCdd7MDzePNHqqzXuDwwtYtVOHvCJYkalUs6ujoFSlI51oIf0wMpMQTcZHknWa47LnccVnIraM4 DrfdU+hNCRRZLFDmIWX/anTTHp2aefP8spcgkIddbl3+zJkfxfeevOp44jHTDMNTKm81XTQgrkAL 3FE526xE47lYBnNWAqLyYMWgh7ZuN5kUCtNMdCjJclO2/j4igSQz7IqoOeX8oc3HP/Fm164AcdIF T+TR3uO+YKdlHN0Z8iwHVz12zN7ENp3NHLN7RPMdPQ7LRNN3mp0XdMBVy+jsJ3YQAWcAPj4z7cMp t+aflUpp8SzY1vD/fAwkOlSx1VGWh5fg7rbJaX5AdDgLB7pWiTzTWRAL053oYzg1ZiQqx9drm07O E/pG2x2cAI6UxwLZYL1/vmTWFkfVq7gA6Wbngdh+H5jqA2rHCcnpzdSw+S+szHHCcYxPIPy3R09H SGeTajF7B/xD+hOwI0EoIGmxtiugbOcrIVfhZgSAHxr2JpxHZ91WpZRPmJzb9ojTLA0nyS8BrZBX sO6yn0dd+mjIQToUWCy3L3CgB0OcJBVW0IZT95hxgIo9HUN2yVa518ILg3XSqMb6voume96LKJj9 cq4Ya+eFHg9XE4nuMO9jqkh/PjREiXlD9pBk0pLxLbbsG0vKTaNHWDl+iYnAGe09LYOcBCu9x1Wh 96ZkbqA5iGEKKK0eX13F2Jcpw+oFDLkDMFYuXNIanj5i2J+91pih2E0kGDJPlnOJf9FMa6XHCIOC D95pn0WaJj7uILPQgtCOeQJfpoWjnQRJta1e5dObe6AT0WT4BZU6dvSQ+BStVzjCAJGoimZKzfzD UetKH2UD3KLbPQSa2+CB/6JeP+ZqBbm5ylYsNWxDPdgnvlhKvKppIKRjLf79URTaeFyO35ikks+l kwYNPNbvU0mLg2C9PlJI2e4qIKX+6LW4FTTdKI0JiL6YBTnklGNE0Nl8QhWKVwgrsI/luhvh96CG WXmMIBfRXL6hs/dIrbV17FGjPcsJdVaGsA5OVNvLZ29ODfDLP8sP1VB1WXEivIzhM6TJJ5GuN+It ykTBb/0KAcFUOxtLrp5v5VKmrW0pMf1Q5tv2dxHKofXyMspljyhjGGBeblIM71a1KmVBoDPL5KAH 70137rx+kWJZEuNRroOPcuwdKq2zPkaprb7jeTB+vG8GMgbuuAUmp2jkFe/EQR/yZhCfKyD9rGJ5 mbPyZf2HMxF+SDjVlXoWgxZR1Gunj3q14RtvWR0w5fjo9VFCG3RnAsH+T+BE/qtP1BDabX+QDXJe f0u9G2nXDJSahMzVfKdMcq5t+blFBGWG3PqUoXQH0qen9PISZ8p2TBUQuBdRTL3MhYwgqdfZrlDY Qu8ACyjYhBOYvtleuNPMj8FOrC1d6ngFrjrAK6Zxp8XJY2JSzwRWUoJcuCy8NYfAscYUgnklArYI B5MIm6hDzH4FcWEBNZynQNINPMvTQqUmTzaWaDAw0TJzyu0d7HdA877YxlD+zt/6G10Yvvwy4elQ 8HxalAW99Do9leQlKF2RJn3kOVbWqawfzcRvPP0jDGbsCGVU0NBxGwqCeaKl/3J6SsVrYB8/o4HH OVT/yMgfFTrb4ziEPSSQ6MstTiV1HzYBUa/y1TGEytjJ87+885Z8GwGPJo8P7nLMkuJrOTp4zLAo +y655HnlLo9x9WQ19EA5Q9ZsiglLBW32V3DEJpgylspytQ3LJJD2cGlV9+z+aT4hr9EwxSh4Uhhl pU3qctuu5tZ/1vEFZLhVkFAuOT3qGd9ksjxdcOOqDYgIoXTirVh8mR2aIkvANFVgpWhGw/B7Khz+ AmxJDegiELNotxDH1QpMhvv76IXp4PP290SJ7LBGDQpHC8MhqMhH4jOFlzHHN7qnlwZaPYsxkCbs mSW8Ug7oco+OsEHPvbvajeKp8f772dPeRw7KpDExrR94IBYzJgqkoKoAHQFCeIOAXHHEXdYn8aX+ /65ljdQO49EaXtgVCDzJXhtUL9rzzITZEn/quVibZhx4QG/sOgldVPXkSgIWIZ5R54e+iUx4HKOH vg7+zLU/hcqJMCMvgyPOpyLAqbomiYBNGEE7Hahm2/bP87SKERtSK1b8Rcy/Z1Hot3IT/QmlIXZj BnMLycBrZy2iYRfmyzdUN7QsD/mAaH42W6TfWAc2k5Ma+7wClav6buxOK56WSYi7Z9RtDAcC2Lb6 HNo8kHYDCmkeQDO6MMm2vFAPC6uIQR6HtybklHnmaDQcNwbZBXk1P6x92qeHNU7xhyYkRm3lsw7Z /hlKw3278XAT0vPNegVkcYKS4C+xv8gqdzeOLJWK64HNgwMUZiHWPaOgrhAkKKL0rCLOs5GHz5rJ WamhybRtwk8pocDmt+VYLZX/EpckDw8b8YRTyzg6tpG1iWVPYnV08o78JRmWP/E1cpumduF3Tfta HgOF6UW1NsnVBf++5KFE/UohFMF8+jsqd1hTvujfp3yI1LXpeKwO5Bj194GiXPOvpanVGah//HIZ wKCpmvTkVrpnJEI3S6pesBY+15c5tPsGU3RmnPO6QTj7aRLRL8ez9uVH6UD2cvratUPRE3fFxzfs w56Mt06GyPpGdrtLAhQvJLn5rKZ7Bohr8EZsWJwzXWjUOexnaFu3gnfbwrDykQCByLh0PnEc1HxB LLDHZaKcrkjOP4+H0iBQ0ARr4kWfkT1+6kccE8XmP3EQqbwe0nj89hjVfzGlriRU7wFwlzTjqsEu pE3oaHn1WE7JfY226EJGHsMD8IAy8wmGY5OG4hHtGubRfikBxCzCU7WTeTkc9DzuoqcjiOnlg9F6 HZzY6ipmRXtBQKvwA8Adfb8xPNvHb9/dDA5XIwhjAron9azci/EzDj2qCTVMsZE6chWNoyhSptnx KWmb3iNFwu+6Scf2PztBMfZc5WP8BFWK/aEJz7ZSIoNrI+Udz6RBJsAlfkI8Jnqqz1UyfyJJ+2bc SD3kETyfs3DfZw91dHFWriU/f5s3UV+4amTDvtpSWkBtsrGLfs2qc18uOLzb/QPECmJfWWnywN87 WS8zJ62MxqWRwjYVEzR7uC+LQWNM6Gzyg9X22N99JRfbZmRbvrqh72ntHjtYrtpC6yzMKyfxi76s KgxzUVLFwE9FHzCmggFNStMLT6TM/w29A71Hhc6oIZQRlxXOVT2K7NI5Lg+DJ0nXt9UWDet9jh9b WCWm/YwoKGRyrhCS/mecydL5Si/WIXdNG2Dmw9udUhJ1Qs2M9sgwFPfi/NNxcAn3FqOSQGaNfnyM ljMyRBNh5JukD2dA98dJKZd+8+LrW6aR9hnaCllUkHXGazaPoVs+uuHjMKEDjM3Q4p10/ttcz6l1 QXOGXgiU7BhX14vzsE3WmkMav9QUFfOp+zcsN3vrpv41278CX6dRn7AVQFemRB/YGRoHL5EliRWW SPH8sjZ4yS7URhKB73KgDsLh211JRSeCOGknxm9vou0+SstibxOL/wx8sWdoY4fh4bbVQGvtU9OC f6bjlkGaKydfWPzhZMQ6K5xyQx9fbS6chN9bXHmiqbajRuCLVtsEOcDHuAyV+vyg64Q2eHxIDIat 3K5G31N2rbzWzG5WCTBGuaOIXvv1mOymfRlD5FREYfYhN1BiRtByuqI9fWGk9ycQ0n0gbl/5Xujb DA/NHRYeRJhFZR02WH9+SdoHnhaFlqtom0VJ6jsOTBqwUKf2N2DqywZsldQ5OtOl8CpmM9H4NX8z q2wpDYFRebov1oAHocdIHpvy7MR3kmQJUIsrZcLpaGAU6sNpLPgToeq9fKR5FHtkJHZAUl93CN+l GE/K/BPaXOpHD9n3wzflBnXc4sFtT6Eiau/CxRDn6XbjgQ34c9rVK+pc1iLzHyKJdbwewOppmrBP R+HHXnHcHpqPqOWSrNEnMBSgM9Z90bqDkfFqCV6+QRXhMU3PyVVl0QlX1tDr2PjFnZA9qOx5GJXC 86uSa6ncFW/Cc2hrN0Wq1lzBwbeMvMr4Y7Z8ajQyQ0jioSopQtwDxGCC0q6kHEhp5LrNSb9P6wGU gjuFI/94eRL3N1I+n1bx8fUhEyzN9okeNDwN2Hmc/ef+HOFGYuGAUUtBbiMl9nCY7y1E95N2gu7a Jm4FE1cSX7UvEavFLoVYllapFhDTorMi3SVyNQp/sGORews2qUaqNzHnnHm5j0DG73wEZZAOWM88 eS5XWggq1eUFOZ77zB/gSNKemWL9m3Gm/tKiNV5xTQQhKb6bdp4z7L+Y1mQem8hUCvid84TCj9J0 ZXYVd7j3eDoSF/8eUxNV0Ap2V5Rs3Smwzb4dBQ15Czzs7fo6mv2wDD3NS4w818zmS4vcIUNM0y7s hqWYHsdP/XGCku0sSXBeCM2rgetU/yXffkz/pq58uzaIsYKmfpzjk+XRKXBGwFPavNFF/TBLUk4P 2TSZpZeUnaxLYXBUpb7mo6HqV61x40BKQ5tjdT33Vh3W7gc9VjJtpejDXF9pfglFCSYpeDXClbvJ x2TiIctPsiCJh3Du2vyKzgK+ZdJJd7M495sy4JyzPsl/PRJj2AfC1loAn+YGvDOeEwQSA3kKukSO r2XTP+dxkfNjvwDnoHgPqvSTX3Vxh6g3r2r8raeNep4Jo1FuWrEejVEs4/i05PGQ66hfPi2a2ozm o9R1Nf06s7LKjlDUPkaLGGWMKHRnPtO3aX4994yBmFMm/0JB0UpYNlQAnexCxusu0JMm4xTiWx7N 0jNr+/vhcmfM5ogyK5avZikyu4J43S8GLpuNrfnamsiw0Vi9K1dZcGPAfX/kvN2yGlT3rs2bJufm RgjFZiAojzTXNtViKVb0JOGFUoxG94M++oYzBFZdwB2PhsMDI1wAhqEe8I8iiBCLwc1EUanrDqUv tKabg90HlubYtMQ8Ah2coqz+jhcNahjsTGEk2YdnR8m8zwSiGCaFexM3NSOaquUNjoES3LOgejN+ 4W5TKb7jf1+SgF1pjwx2XlWb4J4GMf+C7LSPWeUtK9l2apNGwM0Hv/IqUfzg70D3VFBh5fGhw6Hr dyN1GD43zu5MOFe0cb+lJK3g0ZvPM8nIbmdK7esSuZMK+Yzr7a0N0Y4QbUcQryYEGwYaepuZsjrD ZDkT3Kr1AhcUiTOnNmMPnog2YYN6U3h7CYhG2DR1m8aa/QbyA+4kZG0SBGjzzRTKHk9EIgItdCNM fvohJ68SnV2FNORnXUUUqSFoUvyso3k8GzliyJPulCYPRrARYDNJT+ir9ezoGvA5g4zxgleqTnnV XhtaGfnUDrS0VUhbCWdvcEMZEKJkAUO7xsg1Xoq0oswSzzvKtKYCzZ5dtjtixacRLZNo7sheD1Za OeW9CSNhtwnibj9ZEjSx2io+98QsKhjRPkVHdEoFeV4ZSoeIQbEYpGiJ2Fsq028mXHDC5gVnCH/S Wx+khgSo+MCKHTJqBOP13GioWu2ICx0YIc/2HoCBEJ+XDpGGMPy7YALY8MMt1Ew3LtYH8CrrIaxk KuCTNww59KTrcI1ST/78vqa9IUT8Fn60t1b9IPc52uRTWT070uicD6WSril+FrMESQnUBq/O4BoV MGsCAjxWJIYO4g4Zwri8hPSZvh9WdT+GCfcshGybrFLENrILaYP8L1JSQSATTnIyXzD6GMIpC8nv IFCzSWwy4RswoYvilwvaFxw6FhKv0pB0mvgwnsbx+w4xn5l+7G+JFdtECPvobPYtY2bdUGb+mTcb VNezXfYrUI7snOZxJYOOd0ZQE5g1PzmSG8GkmE3IDWxl/Od3Wtby5ab/7hfboP+5QY8C4cyv596I DYHort2dEUjHiJIvq319734+ekpequJPouP7O90bEfXQ3E1qxwX1cMmOefOW0NZHrejYL8FkZmis UFFSYHJMs0QkbC26/5lXw08VAXRZ4TUTgX/4YiIfihhqnmL4RxEqnnpNi/appEJdpG/BsZiSkZDF qdE8g1DNV5FnFOMZs0FhIOiQQQa/32AQ4iYExoKDH1oA/aq+ETZiR0kpaCFwbCRgpoGIPPuc/vbR twBYeQLcxfRg9IYfksRECFzrd+hmbX1Y9Nu+nGCjTkQIHzFQy2eLYACmFaa6T3bDx0hSXPbu3rng /gvC4lQmZGLXVlGpP9X+00tDdIQeUKdlH8rNzSa4W0Pa1S5bZ8UWFV/zubHVoAw6n+/mr4KZTEBD tmdekJXSI13pgHURU611fqf/WFE+81WHIVPDy/eV3RLACCFnaMvecfoMyboHyJ5j7l/R5w6z1I39 dKMTGZjWQxCMyOmUJA7UzgQuhfTubRciKj+DkoDCktLKK9lBWx/hRHt9pUWtaFMiCTDYhTm2tkoa bg+fJ+MAphyWZOC/orAF0gyT71MIP26GpwO80IFG5PrY85HbxQulBF/U4HKaRvzIm7iSZGxHhumn +wkQEKW2TjwOCgV4rA5nbIIOcMZUanDcdE0PPj4m7L6m0xZ0koUnC13eT7Q59xLBYnGLoiq5HRgo 2mqS2c923kZ7yr5LLavMHaN5jT14XDABqJytJeHhGQYvXRGrjiEcR6CAQic6oIfIarOFw5NUtHAt QLx+uFo7AEe2R35PW5avfzEB2jnYYl4NtdPWCPL8BaOV/5S5KXwQXnzDbKmigEau1h/ZJR+Xoyto 9btA0gV2YZli+CmakhL3GwoArE3Cn5uUpwi86cpFNXR1Vcia33wAhia9fC58VnTF8R1FinwejEug TO6SOF8n/zFUlzrTBIninNdpTgqD2/dnRFfyi/PKCJcKokIk5lc70F+ouQvmt0yM1e7r8iR4aW7n FeLvQw/Q9u8thHRgP8dV4PWQ4SKXAgsQS3P0a8zLoUB2N1pB9zVmRPjY8tp/vugEe8J6Gq+nFTJZ f1ADZfv4czqMofunPqyGZgtbk1yzVcjniVbESfHhBtep4rPU48Q0hI/TOlCzAZZ3YoadjaWmp+hP pnshNf334yskUYg/NVzO/DHLDeISeAFxlbJO0K1h8ta9zoCPOuyRn/cYsjYCCusp0Lx4MLTTPHLK EQuY38gAVYKjjjGRto9mtoU/J7HWKZKdXDa21aAA9nk03HPoPG1tUqVQ+CguXIRMtOzf+OMNJCX4 ryRnGzNM4eAoTIqgsyJqPYwdUZubY8LUzzRW3wlmBoyVZOSRVW1+gvanW58oI1+4t2M3E2+B9VJg N5E6rJJbzsfk7l/pnucTFekJMxMfQOtrmNO7+e0uv8nsbNUM4o10kAGe0DCNQWs8ZSqqFbmG+1nD 6zTGrGXRnRjoLDaGyfKJ7EVsGWK9JOXoIcdwIAUv6yI0IhI79KJW2zniX75RpOknPu60rtaQsiR0 zh0I9mcVrUJWpiURdtDtQLiAD+lYw8wfQ6UK1t/j+ojZw1E9I63sS16jdgv9SoxFMf4Idun1gS8V Ed57ue2tjpf1MxIREmBNdZyEUuBCvqpV0d5MvBPz9jvu+n2dGKAmjoxDY85YLvBNyMn08YZQK4sH +onDeoY6+FE0skJZ1v+7VGvU5+TMPzlgR7p+3B6TPy+1QS54XrBQot60gh6Z+QmL/zpPfu5Zon5a cnu+XmW6SUbXCQ8ROHWbQEL3WZ755WJeckd6pbecrDp2G9t+uz3XqYp9die9bJVp33vq86TiS6dG MSU1N696+HVU5KB2QyDpjVFyJSX87oDr0isLlmZaMKzbGWF+l39+/SpbGeskkXkEtxDLx/7Cp7ie 6bMSPM1IgSGo4uQuwBwYCHB4m//gCmXGmVyRRHyVn8uxFKgRNH+r0BOVOYE/YMm03n5JkQqGqPSD krupYpSvPBa35EDtXnZlph0Blp8E0dDhvfhx6oK/Nl/iFYnBpb8OHmR1v7+TYIxI5UehSvFpjOyM AjtWRW4bC1v7MneI/DPWUeNSsbicsQe3ua3n8p+9gf/ls9sUX+PQrmiCHlfgaw6/4ns7I+o2wDt7 GEcRhW03Uxc/WAq8cR2eSh0zV9TR1aMyMG8eV9kwdZy74y/L4pcNYeqEMoeGNvJuAgFb0t/m3kXz wQSQSS+CAa8qhBcom5NJnm6kgxEqjSwDWMgNjodlmUknRQcokjWR56TRrzOihyKbbnEdrdUHCjiD u9etnjySMO8rbWrXkC/q9et8DDgZ6Mb+5Uz9oZASEIHfDpZMJi0h34/H3plVP9CDPswuDg4D65qW
  4. Hey guys i currently have a gaming website done in mostly php, however the page structure all goes off an html file which means every page has the same title and description etc. Is there any coding i can put in the page to make a different title <? include("./includes/egl_inc.php"); $out[body].=" <br> <center> <table width='90%' border='0' cellspacing='1' cellpadding='2' bgcolor='#000000'> <tr bgcolor='$config[altcolora]'> <td width='100%' background='$config[bg]' valign='center' align='center' colspan='5'><b>Custom Page</b></td> </tr> <tr bgcolor='$config[altcolorb]'> <td width='100%'valign='center' align='center' colspan='5'>This is a custom page. You may add anything you want here.</td> </tr> </table></center><br /><br /><br /><br />"; include("$config[html]"); ?> The coding above is just a template page for me to create new pages on the website and the config bit at the bottom i believe is the bit that tells each page to use the html.php file to layout the pages to look the same. What i am trying to achieve is a different title for the pages i make so that helps with seo etc so is there any coding i can put in this page to overwrite the title of the page from the html.php file? hope this makes sense
  5. I tried the above code in the $config place and the page displayed the same if that's what you mean. I have got a little closer with this whole thing though in my root folder /theme/neo-green which obviously contains the theme / template that my site uses there is a html.php file Now by the looks of things this is what is the pages appearance as every page you look at online conatains the coding from this file somewhere, I also spot at the very top of the page on line 1 is this <?php translate("./theme/neo-green/language/" . $config[language] . ".php"); ?> Also further down the document it has coding to include the header, footer, frontpage etc so it has got to be a way of how they are adding certain things from that page.
  6. No at first I thought it would because it doesn't seem to be a directory and doesn't act like one but yet it works for as long as you are making a file on the root folder. Basically when I bought the script for the website they added a page on the root folder called custompage.php this is a page that appears like all the others on the website but with my custom content in a section that I put there. So to make things easy to manage I wanted to put some pages inside files on the root folder and I have this same problem it is driving me round the bend spent a fortune on this and to be honest quite a few bits of things I have had to fix my self as wasn't running smoothly. Sometimes the staff are really good and fix things but other times seems they have no clue. I recently contacted them about this issue and tried to find out what the $config['html'] referred to so we can try and fix the issue, just told them I had a friend looking into it. This is the reply I got: Yeah, I couldn't work out any other way of achieving your aims without making it far more basic. Obviously, you could easily put each file on the root, as you know a simple file works there, but it would end up being complicated to manage. Just thought of another idea. In fact, I think I alluded to it before. The best way around this, for every reason, is to use Mysql and place all content in the actual database and not a file. For example, you could make a new table called 'articles' and create a small script with folder heirachy. basically, a mini-cms script. This is something on our development path but not for a year. I could almost do it myself, and the way I would do it would be to copy the code from the 'rules' part of the script and bastardize it to match the needs. i.e. you go into the admin panel and you have a duplicate section in there but instead of creating rules you create a page with a unique ID, give it a title and a description, which turns out to be the content of the page. The script would recreate the title on a MAIN page, with a link to the new page. The complicated bit is the Folder system. In the 'Article' section you would first need to create your Folder names (basicaly categories) into which you place this content. Now, I think its a dozen or so hours of work, probably costing quite a bit but I would be willing to subsidize it on the basis that we retain ownership rights and are able to sell it on to recoup our costs. I reckon we could sell it for $15 a time and maybe sell a dozen so it would be a bit tight... What is the most you would be willing to contribute towards it and i will get quote from a programmer and see if we can absorb it. Regards Jake Allen Head of Support So basically he want to do it another way he knows how and charge me for something else, I don't want this I want the way it is now to bloody work or at least a straight answer as to how the $config thing works. So I have replied asking them again how it works and declining to pay any more. Think I have been done over here and may have to accept defeat.
  7. This is what i am unclear with as the only config file i can find is in the route folder but it is a config.php file that just includes all my database details of where the script is installed. I will have a chat with the guys that built it again and try get some insight into what that file does exactly because there is more than meets the eye with this.
  8. Something is just not right here I tried this coding below: include "{$_SERVER['DOCUMENT_ROOT']}/$config[html]"; and one level up the page still appears 3-4 levels up same error as above with the warning
  9. Ok with that coding when I edit a file that is up one level from the root folder I get this when I visit the page on the website ./theme/neo-green/html.php This file above is the theme i use and alot of the rules and page content is in here However if i go up 3-4 levels which I need I get this message that i have had previously on when trying to go up the levels which looks like this Warning: main(./config.php) [function.main]: failed to open stream: No such file or directory in /websites/123reg/LinuxPackage23/lf/sf/lo/lfsfloorings.co.uk/public_html/DOA360/includes/globals.php on line 0 Thanks again
  10. Hi there thanks again I seem to have got this working using the above coding but again only on files that are at the root, The problem seems to lie with the below coding include("$config[html]"); this I think is referring to the config.php file found on the root which is just basically containing the information and configuration of my server, what I find baffling is that it is a php file and they have in the brackets html. So when ever I have files inside another folder this just doesn't work so is there a way i can put this coding in with the coding you suggested. What really frustrates me is the guys behind the software are doing bugger all to help and say they can't fatham it out after buying the damn thing it is driving me crazy all i want is to be able to have files in other folders to keep things neat and can't get it done. Thanks again CyberRobot for your help and patients I really appreciate it.
  11. Hi there this looks a lot better method, as I said above PHP I am still really new with so in the server section am i putting my server address then in document root putting the name of my root folder etc? Thanks so much for helping me out with this.
  12. Sorry mate can you emphasise on that a little php is really new to me so I struggle a little on the breakdowns at mo Thanks for your help.
  13. Hi guys i am in need of some serious help with some coding that i am having trouble with, it is to do with trying to get a page to appear correct when it is one level or more up from the main root folder and for some reason it just doesn't seem to apply to normal coding... Below is the standard custompage that is created to add new pages and the coding represents a file that is located on the main folder: <? include("./includes/egl_inc.php"); $out[body].=" <br> <center> <table width='90%' border='0' cellspacing='1' cellpadding='2' bgcolor='#000000'> <tr bgcolor='$config[altcolora]'> <td width='100%' background='$config[bg]' valign='center' align='center' colspan='5'><b>Custom Page</b></td> </tr> <tr bgcolor='$config[altcolorb]'> <td width='100%'valign='center' align='center' colspan='5'>This is a custom page. You may add anything you want here.</td> </tr> </table></center><br /><br /><br /><br />"; include("$config[html]"); ?> Below is the same file that i have saved in dreamweaver as one level up in a folder from the main root folder of the website, dreamweaver as you will already know kindly updates the links for you, howvever as you can see with the ../ fixture to go up a level i have tried these with ./ ../../ many different way i can think of and it just doesnt happen. <? include("../includes/egl_inc.php"); $out[body].=" <br> <center> <table width='90%' border='0' cellspacing='1' cellpadding='2' bgcolor='#000000'> <tr bgcolor='$config[altcolora]'> <td width='100%' background='$config[bg]' valign='center' align='center' colspan='5'><b>Custom Page</b></td> </tr> <tr bgcolor='$config[altcolorb]'> <td width='100%'valign='center' align='center' colspan='5'>This is a custom page. You may add anything you want here.</td> </tr> </table></center><br /><br /><br /><br />"; include("../$config[html]"); ?> I think that the problem lies with the config file at the end of the coding because when i have changed things around, don't ask which bit as i have done that much on it, that is the only error i get nothing about the above. The error messgae i am getting when i visit this page on the net is: Warning: main(./config.php) [function.main]: failed to open stream: No such file or directory in /websites/123reg/LinuxPackage23/lf/sf/lo/lfsfloorings.co.uk/public_html/DOA360/includes/globals.php on line 0 which again drives me crazy since there is no line 0 please help afte 3 weeks this is driving me insane. Thanks in advance to anyone willing to help
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.