pancakes

MicrostockGroup Sponsors


Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - ShazamImages

Pages: 1 ... 3 4 5 6 7 [8] 9 10 11 12 13 ... 15
176
I have also seen that the width of the page seems to differ depending on the browser / version.

177
Symbiostock - General / Re: Recommended Extras
« on: August 20, 2013, 06:21 »
I have stuck with the Child theme.  I don't want to put a lot of money into the website until I can see that it will at least cover the initial costs that I have put into it.

178
Symbiostock - General / Re: Registered user spam
« on: August 20, 2013, 06:18 »
google the email address and you know.

Thanks for that tip.  I found that 7 out of the 9 registrations that I had were spam.  I recently added CAPTCHA to the registration process to eliminate spam.  Since then, I have only had one registration (but at least I have a good idea that it is a real person).

179
Symbiostock - Suggestions / Re: Feature Request List
« on: August 19, 2013, 09:10 »
I'd like the links to increase from the current 10 to at least 20 other sites.
While at it I'd like the option for the networked images to come in as a single group so it looks like a single large site like it appears on the Global Symbiostock Search Engine site rather than split into 10 or (hopefully) more individual sites.

I have also thought about doing something like that.

180
Symbiostock - Suggestions / Re: Feature Request List
« on: August 19, 2013, 09:09 »
I'd like the links to increase from the current 10 to at least 20 other sites.
While at it I'd like the option for the networked images to come in as a single group so it looks like a single large site like it appears on the Global Symbiostock Search Engine site rather than split into 10 or (hopefully) more individual sites.

Actually, that is possible already and maybe something to think about doing on every SYS site.
We could throw out all existing network partners and only add/keep symbiostock.info there. This would list the search results of all SYS sites (with networking enabled) in only one block instead of up to 10.
Doesn't that make a lot more sense than having multiple blocks with possibly repeating search results?

I wonder how that would affect SEO (if at all).

181
I just took a look at the code and it is set to 300 dpi if the longest dimension of the image (width or height) is > 1500 pixels.  Otherwise (if the longest dimension is <= 1500 pixels, then it is set to 72 dpi).

182
Try adding the following to your php.ini file:

memory_limit = 32M
max_execution_time = 30    ; Maximum execution time of each script, in seconds
memory_limit = 128M        ; Maximum memory a script may consume (16MB)
upload_max_filesize = 25M
post_max_size = 25M

183
Symbiostock - Suggestions / Re: Feature Request List
« on: August 18, 2013, 12:43 »
Thanks Shazam for taking the time to explain the search, but alas I think that is way too complicated to use daily. We need an easy search mechanism on the administration side of things to keep things easy and moving along.

I understand the need for a simpler way of modifying batches of images, but at this time there isn't one.

In addition, when someone posts a question, there is no way to know their technical expertise (or lack thereof).  So I provided the info for those that have the technical knowledge (whether it would be you or someone else that reads this thread later).

PS Where do you enter this Database search info, certainly NOT the "Search Images" in the Dashboard's Royalty Free Images tab.

You would enter the statement in your MySQL database (which is usually available from your hosting service via a phpMyAdmin front end application).

184
Symbiostock - Suggestions / Re: Feature Request List
« on: August 18, 2013, 11:05 »
I can't figure out a way to bulk add that there is a release for a number of images. If anyone knows a way please let me know, if not, this is a VERY important feature request.

I don't see that Symbiostock does anything at this time with the release information, so I am not sure why you would want to do this, but you can do this via a query in the database.

Something like the following:

UPDATE wp_postmeta SET meta_value = 'Yes' WHERE meta_key = 'symbiostock_model_released' AND post_id IN ( <list of image IDs>);

For example, if the image ID's are 5, 10, 18, 200, then you would have:

UPDATE wp_postmeta SET meta_value = 'Yes' WHERE meta_key = 'symbiostock_model_released' AND post_id IN ( 5, 10, 18, 200 );

If it is a property release, then you can replace 'symbiostock_model_released' with 'symbiostock_property_released'.

You can find the post / image ID in a variety of ways.  Here is one:

Go to the image page, right click on the page and choose "View page source".  Search for the word "minipic".  If the lines immediately above it look like they describe the image, then that is the post / image ID.

I would suggest trying it on one image first.

As always, I would recommend making a backup of your database before you make any changes.

185
Symbiostock - Suggestions / Re: Feature Request List
« on: August 18, 2013, 10:12 »
Does anybody know if the "Reprocess" will only affect the graphic part of the image (creating the different sizes, applying watermark etc) or will it also change some or all database values (release status, exclusivity, pricing etc)?

You can try it out on one image.  If you do, please let us know what you find out.

186
Symbiostock - Suggestions / Re: Feature Request List
« on: August 18, 2013, 08:45 »
Did you know that on the "All Images" page you can click on screen options and select the number of images you want to be visible...

Great tip...

187
Fixed those two files, uploader is back! Thanks again, shazam, and thanks to plrang, too, for the solution.

Glad it worked out for you.  I'm also glad that you were able to confirm the fix since I think that you are the first one to actually use it.

188
I believe the fix was posted here:

https://github.com/orangeman555/symbiostock/pull/6/files#diff-0

Basically, you need to replace two files:

inc/classes/uploader.php
inc/rf-custom-post-functions.php

I haven't tried this yet (since I haven't had the need), so please make backups of the files before you replace them.

And where do I find the two files that I need to replace what I have with? Or can I add what is in green (+) (when I click on the github link above) and delete what is in red (-)? If that's the fix, I can do that.

You can either click the "View File" link to view the file and then copy the code to a new file, or remove the red and replace it with the green.

There might be a way to download the files, but I don't know how.

189
I believe the fix was posted here:

https://github.com/orangeman555/symbiostock/pull/6/files#diff-0

Basically, you need to replace two files:

inc/classes/uploader.php
inc/rf-custom-post-functions.php

I haven't tried this yet (since I haven't had the need), so please make backups of the files before you replace them.

190
Symbiostock - Technical Support / Re: Image processing
« on: August 16, 2013, 17:35 »
Symbiostock requires that php has the ImageMagick module loaded.  I am guessing that your php installation does not have this module loaded.

The following instructions will help determine if you have that module loaded:

Create a new php file called symbio.php (or whatever else you like) with the following lines:

<?php
   phpinfo();
?>

Save the file and copy it to the webroot directory on your webserver.

Then execute it from a browser as follows:

http://<your website>/symbio.php (or whatever you called it).

This will give you all of the info about your php installation.  If you search the output for ImageMagick, you will find if it is installed and all of the info about the installation.

The phpinfo() output has a section at the top called "Configure Command".  On my installation, it shows the following:

'./configure' '--with-libdir=lib' '--enable-fastcgi' '--prefix=/usr/local/php5_3' '--with-config-file-path=/web/conf' '--disable-posix' '--enable-bcmath' '--enable-calendar' '--with-curl=/usr/bin/curl' '--with-gdbm' '--enable-exif' '--enable-ftp' '--with-gd' '--with-freetype-dir=/usr' '--with-jpeg-dir=/usr' '--with-png-dir=/usr/bin/libpng-config' '--enable-gd-native-ttf' '--with-gettext' '--with-mcrypt=/usr/bin/libmcrypt-config' '--with-mhash' '--with-pdo-mysql=/usr' '--with-mysql=/usr' '--with-mysqli=/usr/bin/mysql_config' '--with-openssl' '--with-pspell' '--enable-soap' '--enable-wddx' '--with-xsl' '--with-zlib' '--enable-mbstring' '--enable-zip' '--with-xmlrpc' '--sysconfdir=/web/httpd24/conf' '--enable-apc' '--with-imagick'

You will notice that imagick is installed (which is the name of the ImageMagick module).

In addition, the phpinfo() output also contains an entire section called "imagick" that gives detailed information about the ImageMagick php module.

191
Symbiostock - Technical Support / Re: Image processing
« on: August 16, 2013, 16:00 »
Is there anything else to do?

Who is your host?

You need to have the php ImageMagick module loaded on your host.

192
I believe I removed it by replacing that menu section in the header.php with my own custom links to the login and the customer area pages.

Thanks, I'll take a look at that.

But keep in mind the following scenario. Let's say a potential buyer has been browsing and searching your site for the one image he wants to buy. Redirecting him from this image page to a login/register page might not be the best idea. A popup window which will disappear after login/registration is probably more sales efficient.

I believe that (by default) the registration redirects to a WordPress Admin Profile page, so that is already an issue.

At least the customer will see the area that he needs to fill out for registration.  With the popup, the customer might not see where he needs to register and leave in frustration.

193
When someone is NOT logged in and they hit the Login / Register link at the top-right menu, it will popup a new window.

Does anyone know how to stop the popup from appearing and instead have it go to the full screen please-log-in URL?

I don't really like the popup because it shows the login for registered users at the top and for screens with smaller resolutions you don't see the registration area.  Some customers might not see the registration area below and might not know that they can scroll down to it.

I would rather have the login / registration appear on a full screen (like all of the other pages).  This way the customer is more likely to see the registration area.

194
Symbiostock - General / Re: First sale?
« on: August 16, 2013, 09:31 »
Are you using one of the plugins?

If so, which one?

The one from YOAST? (http://wordpress.org/plugins/google-analytics-for-wordpress/)

Or another one?  (For example, http://wordpress.org/plugins/wp-google-analytics/)


No plugins, I just stuck the code in the footer of my Symbiostock theme.


Thanks.  That's a great idea.

195
Symbiostock - General / Re: First sale?
« on: August 16, 2013, 09:23 »
What are you using to get these stats?


Google Analytics.


Are you using one of the plugins?

If so, which one?

The one from YOAST? (http://wordpress.org/plugins/google-analytics-for-wordpress/)

Or another one?  (For example, http://wordpress.org/plugins/wp-google-analytics/)

196
Symbiostock - General / Re: First sale?
« on: August 16, 2013, 08:49 »

This was my first week of significant activity. Not that I had a ton of sales (3 this week) but that I only had one sale prior to this week, a couple of weeks ago. So it does seem that things are starting to pick up a bit.
Would you mind sharing any stats? Like how many unique visitors do you get daily? What's your bounce rate? How many real signups do you register? Stuff like that.

It would be great to know what the "successful" Symbiostocker is experiencing  ;)

For this week, Monday through Thursday, I've had 293 visits, 281 uniques, 70% bounce rate, average visit duration 1:21, 92% new visits.

Over a 10-day period I'm seeing 625 uniques, and on a typical weekday it looks like around 65 is my average.

What are you using to get these stats?

197
If I am logged in, I see "log out" where login/register would be if I was not logged in.

Is it something you can remove in your above header menu ?

Maybe I am misunderstanding, but why would you want to remove the ability to log out?

198
I deleted the Author page, at some point, during set up. Does anyone know what the fix is to get it back? Is it similar to the one for the network directory?

I don't see a page for the Author.  My best guess is that your username (s@qc5Xv6) contains a weird symbol (the @ symbol) and maybe the Symbiostock application doesn't like it.  If that is the problem, I'm not sure how to fix it since you can't seem to change the username.

199
89 sites

and

91,154 images


200
Here's what I see on yours. ( I'm using Safari)


It seems that you skipped the first step.

The first step is to go to http://<your website>/please-log-in/.

In my case, that would be http://shazamimages.com/please-log-in/

Then click the "Login / Register" link at the top-right.

Pages: 1 ... 3 4 5 6 7 [8] 9 10 11 12 13 ... 15

Sponsors

Mega Bundle of 5,900+ Professional Lightroom Presets

Microstock Poll Results

Sponsors