Re: Unable to access admin section [ Started by gudipudi in General support : 8 replies ]
This is low-tech suggestion, but because the rest the site seems OK, try just re-uploading the whole admin folder again.
Welcome to jobberBase Developer Community!
You are not logged in. Please login or register.
We've just added a new category for forums dedicated to local communities.
If you're interested in starting a community in your country or even city, please write us at hello@jobberbase.com and we'll make it happen.
We're also looking for moderators on each local community -- so email us :).
jobberBase Community » Posts by Tokyoj
This is low-tech suggestion, but because the rest the site seems OK, try just re-uploading the whole admin folder again.
For #1...open
header.tpl and go to line 65~67. This is the button for [POST A JOB]...to add the link you want under or near that button simply add this...
<br /><a href="{$BASE_URL}NAMEOFFILEHERE/" title="{$translations.search.NEEDTOADD}"
...to...
<div class="addJob">
<a href="{$BASE_URL}post/" title="{$translations.search.title}" class="add">{$translations.search.submit}</a>
</div><!-- .addJob -->
...to get....
<div class="addJob">
<a href="{$BASE_URL}post/" title="{$translations.search.title}" class="add">
{$translations.search.submit}</a>
<br /><a href="{$BASE_URL}DESTINATIONHERE/" title="{$translations.search.NEEDTOADD}" class="add">
</div><!-- .addJob -->
...then in _includes/translations.ini around line 11 find [search] and add an entry in that group for title of the next link
NEEDTOADD = "WHATYOUWANTHERE"
To play around with the format open the CSS file and find
div#addJob
#2...sorry but someone better than me should help you there...
If you have any problems just pos …
I've been trying to get the below images section to display above the category tabs on pages other than the top page.
The <div> </div> is included in header.tpl and I thought since header.tpl is called on other .tpl pages....the images would also appear on those pages but it's not working.
Hmmm...any ideas?
Images appear on the top page with this in header.tpl with this
<div id="top_images">
<table width="700px">
<tr>
<td><img src="img/1.gif" /></td>
<td><img src="img/2.gif" /></td>
<td><img src="img/3.gif" /></td>
<td><img src="img/4.gif" /></td>
</tr>
</table>
</div>
but not in the login page, even though
{include file="header.tpl"}
is called.
Sometimes a file gets dropped during uploading...check to make sure the template file
admin/templates/login.tpl
was uploaded.
To refresh this thread...it might be a good idea to be able to validate email, numberic-only, etc...fields.
Any one interested in having a shot at posting a tutorial?
My java skills are worse than president Bush was as president....(yep...that bad)
To answer your questions:
1. The CSS handles all the formating. For the footer attributes look around line 221 for
div.footer {
2. The footer is made up of <div> </div> sections...
<div class="footer">
<div id="footer-contents">
<div id="footer-col1">
{$translations.footer.column_use}:<br />
<a href="{$BASE_URL}post/" title="{$translations.footer.new_job_title}">{$translations.footer.new_job}</a><br />
<a href="{$BASE_URL}{$articles.widgets.url}/" title="{$articles.widgets.page_title}">{$articles.widgets.title}</a><br />
<a href="{$BASE_URL}rss/" title="{$translations.footer.rss_title}">{$translations.footer.rss}</a><br />
</div>
</div>
Just follow the same format for as the other columns and see how things go. …
I cadsite means the "spotlight" created by Chronos.
...Unfortunately I think using the V1.6 spotlight on V1.5 files is not easy...and takes more than a bit of customizing.
When you say you 'upgraded' from V1.5 --> V1.6 correct?...well the spotlight function is included in V1.6...so why do you still have V1.5 templates?
Chronos is the best person to answer this one.
All email content is handled in
class.Postman.php
http://www.jobberbase.com/forum/topic589-email-templates.html
(everyone is glad to help but please search the forum first for answers because many times the question has already been answered and besides...it's faster than waiting for someone to reply...)
cheers.
(moving this thread to 'General Support')
this got put on hold for other tweaks and redesign issues. Can't really decide 'where' to put the banners until the designs are done....once it's done, I'll post what the finished stuff.
To be honest it doesn't really serve much purpose other than for Admin to 'know' what users think it the ideal job.
Is there a link to the site?
Have you checked the encoding?
The thread is 'feature requests'.Not everyone wants to prevent uploading of Vista docs...it's an addition to 'restricting file uploads' which users can use if they want.
"Its not a bug...its a feature!"...Who said it was a bug?
Gee I didn't realize giving people information to customized their sites was such a confrontational issue.
Yep...that's correct...
What does the URL show?
btw...are you using an IIS server? If so, see the commented code
// if your server is IIS, use these lines and comment lines 135-137:
//$_url = $_SERVER["QUERY_STRING"];
There are a couple folders to set permissions on...
_templates/cache and
jobberbase/uploads should be set to 777
For a bit more details...check Step 7 in the Installation Guide
http://www.scribd.com/doc/5101278/jobberbaseinstallationguide
btw...what are you using to upload?
I've heard of Dreamweaver having trouble uploading all files...just curious.
DW...silly question but have the folders been set with the correct permissions?
All emails (body, subject line, etc...) generated by the system are handled in one file. _includes/class.Postman.php
It's commented so it's easy to know what does what.
I'm not sure how many native Spanish speakers are in the forum but translation of the template (.tpl) files isn't difficult. It would probably take 1hr or so...if you have the time.... :-) Just in case someone wants to know...Here's how...
1. Open a admin/xxx.tpl file and find the hard coded text..For example...
<td> Thank You. </td>
2. Open _include/translations.ini and create an entry for gracias. For example...(in this case I created th GROUP [admin] but any group already in the .ini file is fine....such as [header] is fine but it's easier later to keep entries in specific groups.
[admin]
thank_you = "Gracias"
3. Go back to the open .tpl file and replace the hard text with the translated text. In this case....
<td> Thank You. </td>
becomes
<td>{$translations.admin.thank_you}</td>
NOTE:
1) no spaces allowed in translations.ini. Use underbar between_words
2) Must use the EXACT format {$translations.GROUP.ITEM} …
Both work.
Thank you.
I just tested this and Vista's .docx extensions are not allowed.
Would anyone know how to adjust the validation to validate for them (Word, Excel, etc...)?
sucharith,
Welcome to Jobberbase.
The program does require a bit of working with the code to customize it.
1. The change the logo, just look in the images folder and find the logo. Replace it with whatever you create.
2. Where do you want to add adsense?
3. Colors can be changed in the CSS.
I can't tell you exactly what to change because it's not clear on what you want the final product to look like.
Also please search the forum for answers. Alot of questions have already been answered and most in detail.
freemarket,
Jobberbase is free to use as you please. The code is released under the MIT Terms of Use...
http://www.opensource.org/licenses/mit-license.php
"...without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software..."
So yes, it's OK to remove/replace the 'Powered by...' or credits on the site and do whatever you want.
But it would be good Netizen practise to credit the creators with credit :-)
Here's an explanation of the settings:
http://www.jobberbase.com/forum/topic1062-help-me-with-intalationjobberbase.html
I'm not sure what you mean by "What's this ????? "
Where do you see the question marks?
It sounds like just a simple problem of the wrong settings.
I apologize if my reply was terse. Wasn't my intention. Sorry about that.
The forum acts as an FAQ...via the 'Search' function. The problem with FAQ's is that they don't cover everyone's questions or problems, and it can get so big that people end up 'searching' the FAQ's...That's kind of like having a remote control for your car stereo...when just stretching out an arm is enough. (no sarcasm intended....a friend actually did have a 'car stereo remote' and it made me laugh :-)
"does not work well"...
Please post more details about the problem.
'What' does not work well?
Does Apply 'work' at all?
Are there error messages?
Is there a link to the site?
etc...
crisit knows what he's doing with Jobberbase and can do a good job.
Page [ 3 of 14 ] Posts by Tokyoj [ 51 to 75 of 329 ]
jobberBase Community » Posts by Tokyoj
Powered by FluxBB
[ Generated in 0.055 seconds, 4 queries executed ]