GoStock - Free Stock Photos Script Community Forum

Great idea?


  • Total voters
    4

Michael

Administrator
Staff member
  • Thread starter
  • Admin
  • #1

Community Forum

Hello guys,
I came up with the idea to create a community forum for people who love the GoStock - Free Stock Photos Script (
You do not have permission to view link Log in or register now.
) and looking for partners, support and a better communication since the comments section isn't that good.

Feel free to create a thread if
  • you require any help with the installation, the script or any issue you have.
  • you are looking for modifications.
  • you would like to showcase your work.


Best regards,
Michael.
 

Pikpro

New member
Hi Michael, Its a very good idea as the after-sale support not good.
Thank you for the initiative.

This is the form in home.blade

<form role="search" autocomplete="off" action="{{ url('search') }}" method="get">
<div class="input-group input-group-lg searchBar">
<input type="text" class="form-control" name="q" id="btnItems" placeholder="{{trans('misc.title_search_bar')}}">
<span class="input-group-btn">
<button class="btn btn-main btn-flat" type="submit" id="btnSearch">
<i class="glyphicon glyphicon-search"></i>
</button>
</span>
</div>
</form>

and this was the code in app.blade

@if(!Request::is('/') && !Request::is('search/*') )
<div class="box_Search collapse" id="formShow">
<input type="text" name="q" @if(isset($q)) value="{{$q}}" @endif autocomplete="off" class="input_search form-control" id="btnItems" placeholder="Search">
<button type="submit" id="_buttonSearch"><i class="icon-search"></i></button>
</div><!--/.form-group -->
@endif

From my observations,

When searched for the Keyword "Taj Mahal" from home buttion, I am getting the error 404 and the URL is showing as
You do not have permission to view link Log in or register now.


But I Searched for the same keyword "Taj Mahal" from other pages eg. members page using the search symbol on the top menu, the search is working properly and the URL is showing as
You do not have permission to view link Log in or register now.


I think there is some issue in mapping the URL, I understood the logic but as I am not a techie, I don't know how to rectify the error.

Grateful if you can provide assistance to get rid of this error.

Thanks a lot.
 

PureGod

Member
Hi Michael, Its a very good idea as the after-sale support not good.
Thank you for the initiative.

This is the form in home.blade

<form role="search" autocomplete="off" action="{{ url('search') }}" method="get">
<div class="input-group input-group-lg searchBar">
<input type="text" class="form-control" name="q" id="btnItems" placeholder="{{trans('misc.title_search_bar')}}">
<span class="input-group-btn">
<button class="btn btn-main btn-flat" type="submit" id="btnSearch">
<i class="glyphicon glyphicon-search"></i>
</button>
</span>
</div>
</form>

and this was the code in app.blade

@if(!Request::is('/') && !Request::is('search/*') )
<div class="box_Search collapse" id="formShow">
<input type="text" name="q" @if(isset($q)) value="{{$q}}" @endif autocomplete="off" class="input_search form-control" id="btnItems" placeholder="Search">
<button type="submit" id="_buttonSearch"><i class="icon-search"></i></button>
</div><!--/.form-group -->
@endif

From my observations,

When searched for the Keyword "Taj Mahal" from home buttion, I am getting the error 404 and the URL is showing as
You do not have permission to view link Log in or register now.


But I Searched for the same keyword "Taj Mahal" from other pages eg. members page using the search symbol on the top menu, the search is working properly and the URL is showing as
You do not have permission to view link Log in or register now.


I think there is some issue in mapping the URL, I understood the logic but as I am not a techie, I don't know how to rectify the error.

Grateful if you can provide assistance to get rid of this error.

Thanks a lot.
Thanks for your post. Please ensure to create a own thread for your question next time. You can do that here: https://howtomedia.co/forums/gostock-community-forum.65/post-thread

Your form script and app.blade code look correct. I'll message you private. :)

Best regards,
PureGod.
 

Michael

Administrator
Staff member
  • Thread starter
  • Admin
  • #4
Hi Michael, Its a very good idea as the after-sale support not good.
Thank you for the initiative.

This is the form in home.blade

<form role="search" autocomplete="off" action="{{ url('search') }}" method="get">
<div class="input-group input-group-lg searchBar">
<input type="text" class="form-control" name="q" id="btnItems" placeholder="{{trans('misc.title_search_bar')}}">
<span class="input-group-btn">
<button class="btn btn-main btn-flat" type="submit" id="btnSearch">
<i class="glyphicon glyphicon-search"></i>
</button>
</span>
</div>
</form>

and this was the code in app.blade

@if(!Request::is('/') && !Request::is('search/*') )
<div class="box_Search collapse" id="formShow">
<input type="text" name="q" @if(isset($q)) value="{{$q}}" @endif autocomplete="off" class="input_search form-control" id="btnItems" placeholder="Search">
<button type="submit" id="_buttonSearch"><i class="icon-search"></i></button>
</div><!--/.form-group -->
@endif

From my observations,

When searched for the Keyword "Taj Mahal" from home buttion, I am getting the error 404 and the URL is showing as
You do not have permission to view link Log in or register now.


But I Searched for the same keyword "Taj Mahal" from other pages eg. members page using the search symbol on the top menu, the search is working properly and the URL is showing as
You do not have permission to view link Log in or register now.


I think there is some issue in mapping the URL, I understood the logic but as I am not a techie, I don't know how to rectify the error.

Grateful if you can provide assistance to get rid of this error.

Thanks a lot.
@PureGod will assist you. :D I'm sure we will be able to create a place here which is very much faster than the previous support.
 
Top