-
Content Count
6,070 -
Joined
-
Last visited
-
Days Won
2
Everything posted by jlhaslip
-
Installing Theme On Smf Forum Need help doing it
jlhaslip replied to AlphaOfDoom's topic in Web Hosting Support
Not sure about the particular method to Theme SMF, but most Forum Softwares can be uploaded into the public_html Folder as a zip file and 'extracted'. This saves from having to upload the individual files.Another method to quickly add a whole bunch of files is by using Firefox and the FireFTP extension. It will send entire Folders to the Cpanel at once, too. -
I assume you want to total the values for a certain person in that list. If so, look at the function DSUM() used in an Excel Database. The Database is a collection of rows and columns in the Excel worksheet. name value name name me 1 me 3 you 60you 20 me 1 you 20 DSUM(A1:B7,"value",D1:D2) DSUM(A1:B7,"value",G1:G2)me 1 you 20 I hope this helps. PM me with your email address if you would like a copy of this Excel file. It can not be attached to the Forum Posting. I have attached a pdf that might be easier to understand than the Forum posting. *file sent by email* db_sample_1.pdf
-
Too many images, Too many http requests, Too large of images, Too large of a collective mass being served. Run the site through this Analysis and you will see the problems. http://www.websiteoptimization.com/services/analyze/
-
Addon Domain [already Configured] Can't Be Created! Help! [resolved]
jlhaslip replied to Jimmy's topic in Web Hosting Support
I will attempt to contact an Admin on this. In the mean time, submit a tcket to https://support.xisto.com/ explaining the problem and link to this Topic. -
Request To Slice An Image Need Help Urgently
jlhaslip replied to Sudden's topic in Graphics, Design & Animation
Not sure if anyone will do it, but we will post it for you.Graphics requests usually require 10 posts...Have you taken a look at the Tutorial section? I am certain there is a Tutorial on slicing. I'd be surprised if there isn't, actually. -
Sean Taylor R.i.p Sig [denied]
jlhaslip replied to pbure0110's topic in Graphics, Design & Animation
Please read the pinned topic to see your requirement(s) in Request Free Sig Or Banner section. Click here In the mean time please improve your post quality and continue to contribute quality posts. -
Links, please... and which browser gets it right?
-
I can see the background images.using ff, rt-click > view bg images
-
Your site needs to conform to the Terms of Service and Acceptable Use Policy as per the Xisto Readme, and as long as it is a Legal activity (no warez, no porn, etc) you are free to do with the account as you see fit. Sell stuff, advertise things, or nothing at all. It is yours.
-
Wrongly Suspended. [resolved] Self explanitory.
jlhaslip replied to Damen's topic in Web Hosting Support
submit a Support request to https://support.xisto.com/ being certain to link to this posting, describe the problem, provide your Cpanel ID, the name of you domain, and all that good stuff. -
Welcome (back) to the Xisto.Good to see you again. Make a couple of good quality posts and then apply for hosting.See you around.
-
The Subdomain Of The Subdomain Non-accessible? [resolved]
jlhaslip replied to ZaM0's topic in Web Hosting Support
Try it and see if that fixes the problem (I am thinking that it will). Should that fail, submit a ticket to https://support.xisto.com/. -
I Finally Got My Site Done! Yay
jlhaslip replied to KansukeKojima's topic in Websites and Web Designing
All of the above, plus:The header Logo needs to have a border the same style as the other div's to maintain a consistent look to the page.I like the simplicity of your page. Nice and clean layout. -
My Idea - How To Send People Flocking To Your Website
jlhaslip replied to sanjay0828's topic in Science and Technology
Biggest problem I see with your method is the Visitors were interested in the Movie, but what connection exists between the Movie and your site content? Do they return to your site for the actual content? or do you simply intend for this to bump your numbers? Is Unique Visitors a valid count for the worth and placement of your site? -
Here is a link to a wikipedia article outlining the features and requirements of many freeware and paid Forum softwares: http://forums.xisto.com/no_longer_exists/
-
Account Suspended... (Seems like this is happening a lot)
jlhaslip replied to AlphaOfDoom's topic in Web Hosting Support
Submit a ticket to https://support.xisto.com/ -
Google php pagination script here is a link to Code Walkers. They have pretty solid scripts. http://www.codewalkers.com/c/a/Link-Farm-Code/Pagination/
-
I haven't tested the other methods, but the distinction seems to be about the use of single or double quotes and the use of escape characters in the echo command. I will summarize what i know and hope that it becomes clear to you. When you echo a line using double quotes, the line gets parsed by the php parsing engine, and special characters may need to be escaped so the parser ignores them as command characters. Using single quotes, the same characters do not require escaping since single quoted echo lines do not get parsed. There are often several methods available for the echo statement. If you have a variable to echo, and want it parsed, use double quotes. Otherwise, single quotes are faster because the content is not parsed. Still confused? Me too... try this code: <?php$var1 = "variable one for printing here";echo $var1 . '<br />';echo '$var1' . ' with single quotes<br />';echo "$var1" . '<br />';echo $var1 . " with double quotes<br />";?>
-
I have seen Image preloaders, but never seen page preloaders like you request information about.Best I could suggest is to not use Tables since they are slower to load and render on the client's browser. Use div's for layout and External CSS files for styling will be faster loading and rendering. Also, use fewer Images will load faster, too.