Jump to content
xisto Community

jlhaslip

Members
  • Content Count

    6,070
  • Joined

  • Last visited

  • Days Won

    2

Everything posted by jlhaslip

  1. To eliminate the version of Joomla, go to your cpanel, find and click on the MySql Admin link, find the joomla database and click 'delete' beside the name. There will be a confirmation screen before the Database is actually deleted. THIS ACTION IS NOT REVERSIBLE. Also, while you are in the MySql screen, delete the db_user for the Joomla Database.Next, go back to the cpanel main page and select File Manager, then find the 'public_html' FOLDER ICON and click on that. Find the name of the folder and click on the NAME of the Folder, not the icon this time. Top right hand corner, chose to delete the folder and all the files.That will be the end of your Joomla installation.
  2. Topic is resolved.Please PM any moderator to continue this discussion. Until then, this topic is closed.
  3. they may have been doing something at the Server at the same time as you were checking your stats. it worked for me this morning and again just now, so I will mark the topic as resolved. PM a Mod to have it re-opened if required.
  4. The specs say you need Tomcat and Postgre Database services. I think we have those, but, to determine their availability, I would submit a request to support@xisto.com, Attn:Opaque
  5. Here is a link to a Template that is (x)html valid which is an example script found on the Xisto Annex site. http://forums.xisto.com/no_longer_exists/ and another Mock-up based on the same script, except with 'dummy' articles instead. http://forums.xisto.com/no_longer_exists/ It shows an Image Rollover effect only, but the Cutenews can also to articles, etc and there are Mods for Calendars, Archives, Contact forms, Comments and many other pre-written scripts that can be included into the Layout/Design you come up with. Let me know if you want to see the php file which drives the page. I can arrange for a copy to be sent to you or posted here.
  6. Yes, you can. It depends on which CMS you use to determine how to re-do the layout, but the essential thing is to place the php code into your design and don't miss any parts that matter, especially the stuff the CMS depends on, like security and access checks.Or, another way to go is to look at various softewares which are designed to be "dropped into" your own design. Cutenews comes to mind for that approach, but there are others.
  7. correct. terminate your account here: https://support.xisto.com/ and the normal Hosting Application is required for setting up the new one. Ten credits for the 1st package.
  8. Have you considered that you will need some html/css to do the split page thing? just happen to have this laying around waiting for a use for it. Thought it was a pretty cool page, so I kept it. Mix and match the div's you want to get horizontal/vertical half pages or quarter pages, or a combination as you see fit. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN""https://w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd; <html xmlns="https://w3.org/1999/xhtml/; xml:lang="en" lang="en"> <head> <title> An XHTML 1.0 Strict template </title> <meta http-equiv="content-type" content="text/html; charset=utf-8" /> <meta http-equiv="imagetoolbar" content="no" /> <meta http-equiv="content-style-type" content="text/css" /> <meta http-equiv="expires" content="Mon, 01 Jan 1995 00:01:01 CST" /> <meta http-equiv="keywords" content="keywords list here, comma seperated" /> <meta http-equiv="description" content="insert a description here." /> <meta http-equiv="reply-to" content="jlhaslip@yahoo.ca" /> <meta http-equiv="author" content="Jim Haslip" /> <meta http-equiv="reply-to" content="jlhaslip@yahoo.ca" /> <link rel="stylesheet" type="text/css" href="style_file_here.css" /> <style type="text/css"> /*<![CDATA[*/ * html { margin:0; padding:0;} html, body { height: 100%; } #wrapper { /* div you want to stretch */ min-height: 100%; } body { margin:0 auto; text-align:center; background-color: #000000; overflow:hidden;} #wrapper { margin: 0 auto; width:100%; background-color: transparent; } #wrapper_top { margin: 0 auto; width:100%; height: 50%; background-color: maroon; border-bottom: 3px solid #000080; position:absolute; top: 0; left: 0;} #wrapper_bottom{ margin: 0 auto; width:100%; height: 50%; background-color: green; border-right: 3px solid #000080; position:absolute; top:50%; left: 0;}#wrapper_right{ margin: 0 auto; width:50%; height: 100%; background-color: aqua; border-right: 3px solid #000080; position:absolute; top:0; left: 50%;} #wrapper_left{ margin: 0 auto; width:50%; height: 100%; background-color: orange; border-right: 3px solid #000080; position:absolute; top:0; left: 0;} #tl { margin: 0 auto; width:50%; height: 50%; background-color: red; position:absolute; top:0; left: 0; } #tr {margin: 0 auto; width:50%; height: 50%; background-color: white; position:absolute; top:0; left: 50%; } #bl { margin: 0 auto; width:50%; height: 50%; background-color: blue; position:absolute; top:50%; left: 0; } #br {margin: 0 auto; width:50%; height: 50%; background-color: yellow; position:absolute; top:50%; left: 50%; } #header { margin: 1em 0; text-align:center; background-color: transparent; } p { margin: 1em; padding:1em; text-align:left } /*]]>*/ </style><!--[if lte IE 6]> <style type="text/css"> /*<![CDATA[*/ #wrapper { height: 100%; } /*]]>*/ </style> <![endif]--> </head> <body> <div id="wrapper"> <!-- use these two for horizontal half pages <div id="wrapper_top">Top</div> <div id="wrapper_bottom">Bottom</div> --> <!-- use these two for vertical half pages <div id="wrapper_right">right</div> <div id="wrapper_left">left</div> --> <!-- use these four for quarter pages --> <div id="tl"> Top left </div> <div id="tr"> Top right </div> <div id="bl"> Bottom left </div> <div id="br"> Bottom right </div><!-- use these four for quarter pages --> <!-- use these two for top quarter pages <div id="tl">Top left</div> <div id="tr">Top right</div> --> <!-- use these two for bottom quarter pages <div id="bl">Bottom left</div> <div id="br">Bottom right</div> --> <!-- mix and match the left/right with top/bottom quarters for various combinations <div id="wrapper_top"></div> <div id="bl">Bottom left</div> <div id="br">Bottom right</div> --> <!-- mix and match the left/right with top/bottom quarters for various combinations <div id="wrapper_left"></div> <div id="tr">Top right</div> <div id="br">Bottom right</div> --> </div><!-- wrapper --> </body> </html> simply comment out the parts you don't want and remove comments from the parts you do want. Just thought I would see if this helps at all... It tests out just fine on FF2, validates as xhtml1 Strict and goes through the css validator, too. should be good to go for your project. I'll run it through Opera, IE6, IE7, Netscape and safari for Windows and report any problems I have. I really don't expect any, but you never know... *edit* Tests out just fine in all of them. border.html
  9. Can you access your cpanel?You are still showing as Hosted group, so it probably isn't that your account has changed. Try accessing the cpanel for your account and confirm that you have an index.html (or php) in your public_html folder.
  10. I found that I had too many friends on my Friends list, and it made my PM select box so full that I could not select from most of the list due to there being a limit on the size of the drop-down select box, so I have deleted all of my Friends list. Completely.I want to assure you that it was solely based on this problem with the PM select list. I will, of course, continue to consider each and all of the members of Xisto as friends. :PThank you for understanding.
  11. In the past, a long time ago, I did some running and found this fellow and his training Program to be quite a valuable resource. Follow his advise and you will be amazed at the results. I went from running 120 miles a week to about 60, yet improved my times, speed and endurance in the process. http://forums.xisto.com/no_longer_exists/ It has been about 15 years since I ran much, and I haven't inspected his web site to see what might have changed since I last used his approach, but the concept of a long, slow run every second week worked to increase the endurance level. Of course, you require the Base Level, too. He discusses all that on the site, I think. http://forums.xisto.com/no_longer_exists/ Good luck with whatever program you use.
  12. If you need some help, there is a CSS and an HTML section in the Computer Programming Forum here at the Trap. Lots of us will be willing to help you learn CSS and HTML. Simply post your questions and the code you have been using to test.
  13. Topic is resolved.Please PM any moderator to continue this discussion. Until then, this topic is closed.
  14. Topic is resolved.Please PM any moderator to continue this discussion. Until then, this topic is closed.
  15. read the Xisto readme and help files.The script runs on a regular basis, about once per hour subject to Server load.The secret to not having to wait for the Account to be un-suspended is to maintain an adequate supply of credits.
  16. I would suggest that you un-install the script, upload a current copy of the script, and install it without Fantastico. The current version will include the most recent updates and security fixes, plus, likely the most recently included features. Fantastico does not necessarily maintain the most current versions :PAs to the problem, there may be a issue finding the Database for the application. Not certain about Xisto - Web Hosting, but here at the trap, and I suspect the same will apply at CH, the db name is prefixed by the cpanel user name. ie: my databases are prefixed jlhaslip_dbname, and the db usernames, too, so check the configuration information when you re-install.
  17. That page seems to be incomplete.There is no Form tag, and so no "action" to be performed on submit.Have a look to see what's missing. This looks like a Template from a CMS , so maybe post a link??? Please and thanks.
  18. Put the security code script back together and then post the code, please.All we see by going to the page linked above is the html page, but we would need to see the server-side scripting.Thanks.PS: check the Tutorial section for email scripts. I have one that uses flat files without a database which you could have if you need it.
  19. From the Mozillazine site, seems there was another {similar} problem with PDF's and perhaps this link might help. I didn't read the suggested links, but it might be required to adjust the mime-type or file associations for the html files??? don't know for sure, but have a look here: http://forums.mozillazine.org/viewtopic.php?t=584702
  20. While not exactly the same as a 'notepad', I have the "Clippings" Extension for Firefox2 which allows you to save pieces of text into a context sensitive spot that appears when you right-click. simply highlight and copy the phrase. I find it quite handy for common bbcode phrases I use here at the trap and elsewhere.
  21. http://forums.xisto.com/no_longer_exists/ A design layout for AEF Forums that I have come up with. Any ideas about how to improve on it? All comments welcome. Thanks. Not all the links are set for the correct place yet. It isn't quite finished, just want to know if I am missing anything. Curious how it looks in different Browsers, etc, colours okay? Readable?
  22. Great news for you... all the best with the new program. sure hope it works...
  23. qupis.com - free with adsXisto - Web Hosting.com - paid, inexpensive Hosting
  24. qupis uses xpanel which is good, but doesn't offer the same set of features which cpanel on the trap does.qupis includes a small ad line on the bottom of your pages, which trap does notqupis does not require postingXisto users are more likely to be here on the Forum, so they benefit from the Knowledge Base here, more than the qupis usersXisto users ROCK!
  25. Start here: http://forums.xisto.com/topic/176-forum/
×
×
  • 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.