Forum Activity for @michael

michael
@michael
04/29/14 06:37:44PM
7,832 posts

Upload files on item detail page for module


Jamroom Developers

dobmat:
Right now I have the update and delete buttons for which I have funtions defined in the index.php file.

Delete does not require any extra input, just the item id. but update requires a page redirect to a form.

You can put that extra upload into the update form via the Form Designer.

--edit--
This might be a good course for you:
https://www.udemy.com/developers-guide-to-customizing-jamroom/

Its free for all backstage members here:
"100% Off Coupon for Developers Guide to Customizing Jamroom Udemy Course"
https://www.jamroom.net/backstage/forum/resources/3112/100-off-coupon-for-developers-guide-to-customizing-jamroom-udemycom-course
updated by @michael: 04/29/14 06:40:52PM
michael
@michael
04/29/14 06:32:05PM
7,832 posts

Unable to copy to Cache directory


Installation and Configuration

Same thing happens often for me on my local server. Its no big deal there because its not mission critical and its not on-line

Things i do to fix it:
#1 SSH into the server
#2
[code]sudo chmod -R 777 /var/www/vhosts/path/to/my/webfolder/httpdocs/[code]

Then login via FTP and delete everything in
/httpdocs/data/cache

Then load the page your wanting to load again and it will all come back up.

I know its got something to do with the user the webserver runs as is not the same as the user FTP runs as, but its not a big enough issue to go looking for how to change it in my case.

For a production server I would use @brian's DO guide
<a href="https://www.jamroom.net/the-jamroom-network/blog/23/high-performance-jamroom-on-digitalocean" target="_blank" rel="nofollow">https://www.jamroom.net/the-jamroom-network/blog/23/high-performance-jamroom-on-digitalocean</a>
michael
@michael
04/29/14 06:18:06PM
7,832 posts

Order by Listing?


Using Jamroom

Added an "Order_by" section to the docs.
michael
@michael
04/28/14 10:44:13PM
7,832 posts

I AM RECEIVING 500 ERROR MESSAGE AFTER UPLOADING FILES, AND TYPING URL


Installation and Configuration

You can fix it yourself if its anything like mine, where the error says its "Not Executable".

Open up the FTP program you use, locate that file, then check the checkbox to make the file executable.
ffmpeg-executable.png ffmpeg-executable.png - 101KB

updated by @michael: 04/28/14 10:44:30PM
michael
@michael
04/28/14 07:15:49PM
7,832 posts

Timeline actions not functioning


Installation and Configuration

Look for errors in the error log. Try posting a URL here so we can see what your talking about.

Try changing skins and see if its still happening.

Try running the integrity check and clearing the caches.
michael
@michael
04/28/14 06:24:51PM
7,832 posts

New Dumbass Module


Off Topic

yup, got that too. Nicely posted in the 'off-topic' section. :)

Still would be useful though. and now that you've volunteered to build it were all waiting........ ;)
michael
@michael
04/28/14 06:16:12PM
7,832 posts

HipHopBillboard.com


Installation and Configuration

Its Jamroom 4 so should go in the "Older Versions" thread on the forums.

What you want to do is figure out what the problem is.

Check the /logs directory for any error_logs and open them with a text editor to find what the error is.

If you've done nothing and its just got like this, chances are the hosting company has upgraded something thats not compatible with JR4. JR4 works on PHP up to PHP5.2. So if they have upgraded to a newer php version, then you should check out Jamroom5.
michael
@michael
04/28/14 06:11:42PM
7,832 posts

Redirect External link backs to https


Installation and Configuration

What about this. Leave the standard jamroom .htaccess redirect code in place, as is. Then add a couple of rules BEFORE it to catch any of the wanted issues:

# catch the non www. version and redirect
RewriteCond %{HTTP_HOST} ^punkbandpromotions\.com$ [NC]
RewriteRule ^(.*)$ https://www.punkbandpromotions.com/$1 [L,R=301]


# All requests through the front controller
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-l
RewriteRule ^(.*)$ modules/jrCore/router.php?_uri=$1 [NC,L]
michael
@michael
04/27/14 07:19:43PM
7,832 posts

Anyone here into antiques and collectibles?


The Greenroom

Thought you could. hmmm....

(goes to check)

http://pages.ebay.com/help/policies/listing-links.html
Quote: In general, when listing items on eBay, you can include links that are solely intended to provide additional details about the items.

"How to link to your Website from your auction"
http://tips4pc.com/articles/ebay-articles/how_to_link_to_your_website_usin.htm
Quote: An About me Page is also very important when you have your own website.......
Things you can include on your About me Page?

You can put links to your favorite sites (your website)
To let people know who you are
Maybe some contact information
To state your auction terms and conditions
Show a map for pickup location
List postage prices



"Why every eBay Seller Needs a Website"
http://www.skipmcgrath.com/website/

"Using Links in eBay Item Descriptions"
http://ebay.about.com/od/sellingdosanddonts/a/Using-Links-In-Item-Descriptions.htm
michael
@michael
04/27/14 07:05:55PM
7,832 posts

Redirect External link backs to https


Installation and Configuration

instead of R=301,L try [NC,L] as that's what the original one is

Original .htaccess file:

# All requests through the front controller
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-l
RewriteRule ^(.*)$ modules/jrCore/router.php?_uri=$1 [NC,L]


So here's a few more guesses from me.
# HTTP
RewriteCond %{SERVER_PORT} ^80$
RewriteCond %{HTTP_HOST} ^jamroom\.net [NC]
RewriteRule .? https://www.jamroom.net%{REQUEST_URI} [NC,L]

# HTTPS
RewriteCond %{SERVER_PORT} ^443$
RewriteCond %{HTTP_HOST} ^jamroom\.net [NC]
RewriteRule .? https://www.jamroom.net%{REQUEST_URI} [NC,L]
  703