Nov 22, 2009
Pages: 1, 2

Cms/upload Best Practice? - New to using content management, seeking advice.

free web hosting

Read Latest Entries..: (Post #12) by kudmus on Sep 29 2008, 04:21 PM.
QUOTE(nitish @ Aug 27 2008, 01:50 PM) Sooo many questions!!! Alright, you are on perfect track on your setup with XAMPP! Although if I was in your place I would use PHP Fusion for beginners CMS. Its perfect, stable ( v7), Amazingly fast...I found Joomla easier than this thing. To begin with I failed to change the site name. Everything is hidden and very hard for a beginner to customize. I must say most sites made in PHP-fusion are simple and very beautiful....
read more.
Read the FIRST post of this Topic. - Express your Opinion! Contribute Knowledge :-).

Open Discussion > MODERATED AREA > Trapper's Secret HideOut

Cms/upload Best Practice? - New to using content management, seeking advice.

travstatesmen
Other than my aborted attempt at setting up a site on my previous free web host, this will be the first time that I have set up a dynamic website with an SQL back end. I came from the Internet stone-age of static sites with lots of graphics and text, but little or no interactivity. I would really appreciate some advice on how best to do this.

I have selected the free Content Management System called Lanius CMS, which is made by the makers of the more well-known package called Drake CMS. Also, at the advice of many of the denizens of the Trap17 forums, I have downloaded and installed XAMPP as a localhost for testing purposes. What I would like to know is this: should I upload my HTML and php documents directly from my localhost to my Trap17 hosting account? It seems to me that, with a website controlled by a CMS, the htdocs files are only the structure and skeleton of the website, and the actual content is stored in the database. Am I right? Therefore I can use the htdocs files from my localhost as the source for my FTP upload sessions when I am uploading the Lanius CMS files to my new site, right? Also, I have installed several copies of Truppentool, the SQL-powered troop statistics tool for Travian players, on my localhost. Should I also use these files as the source of my uploads of Truppentool to my Trap17 account? Alternatively, should I keep everything separate, and have two copies of everything on my local hard disk, one copy that I am playing with in my XAMPP localhost, and one copy that I use as source files for the upload to my Trap17 account? Either way, I know that I will need to set up the SQL databases independently. Any advice?

 

 

 


Comment/Reply (w/o sign-up)

nitish
Sooo many questions!!! Alright, you are on perfect track on your setup with XAMPP! Although if I was in your place I would use PHP Fusion for beginners CMS. Its perfect, stable ( v7), Amazingly fast...

First you should copy the localhost files of your cms to the server htdocs folder and the other files of Truppentool. Which ftp program are you using. Filezilla Ftp uploader would be fine.

You would have better numbered your questions. Anyway I will give steps for your problem. Now for the database. You can use the PHPMy Admin. You can find in XAMPP default index.
1) select the name of database of your cms which you initially gave at the beginning.
2) Then choose export. There at the bottom, choose save to file checkbox.
3) Now save the text file which it produces to any directory.
4) Now in your trap17 cpanel, create the database (any name, I will give reason for it soon).
5) Now import the saved sql file form your computer. You will see that the database name has the format "username_yourdbname".
6) Now go to your server cms folder and find something like config.php. Open it and change your database details. Thats it.

When you're playing with your locahost cms, my opinion would be to have another setup in your computer for that. For the cms on server, the htdocs folder contents won't change a lot (mostly images would be added). So at beginning one backup would be fine and then as per changes. And for database, yo
u can take its backup almost all the time you can think . laugh.gif . Anyway, weekly backup would suffice.

For databse setup check this article by OpaQue

 

 

 


Comment/Reply (w/o sign-up)

rvalkass
The files should not be any different, so it shouldn't matter. As you rightly say, most of the data is stored in the database and retrieved dynamically as the pages are loaded. However, with all CMS there will be a configuration file somewhere which contains important settings which cannot be stored in the database (like information for connecting to the database). These files will differ from your local copy and the copy on your hosting account, so will need to be maintained separately. If you are confident manually editing the configuration file in a text editor, just take a copy of it as it is, change it to fit your hosting account, and upload that copy with the rest of the files.

I have a sum total of zero experience with Truppentool, but I assume it is similar - there will be a configuration file which needs to be changed to reflect server-specific settings.

Comment/Reply (w/o sign-up)

Saint_Michael
QUOTE
I have selected the free Content Management System called Lanius CMS, which is made by the makers of the more well-known package called Drake CMS. Also, at the advice of many of the denizens of the Trap17 forums, I have downloaded and installed XAMPP as a localhost for testing purposes. What I would like to know is this: should I upload my HTML and php documents directly from my localhost to my Trap17 hosting account?
Well to be quite honest with the purpose of XAMMP is of course to test, however because your using a CMS you can already install that on to your hosting account . So you don't really have to mess around with that as so much individual files that are running php and or MySQL and of course following on what rvalkass said about the configuration file will be important because it connects everything together. Configuration files can be a liitle finicky if all the information is not right and so if you plan to do major edits to the CMS like extensions or modifications, you want to make sure you have a notepad listing what you did and to what. That way when your ready to move to the actual hosting site you can recreate what you did or just to see what would happen upload the individual files and see what happens, thus the reason to have a back up of the original file just in case something goes wrong and you need to put it back in its original state.


QUOTE
It seems to me that, with a website controlled by a CMS, the htdocs files are only the structure and skeleton of the website, and the actual content is stored in the database. Am I right?


You are right, however, I would try to keep the connect to a minimum on your testing server or rather don't upload those databases to your trap account because I am not to sure what upload local databases to your hosting account will do. So basically all your doing with the testing server is to make sure everything you want to works together and then do a surgical graft on to the files into your hosting account.


QUOTE
Therefore I can use the htdocs files from my localhost as the source for my FTP upload sessions when I am uploading the Lanius CMS files to my new site, right? Also, I have installed several copies of Truppentool, the SQL-powered troop statistics tool for Travian players, on my localhost. Should I also use these files as the source of my uploads of Truppentool to my Trap17 account?
Yes you can use the localhost folder as your source for ftp, but like I mention in my earlier statements I would be cautious of what you upload from your testing server to your actual hosting account and so basically the process you want to take is if ir is successful on the testing server go right ahead and test it on your actual account because the results could be different and so if you do a mass upload of everything and stop producing errors all over the place you will have a hard time figuring out where it is coming from.

As for Truppentool, basically you want to have a fresh copy installed on your hosting account because of how fragile they can be in terms of the url of your website and so you might produce errors as well. So basically your doing twice the workload but the benefits are great because you will be able to do it a lot faster because you know what you want and you can do it faster.


QUOTE
Alternatively, should I keep everything separate, and have two copies of everything on my local hard disk, one copy that I am playing with in my XAMPP localhost, and one copy that I use as source files for the upload to my Trap17 account? Either way, I know that I will need to set up the SQL databases independently. Any advice?


Usually it is good practice to have a copy of the original files because if you start producing some bad errors you can just replace the file just like that and then try again. Now when it comes to moving files from your testing folder to your hosting, you want to make sure you have a copy of the file your replacing just in case it errors out or the layout gets scrambled.

To be quite honest I haven't used XAMPP in years but usually when it comes to MySQL they are behind in the current version and so you want to make sure that MySQL from the hosting company is backwards capable. Then that way you won't produce any MySQL related problems, thus the reason you want to start fresh on the MySQL so not to run into any problems of inporting from your local server to your hosting account. I do believe trap has support for both MySQL 4 and MySQL and the same goes for php as well.

So yeah with my post is say is that you be doing twice the workload, but usually when your ready to set everything up on your hosting account it will go by a bit quicker.

Comment/Reply (w/o sign-up)

travstatesmen
Thanks Saint_Michael, rvalkass, and nitish, there's a lot of great advice there for me to read through. From what I have read so far, I have got the idea that, while I can use the localhost files as the source files for my FTP uploads to my Trap17 hosting account, the necessary changes to the configuration file(s) would probably make it more straightforward if I kept the localhost files just for testing purposes. What I will do therefore is have three copies of my files. The first copy will be the extracted source files for my packages, such as Lanius, Truppentool, phpBB3, etc. I'll burn them all to a CD-R or a DVD (depending on the resulting size) and keep them handy. The second copy will be a direct copy of those source files, which I will use as my FTP upload source files for the Trap17 web hosted site. The third copy will be made from the second copy, and will go into my XAMPP folders under htdocs. I'll set up a batch file to copy everything from the second set to the third set, for when I stuff up the localhost copy during testing. I won't copy anything out of the XAMPP copy, but will use it as a test bed, and will duplicate the effort expended (on the XAMPP copy of the files) onto the FTP source files if I want to preserve anything from the XAMPP testing of my local website. This way I can keep my XAMPP files as an isolated testing area, which seems to be what Saint_Michael says here...

QUOTE(Saint_Michael @ Aug 28 2008, 05:46 PM) *
...I would be cautious of what you upload from your testing server to your actual hosting account and so basically the process you want to take is if ir is successful on the testing server go right ahead and test it on your actual account...

Another idea that I had was relating to the content. It was mentioned in this thread about not copying the content from the localhost database to the Trap17 hosted site. I understand that, thanks for the tip. What I would like to know though is the feasibility of going back the other way: copying the content from the Trap17 hosted database to my localhost database?! Is this do-able? This would enhance my testing experience on the localhost installation, as it gives me some real data to play with. Any ideas or comments?

Comment/Reply (w/o sign-up)

mm22
QUOTE(travstatesmen @ Aug 28 2008, 03:23 PM) *
Another idea that I had was relating to the content. It was mentioned in this thread about not copying the content from the localhost database to the Trap17 hosted site. I understand that, thanks for the tip. What I would like to know though is the feasibility of going back the other way: copying the content from the Trap17 hosted database to my localhost database?! Is this do-able? This would enhance my testing experience on the localhost installation, as it gives me some real data to play with. Any ideas or comments?


I believe you can export your online database by using the same phpAdmin tool mentioned above for exporting your localhost database if that's what you're asking... the tool should be installed as default on trap17 server wink.gif

Comment/Reply (w/o sign-up)

rvalkass
QUOTE(travstatesmen @ Aug 28 2008, 08:23 AM) *
What I would like to know though is the feasibility of going back the other way: copying the content from the Trap17 hosted database to my localhost database?! Is this do-able? This would enhance my testing experience on the localhost installation, as it gives me some real data to play with. Any ideas or comments?


This would be no problem whatsoever. Most CMS software have an inbuilt backup function, which is normally preferable to a manual backup. Take a look through the admin panel for a way to download a backup file, and save that to your PC. Then, on your local copy of the CMS, restore that backup file, and all the data from your Trap17 site will appear on your local site.

If there is no in-built backup system in the software you are using (shame on the developers!) then you can repeat the process yourself. It does exactly the same, but requires more mouse clicks tongue.gif
  1. Open your Trap17 cPanel
  2. Log in with your cPanel login details
  3. Scroll down to the Database section, and click on the phpMyAdmin logo
  4. On the left hand side, click the relevant database you want to back up
  5. At the top of the screen, hit the Export tab
  6. Tick "Add DROP TABLE / VIEW / PROCEDURE / FUNCTION"
  7. Tick "Save as file"
  8. Hit Go, and save the file somewhere on your hard drive
  9. Then open up phpMyAdmin on your local machine (download and install phpMyAdmin if you haven't already)
  10. Click the database you're using on the left
  11. Click the Import tab this time
  12. Choose the file and click Go, and your data will be added to your local database

If you need help with those instructions, or downloading/setting up phpMyAdmin then feel free to ask. I seem to remember phpMyAdmin on Windows can be a little bit of a pain to initially configure sometimes (another win for Linux!) but that may have changed.

Comment/Reply (w/o sign-up)

Saint_Michael
QUOTE(travstatesmen @ Aug 28 2008, 03:23 AM) *
Thanks Saint_Michael, rvalkass, and nitish, there's a lot of great advice there for me to read through. From what I have read so far, I have got the idea that, while I can use the localhost files as the source files for my FTP uploads to my Trap17 hosting account, the necessary changes to the configuration file(s) would probably make it more straightforward if I kept the localhost files just for testing purposes. What I will do therefore is have three copies of my files. The first copy will be the extracted source files for my packages, such as Lanius, Truppentool, phpBB3, etc.

I'll burn them all to a CD-R or a DVD (depending on the resulting size) and keep them handy. The second copy will be a direct copy of those source files, which I will use as my FTP upload source files for the Trap17 web hosted site. The third copy will be made from the second copy, and will go into my XAMPP folders under htdocs. I'll set up a batch file to copy everything from the second set to the third set, for when I stuff up the localhost copy during testing.

I won't copy anything out of the XAMPP copy, but will use it as a test bed, and will duplicate the effort expended (on the XAMPP copy of the files) onto the FTP source files if I want to preserve anything from the XAMPP testing of my local website. This way I can keep my XAMPP files as an isolated testing area, which seems to be what Saint_Michael says here...

Another idea that I had was relating to the content. It was mentioned in this thread about not copying the content from the localhost database to the Trap17 hosted site. I understand that, thanks for the tip. What I would like to know though is the feasibility of going back the other way: copying the content from the Trap17 hosted database to my localhost database?! Is this do-able? This would enhance my testing experience on the localhost installation, as it gives me some real data to play with. Any ideas or comments?


Although burning the folders onto a CD is a smart thing just to save space on the desktop not really needed, heck get a flash drive and save them on there along with a back up with your website. Other then that your game plan sounds good, but just make sure you know which is which or you will overwrite the wrong file and might have to start over again. Yes you can export your DB's from your trap hosting account and be able to edit them within XAMMP however because MySQL databases with have the trap17 domain name running through them you would have to edit each instance and put the local host domain 127.0.0 in them to make them work. Although I am not to sure if that would really make a difference but I guess you can find out if you can get the database to work on your computer.


QUOTE(mm22 @ Aug 28 2008, 04:06 AM) *
I believe you can export your online database by using the same phpAdmin tool mentioned above for exporting your localhost database if that's what you're asking... the tool should be installed as default on trap17 server wink.gif


Yes you export them but being able to get them to work I am not aware of the process to make that work or not.


Comment/Reply (w/o sign-up)

innosia
if cms like joomla, can we use it in our hosted site without uploading from computer? like the common features just click and it will copy to our site by itself? is there such features?

Comment/Reply (w/o sign-up)

travstatesmen
Thanks Saint_Michael, I will try downloading my Trap17 database for my CMS later, (once I have everything installed and some content uploaded), then I'll see if it works on the locahost mySQL database. I'll post my results back here, and if I can perfect this I might even write a tute about it, if no-one has done so already.

Currently I am uploading my files from the Upload directory on my hard drive up to my Trap17 public_html folder in preparation to start running the installation routines. Then I will create the mySQL databases on my Trap17 account using cPanel, and then run the installation routines for each package that will be on my site, including Lanius CMS v0.5.0, phpBB v3.0.2, phpwiki v1.3.14, and Truppentool v3.1.2. Once everything is installed, I'll start looking at setting up my external hosting sites, such as a Photobucket account for hosting my site's images, a Box.net account for hosting my FTP download files, etc. Once that is all set up, I can start putting my content into the CMS package, and then try this backup idea, copying the remote database information back to my localhost. Any advice that people can give me on any of these subjects I would appreciate it.

Comment/Reply (w/o sign-up)

Latest Entries

kudmus
QUOTE(nitish @ Aug 27 2008, 01:50 PM) *
Sooo many questions!!! Alright, you are on perfect track on your setup with XAMPP! Although if I was in your place I would use PHP Fusion for beginners CMS. Its perfect, stable ( v7), Amazingly fast...


I found Joomla easier than this thing. To begin with I failed to change the site name. Everything is hidden and very hard for a beginner to customize. I must say most sites made in PHP-fusion are simple and very beautiful.

Comment/Reply (w/o sign-up)

jlhaslip
Double the silverstripe recommended limit...

64 Megs is the memory_limit set in the php_info in the Account I have. Php Server is common to all the Hosted Accounts, so there is lots to work with.

Comment/Reply (w/o sign-up)



Got an Opinion! Express your Views! (no registration):-
Add your Reply/ Opinion/ Views/ Comments/ Suggestion/ Questions/ Queries etc.
Posts with decent grammar & English will be accepted and please refrain from profanities.
For asking a Question, We recommend you to sign-up (for free) so that you can track the topic easily.

Nature of your Post*: Opinion/ Reply/ Comments
Question/Query
Feedback to us.
       
Name   Email
Title/Question*

This textarea will convert to Rich-Text automatically (IE, Firefox, Chrome)

Pages: 1, 2
Similar Topics

Keywords : cms, upload, practice, content, management, seeking, advice,

  1. Regarding Content Language...
    (6)
  2. Sections And Content
    Help please? (3)
    I do not know how to edit the content and add more pages to my website. Can somebody please help me?....
  3. Content Management System (cms)
    What CMS to choose... (13)
    I just looked at my remaing credits and it was only 1, so i remembered what I needed to find out. I
    need a CMS for my website! I have tried lots of CMS(s) and have had very little luck. I would like
    to know some CMS(s) that you would reccommend me to use. Some I have tried: CT2 CMS 2.0 beta
    Joomla EazyPortal and some others, I can't remember It needs the following: Themes avaliable
    Able to be hosted here Business Looking (ie; very formal) No Ad(s) Free for non-commercial use Forum
    Registration for members Administrator Please post some CMs(s) names in this ....
  4. Site Management Tools: Look Before You Leap!
    The danger of using Index Manager and other .htaccess altering tools.. (3)
    A few minutes ago I was looking at site management tools section in my Control Panel. The tool
    "Index Manager" caught my eye. If I used it, then I wouldn't need to create placeholder pages in
    my folders with no index pages /smile.gif" style="vertical-align:middle" emoid=":)" border="0"
    alt="smile.gif" /> What I had forgotten is that I already had an .htaccess file in my site.
    Needless to say, enabling this option took down my whole site instantly and displayed an "Internal
    Server Error" message. How stupid of me! /wacko.gif" style="vertical-align:middle" emoid=....
  5. Community/forum Management Systems
    Need help (8)
    Hey, I'm currently running Joomla and PhPBB (through a bridge I found online) I'm really not
    satisfied with it though...The login/registration process is very buggy (not technically bugged
    since its supposed to work that way) but is very unreliable. I was wondering if anybody could
    reccomend a good Forum/Portal or CMS combo I can use to post news/picture files/etc on a main
    page/section of the website, and have integrated forums that run smoothly login/registration wise
    with a minimum upkeep time. Any input is very valuable, anything is better than what I'm....
  6. Trap17 Management : Free Website Suspended Due To Abuse
    (3)
    I can't access my site anymore , when I tried to do that , the suspended warning page showed up
    even I didn't do any bad things there. Please help me as quick as you can , thank you
    /sad.gif" style="vertical-align:middle" emoid=":(" border="0" alt="sad.gif" /> (I have around 10
    credits at Trap17 now and haven't beed dropped to lower than 4 so why ?)....
  7. I Need Your Advice About Rules And Ban Listings
    (3)
    I have done with the Rules and Ban Listings for my site after spending the whole three days to
    compile them , I need your advice about them , thanks a lot : The rules Please read the
    following rules before registering. Not doing so will get you banned. LIABILITY While the
    administrators and moderators of these boards will attempt to remove or edit any generally
    objectionable material as quickly as possible, it is impossible to review every message. Therefore
    you acknowledge that all posts made to these boards express the views and opinions of the author and
    not the....
  8. How Do You Check Mysql Info, And Act According To It's Content?
    (6)
    As part of a web-game on my site, I have a php form that requires people to enter their username,
    and information about the characters they want to have in the game. All this information is stored
    into a MySQL table. I want the players to be able to visit a page where every character they have
    registered with their username can be seen. My question is simply, how can I check the values of
    the MySQL data, and act accordingly? What I need to do is check for a Username and a character
    number, and if it finds it, takes the data in that part and acts on it, eg. by showing th....
  9. Advice For The Webdesigner And Admin
    Important advice. (3)
    I saw a error in the trap17.com home page which is the fact that in the following graphic, you can
    see that is offering 50 to 250 mb of hard drive space, and the other is offering 150 mb for the
    package 2 of the free hosting of trap17. I must say this because lots of members can see this, and
    then they register, and when they see that they can't get more hard drive space, they will feel
    "bad" about your good service. Here is the screenshot: ....
  10. Report Button Doesn't Work
    Advice admin to act imediatly. (3)
    When i try to submit a report of a topic/post, i can't do it because it shows up a page that has
    nothing to do with it. I advice a moderator/admin to act now, it is not the first time i try to
    report a topic/post, and this has beeing going for days now, i don't know if you know that, but
    i though it was better to say this in a topic since i can't report anything due to the problem i
    have described. ....
  11. New Site Help With Some Coding
    Need a little bit of advice (9)
    heya guys i have just started doing a website for my friend, and what i would like to do is have the
    main content area in a scrolling box, which is transparent, linked to a text file? do you get my
    drift, how could i do this or could someone make one that i can put into what i have already? the
    box need to be transparent! tahnks for the all help and i hope to hear some good results form this
    that can be used?! oww yeah by the way i only have dreamweaver at the minute as i have lost my
    frontpage dics and i just did a full format! any help will be most appreciated!....
  12. Content Box -- Technical Difficulties
    (4)
    Okay guys, I need a bit of help with my new template. I'm kind of a noob at coding, so right now
    I'm using dreamweaver to help me along, but anyway, I've developed this template: which
    you can see in use (somewhat), here: http://www.plusone.trap17.com/dev2/index.html and I'm
    having a bit of trouble with the content box. I want the content box to automatically stretch to fit
    whatever is in it, (and have the navigation box stay unstretched) which I've managed to do with
    some tricky slicing, but the problem is that with the stretching, I seem to h....
  13. Help With Installing A Content Management System.
    Help please. (9)
    I want to install a CMS, but the problem is taht all the ones on Fantastico like PHPNuke and Xoops,
    say that it can't start installing iot because the directory Public_html already exists and need
    to be manually removed. Last time I did this. Nothing worked. Also, I could install this as an
    index directory. But would I label it html? Php? I am totally lost. Could someone give me a
    complete guide on how to install these. either way? On what I need to do istall it on either the
    main directory, or on a sub one with what extension? Thanks in advance. Moved to....
  14. Phpnuke Registration Problem
    CMS : Content Management Software (4)
    when i have people register into my phpnuke website they are sent a message throu email to activate
    their account...well it doesnt seem to send. i dont know if we have to wait longer or its just
    something wrong in my administration panel. Ive had a problem lke this before but email was being
    sent...just had wrong urls for the user to click on to activate their account n i fixed it on m
    admin panel..so hopefully i can fix this problem on my admin panel aswell and another thing..i cant
    seem to b able to use html on my content, is that also something i need to fix somewher....
  15. Would Wanna Register Domain
    gave me some advice (8)
    /tongue.gif" style="vertical-align:middle" emoid=":P" border="0" alt="tongue.gif" /> , happy new
    year~~... not coming here for a long time.i'm missing you so much . /laugh.gif"
    style="vertical-align:middle" emoid=":lol:" border="0" alt="laugh.gif" /> and ps: why the chat box
    taken away? i'm just will building a site now,a more stable site with tld,and i just thinking
    of a nice domain had been dropped.and plz gave me some advice,where should i go for a cheap name?and
    if i haven't money on paypal,how i would do that? thank you, yours....
  16. Space Management
    How is the space managed? (3)
    Hi all!, i have a doubt what folders are counted in order to get the disk space used by my acount?.
    I have just some files they are like 8 mgs and it marks me i am using 17 mgs, do the email and
    database spaces are also counted? thanx in advance....
  17. Content Manager
    (8)
    I need a content manager for my site and i need one where my site can be easily made but can put
    some html here and there but making it still lool professional. What do you guys reccomend? Thanks.
    /biggrin.gif' border='0' style='vertical-align:middle' alt='biggrin.gif' />
    Love,
    jae-unit....
  18. Site Content Question
    A question about site contents. (1)
    okay i was reviewing the TOS and i wasnt sure if some of the rules were for THIS forum or any forum
    that is created on a trap17 host. A user on my forum had an avatar with sexually explicit material
    on it. I removed it thinking the TOS didnt allow it. The user challenged me and asked for the link
    to the trap17.com TOS. I posted the link for him so he could read it and review it. Upon reading it,
    he brought to my attention that the TOS could be for the trap17.com forum and not forums created on
    the host. What say you, oh wise ones /biggrin.gif' border='0' style='ver....
  19. Is This Site Content Illegal?
    Complaint Against Trap17 Hosted site. (14)
    QUOTE "Web sites promoting, making available or otherwise contributing to software piracy,
    hacking, spamming, ..." www.cokemusix.trap17.com's disclaimer it says it is not related to
    hacking, but if you go to its download section, you will find programs/filter that mess with the
    game's packet, and way of playing it So you guys can understand, I'll put some examples:
    HHincatalog.zip - This specific filter let's you buy stuffs that are NOT visible by the game.
    That means he is making visible stuffs that are NOT supposed to be bought. buysharktales.zi....
  20. Seeking Victims....er, I Mean Volunteers
    (4)
    Hi: I have an external java script that I have offered to somebody to use on their web site. It is
    a histologyvocabulary word, updated every single day. I want to make sure that my script works
    properly. Is there anybody out there who is willing to test it on their page and give me
    feedback? Specifically, recommendations for improvement or let me know the link of the page you put
    it on, so I can see how it works? Just copy on paste this code:
    src="http://www.histology-world.com/vocabulary/globalvocabulary.js"> Just as a side note, this
    is a pretty esot....
  21. New Desing
    take a look and give advice please (-1)
  22. Advice on Folders?
    (6)
    Ok, I've been messing around a bit with my space today, uploading scripts and what not but what
    I'm not 100% on is where do I put all my content, layouts, everything basically? Does it all go
    in Public_HTML? Will it not work in the root directory? And if it goes in Public_HTML will people
    be able to gain access to scripts and such? Thx in advance.....

    1. Looking for cms, upload, practice, content, management, seeking, advice,

Searching Video's for cms, upload, practice, content, management, seeking, advice,
See Also,
advertisement


Cms/upload Best Practice? - New to using content management, seeking advice.

Affordable Web Hosting, Low cost Web Hosting - ComputingHost.com