|
ANSWERS:
| Subject: emAlbum |
I am using emAlbum Pro as my photo album. How do I create galleries and upload pictures?
The easiest way to upload pictures is to use FTP. When you signed up with your
hosting company you should have recived this information.
- If using a web browser, type in the URL box ftp://yourftpusername:ypurftppassword@yourdomain.com (i.e. ftp://johndoe:123456@johnsplace.com.
- If you are using an FTP client such as WSFTP_PRO
or CUTE FTP follow the instruction wizard fronm the software to connect to your site.
- Once you have the site open in a client or a browser, navigate to a folder in the root directory calld emAlbum.
- Open the emAlbum folder and find a folder called albums.
- Open the albums folder. Here you can create a new folder, this will become a gallery on your live site, so name it accordingly.
- After creating your gallery open that folder, you can now upload your FULL SIZE pictures to the folder you created.
- These images will now be resized to the preset size set in the admin of emAlbum automaticaly on first visit to the site..
|
| Subject: General |
What is WYSIWYG?
WYSIWYG or WYSIWYG editor is used mostly in content management systems. The acronym stands for what you see is what you get. In other words. what you type in the WYSIWYG box is what will appear on your website.
|
| Subject: osCommerce |
How do I create a category in my osCommerce store?
To create a category in osCommerce:
- Open up the admin section to by going to http://www.yourdomain.com/admin. If your Admin is password protected you will need a username and password to access it.
- Once in the Admin section, click on the Catalog link on the left hand side.
- Under the categories, click on Categories / Products
- On the right hand side of the window, select new category.
- Enter the category information on the right side of the screen.
- You may choose to enter a sort order. This is the order in which your categories will display on the live site. the lower the number the soon it will display. i.e. 1 will display before 2
- Click the save button
How do I add a product into my osCommerce store?
To add products to your osCommerce store:
- Open up the admin section to by going to http://www.yourdomain.com/admin. If your Admin is password protected you will need a username and password to access it.
- Once in the Admin section, click on the Catalog link on the left hand side.
- Under the categories, click on Categories / Products
- On the right hand side of the window, select new product.
- You will be directed to the new product page. Enter all the information in the spaces provided. When done click on the preview button.
- On the next screen, verify that the information is correct. If it is correct, click the insert button. If it is not correct, click the back button and repeat step 5.
I am getting Error Message - 1054 - Unknown column 'p.products_id' in 'on clause' , how can I fix this?
Chances are your hosting company is using PHP5. Please visit http://www.oscommerce.com/community/contributions,4654 For a PHP 5 upgrade for the index and advanced search files.
How do I back up my database in osCommerce?
This is something everyone should do at least once a month.
- Log in to your osCommerce admin area.
- On the blue welcome screen (or under the tools section depending on your set up) Click on the backup link
- When the Database Backup Manager screen opens, click on the backup button on the right hand side
- A new box will appear on the right hand side, leave radio button next to No Compression (Pure SQL) selected
-
- there is a check box titled Download only (do not store server side)*. If you want to down load the database backup, select this box. If you wish to keep the backup server side, leave the box unchecked. (We recommend download at least once a month)
- click on the back up button. A back up will occur. Please do not refresh or navigate away from the screen until the line appears at the top of the screen telling you your backup is complete.
I get a SSL warning about unsecure items in my OS Commerce Store. I think it has to do with Google Analytics. How can I secure this?
This is a simple fix with some PHP code. The Fix can be located Here. Or simply use this code, taken from the link above and put your UA number in:
<?php
$request_type = (($request_type == ''SSL'') ? HTTPS_SERVER : HTTP_SERVER);
if ($request_type == HTTPS_SERVER) {
define(''GOOGLE_HTTP'', ''https://ssl.'');
} else {
define(''GOOGLE_HTTP'', ''http://www.'');
}
?>
<script src="<?php echo((GOOGLE_HTTP) . ''google-analytics.com/urchin.js''); ?>">
</script>
<script type="text/javascript">
_uacct = "UA-XXXXXXX-X";
urchinTracker();
</script>
|
|