Mobile Site

by Sitebase

Show:

jgarraffosays

Purchased

Is it possible to nest pages and not have them appear on the main interface/menu? For example lets say I have foo.tpl and on that page have links to view the content on apple.tpl, orange.tpl and berry.tpl. Could you please explain how I can best accomplish this, without linking to an http address.

Thanks!

Posted 1 month ago
Author

Sitebase Sitebasereplied

For the moment this is not possible but I’m working on something to solve this in the next version.

Posted 1 month ago

jgarraffosays

Purchased

I’ve installed the application at http://www.longislandpress.com/?mobile=iphone and can not get the news feed to display. I initially entered inhttp://www.longislandpress.com/feed and that didn’t display so I changed it to my twitter RSS feed and that didn’t display either. I noticed in the question thread on the sales page that you told someone they needed file_get_contents function. I have since confirmed that is in fact installed on our server. Have you encountered this problem before? If so, could you please share the fix with me?

the script is running on FreeBSD… not sure if that helps.

Thanks so much for your help!

Posted 1 month ago
Author

Sitebase Sitebasereplied

Can you test of this script code outputs something:

echo htmlspecialchars(file_get_contents("http://www.longislandpress.com/feed"));

It can be that your hosting blocks remote file reading.

Posted 1 month ago

mattreverberationsays

Purchased

Yes, is working actually, thanks.

There’s just one problem, if we could fix it that’d be great: If you send a message from the Contact form and you go back and try to send another one, it won’t let you anymore. Instead of refreshing the form, showing the empty fields again, it just go straight to the email confirmation message. Is that a known issue or it just happening to me?

Also, is there a way to change the “website” field in the contact form to “subject”.

Beside these two things everything is working great.

Posted 1 month ago
Author

Sitebase Sitebasereplied

That contact form problem wasn’t mentioned by anyone before. So I’ll add it in the todo list for next version.

For the moment you can’t change the form fields. You can change them in code if you want.

Posted 1 month ago
Purchased

Default-user mattreverberationreplied

Thanks Sitebase. Can you post a reply or something when you do the change? That’s not a big deal to me but sure enough that’s the first thing my client asked me!

Alright. Thanks man.

Posted 1 month ago

astonwoodsays

Purchased

I am trying to create a portfolio page where picture thumbnails would go to full screen pictures and, by using the back command on an iphone, would simply go back to the portfolio page. So far, when you use the back button, you go back to the mobile site index and not to the portfolio page… What am I doing wrong ? Thanks for your help.

Posted 1 month ago
Author

Sitebase Sitebasereplied

Can you give me the url of your website so I can take a look.

Posted 28 days ago

astonwoodsays

Purchased

Also, does not seem to work. When I use an accented character in a tpl page, it gives screen garbage. compliqué does not work, compliqué does

Posted 1 month ago
Author

Sitebase Sitebasereplied

I will take a look at this.

Posted 28 days ago

jgarraffosays

Purchased

I was able to fix the issue on my server. Thanks for the suggestions on that. Works like a charm, thanks again. I look forward to the nesting option, in future releases.

New question. How can I duplicate the news area and have separate buttons/links from the main interface that read separate rss/xml feeds? I know you responded to one person that they could only have one feed per page but does that hold true for the entire site/application?

Posted 1 month ago
Author

Sitebase Sitebasereplied

Great to hear that it works :). For the moment you can only load one RSS feed.

Posted 28 days ago

astonwoodsays

Purchased

“Can you give me the url of your website so I can take a look”

Thanks Sitebase, I sent you this Friday (and a summary of what was wrong) through Envato PM system, thanks in advance for your answer. B.

Posted 24 days ago
Author

Sitebase Sitebasereplied

My website is http://www.sitebase.be. This evening I gonna check all my email from the weekend.

Posted 24 days ago

jchsays

Purchased

Hi,

I have a strange behaviour

Loading code to

http://www.com-pk.com/index1.php

everything is OK

Using http://www.active-stats.com/01/index1.php

OK too

The same files loaded to

http://www.active-documents.com/01/index1.php http://www.active-documents.com/index1.php http://www.active-documents.fr/index1.php

doesn’t work. Any idea? Could be because URL is too long ?

Rgds

JCH

Posted 24 days ago

andjulessays

does this make use of a mobile js framework/kit (like jqTouch) or is it all hand-written?

Posted 23 days ago
Author

Sitebase Sitebasereplied

It’s all hand written.

Posted 23 days ago

hocorsays

what is the experiance level does this needed to able to create mobilsite?

Posted 21 days ago
Author

Sitebase Sitebasereplied

Almost nothing, you only need to include on file in your website and change some settings in a configuration file. There is a documentation file included so an unexperienced user can also install this script.

Posted 21 days ago

rshaylorsays

Purchased

Hey,

Install was easy!!!

Great Item

Posted 19 days ago

mittuvsays

1. Can I exclude some folders on the site?

2. I have regular static php pages in multiple folders. And one folder has Wordpress installed in ‘blog’ folder. So if I keep your code in index.php of the site, it works for blog pages too?

3. What if the visitor comes to any other page in the site apart from index.php? They still be detected that they are coming from mobile device? Ex: if visitor comes to http://mysite.com/folder/page.php directly they will be shown mobile page?

Posted 17 days ago
Author

Sitebase Sitebasereplied

1. If every page uses the index.php page (most of the dynamic website) you can set a if around the include statement:

if($_GET['page'] != "contact"){
include("Mobile/...");
}

This way the page contact affected by the mobile script.

2. Yes

3. If every page uses the index.php page (most of the dynamic website) they will indeed get the mobile website.

Posted 17 days ago

mittuvsays

http://sitebase.be/?mobile=blackberry

I clicked on this demo link. Mobile version is shown to me (on my PC with IE) When I click on one of those links, it showing regular web page. Why?

I tried http://sitebase.be/portfolio/?mobile=blackberry

But it redirecting me back to http://sitebase.be/?mobile=blackberry

Posted 17 days ago
Author

Sitebase Sitebasereplied

That because the test tag mobile=... is removed when clicked on a link. On mobile phones this wouldn’t be a problem because the mobile tag is not needed.

Posted 17 days ago

mittuvsays

thanks for the reply. Let me get this more clear …

1. If I have three folders on my site: (all three folders has an index.php and other php web pages each)

mysite.com/folder1/index.php (other couple of php web pages) mysite.com/folder2/index.php (other couple of php web pages) mysite.com/folder3/index.php (other couple of php web pages)

How to exclude folder2 to stop Mobile change?

3. My site is not dynamic site, means it all other pages don’t pass through index.php of the site. Static php pages (apart from wordpress). So I need to keep code in every page?

Posted 16 days ago
Author

Sitebase Sitebasereplied

If that’s the case you need to do the mobile include on every page that you want to have mobile detection.

Posted 16 days ago

mittuvsays

So it should be included as first line in every static file?

I can change css to match the colors to my site?

Posted 16 days ago
Author

Sitebase Sitebasereplied

Yes :).

Posted 16 days ago

rhinocerossays

Purchased

First off, thank you for producing this excellent work. I do have one issue, though.

The page is very small on Motorola Droid (android v2.0.1), probably due to the the higher resolution screen used on the Droid (854×480). Is there any way to fix this?

Posted 15 days ago
Author

Sitebase Sitebasereplied

I will look into this. You can try to workaround this by defining the font-sizes/heights in cm’s in the stylesheet.

Posted 15 days ago

JuliusDesignsays

Purchased

Hello!

it is possible to include the entire contents of an article from RSS feeds, including pictures and do not cut?

Posted 15 days ago
Author

Sitebase Sitebasereplied

Yes, to do this you need to configure your site so that it parses a RSS feed with full articles.

Posted 15 days ago

JuliusDesignsays

Purchased

My Feed Configurations is full > http://feeds2.feedburner.com/juliusdesign

In my site mobile the article are cut > http://www.juliusdesign.net/?mobile=true

Solutions?

Posted 15 days ago

mittuvsays

Purchased

I just purchased. But it seems, I need to create one .tpl file for each page of my site?

Posted 15 days ago
Author

Sitebase Sitebasereplied

The news/articles can be loaded with RSS . Other pages like portfolio or about must indeed be created with a tpl file.

Posted 15 days ago

mittuvsays

Purchased

I don’t have any news/rss feeds. Just bunch of (30 – 40) STATIC php pages. So I have to create a tpl file each of them?

Posted 15 days ago
Author

Sitebase Sitebasereplied

Yes

Posted 15 days ago

mittuvsays

Purchased

I thought just keeping Mobile/mobile.php on top of the static pages is enough. I am sorry. Please refund the transaction.

Or you know an easy way to create rss feed from static pages?

Posted 15 days ago
Author

Sitebase Sitebasereplied

Codecanyon doesn’t do refunds. There is no easy way to create RSS feeds from static pages.

Posted 15 days ago

mittuvsays

Purchased

I get free upgrades for the script. right?

Posted 15 days ago
Author

Sitebase Sitebasereplied

Correct :)

Posted 15 days ago

spermonstersays

Purchased

im using wordpress. subdomain created. but not worked. help.

http://m.sinetif.com

Posted 13 days ago
Author

Sitebase Sitebasereplied

You don’t need to create a subdomain. Follow the steps in the documentation.pdf.

Posted 12 days ago

jgarraffosays

Purchased

I can’t tell you how happy we are with your script. Thank you!

A few questions for you. Hopefully they’re easy fixes that I messed up :)

1) URL Shortening links don’t seem to want to work with. Links created by URL shorteners (bit.ly & cli.gs for examples) and tweeted out, when clicked, will just show the iPhone friendly version of the site, but no article links, and not the article that was supposed to appear. Even when not clicked from the Twitter client, for example, and entered manually into the iPhone browser, same result. All they see is this: http://twitpic.com/152vox

2) Is there any way to keep the visitor within your friendly version or does the browser need to load each and every time? It makes it impossible for them to return back to the (iphone) friendly version of the site.

Thanks again!

Posted 10 days ago
Author

Sitebase Sitebasereplied

1) Add this parameter to your url before shortening i:

&viewtype=normal

2) Can you explain a bit more :).

Posted 7 days ago

mittuvsays

Purchased

My blog is here: mysite.com/blog/

I uploaded script here: mysite.com/Mobile/

When I keep the <?php include(“Mobile/Mobile.php”); ?> in Wordpress index file, Geting ‘can not include file …’ error.

I tried these paths too:

<?php include(”/./Mobile/Mobile.php”); ?>

<?php include(”/../Mobile/Mobile.php”); ?>

No use.

Posted 7 days ago
Author

Sitebase Sitebasereplied

If I try to open http://mysite.com/Mobile/Mobile.php it says that this file doens’t exist.

That can be because the file isn’t there or that the url gets rewriten by an htaccess file. Try to add a .htaccess file to your Mobile directory with as content:

RewriteEngine off

Then try again to see if your http://mysite.com/Mobile/Mobile.php file can be found.

Posted 3 days ago

marquisuksays

Purchased

hi,

can u update me on the nesting pages options, i really need this as i want inner pages that dont appear on the main dashboard

also can we have some text on the dashboard page to introduce the website?

mark

Posted 5 days ago
Author

Sitebase Sitebasereplied

This features are planed for the next release but there is no fixed release date for this version yet.

Posted 3 days ago

mittuvsays

Purchased

1. I can keep little javascript in tpl files?

2. How would I know that you have released new version?

Posted 3 days ago

FincelDesignsays

Purchased

Hello,

First I want to say great script. Very clean and easy to understand from a programming view. I am very happy with how easy it is to manipulate.

I have a small problem though..

I am running this on a joomla site and whenever I click on “standard web view” it takes me to the actually web frontpage just fine. But as soon as I try to login to the frontend of my Joomla site, it kicks me back out to the mobile frontpage.

I thought maybe if I clicked on standard web view again I would be logged in and could use my frontend admin, but no dice. It didn’t log me in.

If you would like the url, I would love to give it to you privately if possible.

Thank you for your help, and thanks again for a wonderful mobile script!!

Kevin

Posted 2 days ago

$10

Prepaid customers
pay just $8 - how? Prepay Your Account With our deposit system not only will purchasing be much faster, but we’ll also take $2 off the price! Find Out More Price

You must sign in or sign up to purchase this item.

12345 ( 55 ratings )

Purchase 441 purchases

Sitebase

Sitebase

Exclusive Author Item was Featured Author was Featured Author had a Free File of the Month Referred at least one person Sold between 10 000 and 50 000 dollars Bought between 1 and 9 items Belgium
File Types Included
PHP
Item Attributes
Created 11 October 09
PHP Version 5.x
MySQL Version N/A
Compatible Browsers FireFox 2, FireFox 3, IE6, IE7, IE8, Safari
PHP Files Included PHP
PHP Framework N/A
Collections that include this item