Jump to content
xisto Community

jlhaslip

Members
  • Content Count

    6,070
  • Joined

  • Last visited

  • Days Won

    2

Everything posted by jlhaslip

  1. If that is the case, self-report the previous post and explia to the Admins what you are asking for. That would be the best method.
  2. If you can access the cpanel, list out the file that exist in the account root folder please.That is the folder cpanel takes you to on entry. There should be a public_html folder on that list.Please do that and send me a pm or post it on the topic.
  3. Don't know for certain whether this will work for you, but have you tried re-setting the wireless router by unplugging the power cord for thirty seconds or so?I have to do that to mine occasionally.
  4. Access to the log files can also be done through the cpanel. Can you sign-on to the cpanel by using the http://forums.xisto.com/no_longer_exists/ ? (change the your-sub-domain part)
  5. Can you get into your cpanel? It appears that you have a re-direct to the forum sub-domin in place. Take that off and see if you can use the regular url to get to your main page. If you deleted the index.htm(l) which is created on the account start-up, there should be a directory listing of the files in the public_html folder.Another thing: Have you deleted the /install/install.php file as per the standard phpbb instructions?
  6. Please post the URL to your account.Someone else might be able to sign on to the index page. That will help to narrow down the problem.*wait* Wrong topic. Sorry.Yes, you will have to wait for an admin to investigate the cpanel password. Mods do not have access to that information.
  7. Hey, those are excellent. I really like the whole lot of them.You will fit right into the gfx crowd here at the trap.Can't wait to see more of your works. Well done.
  8. From the description of php Auctions in the fantastico on the cpanel: I set up a default version here for you to look at. *edit* I have since deleted the auction script from my account. Sorry for any inconvenience, but I forgot it was linked from here... The admin Control panel lets you modify the colours and all that. This is an"out-of-the-box", "vanilla" install So, as soon as you get Hosted, you will be set...
  9. jlhaslip

    Hello

    Another of those Crazy Canucks. There aren't enough of them us around here. You will love the services here once you get hosted. Lots of stuff to play around with. Keeps you off the street, anyway. Look forward to reading your posts. The forum can't have too many knowledgeable members.
  10. The 10 or 30 cedit charge is to set up the account. Once the account is set up, the charge is one credit per day.There is no Monthly credit charge.
  11. jlhaslip

    Php/mysql

    Yes. php is readily available on your Xisto.com Hosting account. php version 4.4.2, I think. Go to your cpanel, left hand side and click the link next to php and it runs the script to show you the complete php configuration you have available for your use.
  12. Having your account hosted here at the Trap benefits by the presence of the google bots on the forum which indexes this forum and finds the links to your site and then go and index your site (probably) faster than if you were not hosted here. The bots actually avoid most free hosting services that do not have such forum activities as the trap.Also, once you get Hosted, and your site set up, be sure to use the cpanel site submission script to make them aware of your site. Another good way to attract attention is to include (be discrete) you site URL in your signature so that everytime you post, you are effectively advertising your site.In exchange, include a Xisto link button or banner on your site.
  13. Exactly what do you want the script / template to do with these criminals? Or do you want the criminals to write the script? Or do you want to track criminals?
  14. I know that you have the link in your siggy, but could you please edit the opening post and place another one in the main body of the posting? Makes it easier to find you.Thanks.
  15. No. It would be like trying to delete a phone call you have made. You have used the lines to transmit data. The bandwidth is measured as it leaves the server and counts against your limits the instant it is delivered to the 'net.
  16. I am nt certain about the dot net accounts. I will go register and set one up then I will be in a better position to advise you. Hang tough. I will be right back.
  17. You probably did in the Staff section. This makes it official and public.Another notch in the belt. Go, Opaque.
  18. In order to reduce your bandwidth, phpbb, and some other forums, allow you to minimize your bandwidth through enabling gzip compession, which is a mode of compressing the data for sending along the Internet. It will reduce your bandwidth Usage, but not your storage space. You can select to enable or disable gzip at any time as you see fit. The receiving computer will adjust for the gzip compression automatically. No problem.
  19. Phpbb is available by using the pre-installed scripts in the cpanel.I think it is phpbb version 2.0.17 or maybe 2.0.21 . Not certain about the actual version number, but it is a stable release.I timed-out using that link, so I don't know exactly what the link leads to. You will be able to Mod the phpbb forum anyway you wish, once you have the Hosting account.Subject to space and bandwidth limits, of course.When I first started, I found the smaller package was not large enough for two forums and a web-site. Bandwidth issues. So save your credits and go for the default (larger) package is my suggestion.
  20. I have tested the time adjustment and it appears to work okay. It is set for gmt-4 right now. I added some css and an if/else to 'shade' the rows so each week is clearly defined. It still connects to your sample calendar. http://forums.xisto.com/no_longer_exists/ to run the demo. <style type="text/css">body {background-color: #dddddd;font: 0.85em Arial,Helvetica,Verdana, sans-serif, serif;min-height: 100%;margin-left:auto;margin-right:auto;text-align:center;}table, tr, td { margin-left:auto; margin-right:auto; text-align:center;}a:link, a:visited { color: green; border-left: 5px solid #00ff00; font-weight: bold; display:block; }a:hover { background-color: #00dd66; color: #ffff00; border-left: 5px solid #ffff00; } // use the classes odd and even for the colors of the shaded rows.odd {background-color: #eeeeee; }.even {background-color: #cccccc; }</style><body><h4>Highlighting only certain days of the week</br>And alternate shading of rows</h4><?php//--my addition to Yahoo variables$yahoo = "http://calendar.mail.yahoo.com/Xisto.demo";//This gets today's date$date =time () + (60 * 60 * -4);//This puts the day, month, and year in seperate variables$day = date('d', $date) ;$month = date('m', $date) ;$year = date('Y', $date) ;// use the row variable to switch shading on each line$row = 2;//Here we generate the first day of the month$first_day = mktime(0,0,0,$month, 1, $year) ;//This gets us the month name$title = date('F', $first_day) ;//Here we find out what day of the week the first day of the month falls on$day_of_week = date('D', $first_day) ;//Once we know what day of the week it falls on, we know how many blank days occure before it.//If the first day of the week is a Sunday then it would be zeroswitch($day_of_week){case "Sun": $blank = 0; break;case "Mon": $blank = 1; break;case "Tue": $blank = 2; break;case "Wed": $blank = 3; break;case "Thu": $blank = 4; break;case "Fri": $blank = 5; break;case "Sat": $blank = 6; break;}//We then determine how many days are in the current month$days_in_month = cal_days_in_month(0, $month, $year) ;//Here we start building the table headsecho "<table border=1 width=250>";echo "<tr class=\"even\"><th colspan=7> $title $year </th></tr>";echo "<tr class=\"odd\"><td width=35 align=center>S</td><td width=35 align=center>M</td><td width=35 align=center>T</td><td width=35 align=center>W</td><td width=35 align=center>T</td><td width=35 align=center>F</td><td width=35 align=center>S</td></tr>";//This counts the days in the week, up to 7$day_count = 1;echo "<tr class=\"even\">";//first we take care of those blank dayswhile ( $blank > 0 ){echo "<td></td>\n";$blank = $blank-1;$day_count++;}//sets the first day of the month to 1$day_num = 1;//count up the days, untill we've done all of them in the monthwhile ( $day_num <= $days_in_month ){//--my addition to Yahoo variables 2$unixtime = mktime(0,0,0,$month,$day_num,$year);$shadeday = date('D' , $unixtime);if ($shadeday != "Sun" && $shadeday != "Sat") {echo "<td><a class='$class' target='_blank' href='$yahoo/?v=0&t=$unixtime'> $day_num </a></td>\n";}else {echo "<td> $day_num </td>\n";}$day_num++;$day_count++;//Make sure we start a new row every weekif ($day_count > 7){ //check to see what css class is being used and switch classes if ( $row == 1 ) { echo "</tr><tr class=\"even\">\n"; $row = 2; } else { echo "</tr><tr class= \"odd\">\n"; $row = 1; }$day_count = 1;}}//Finaly we finish out the table with some blank details if neededwhile ( $day_count >1 && $day_count <=7 ){echo "<td> </td>";$day_count++;}echo "</tr></table>";?></body>
  21. Oops. Just found one problem.Seems the date is tied to the server. It is 6:30 pm Mountain Daylight time on Sept 30th and when I clicked the calender demo link, it shows the October calender.
×
×
  • Create New...

Important Information

Terms of Use | Privacy Policy | Guidelines | 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.