vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   Modification Graveyard (https://vborg.vbsupport.ru/forumdisplay.php?f=224)
-   -   Major Additions - Classifieds (https://vborg.vbsupport.ru/showthread.php?t=205465)

misticjeff 02-22-2009 09:13 PM

Quote:

Originally Posted by MicroHellas (Post 1751184)
Seems that for some reason during the time that you're writting the Ad, you're loosing the session (you logout by the system). At that part, and for more security, there are 2 permissions checks. One during entering the form (which you pass it) and the 2nd when the system is trying to save the data. Seems that at this point the system can't authenticate you.

Could you please PM your URL to try to post an Ad?

Mary

any solution Mary?? the suspense is killing me:confused:

nightbloom 02-23-2009 04:00 AM

This is a great mod and for a regular forum, Im sure its fantastic, but Id actually USE it if it were a little more versatile.

Its an add on of vB yet it does not actually integrate. When something is sold via an ad, there is no notification of any kind on the forum.

PayPal is the ONLY payment option. I dont know about other genre forums, but in gaming, PayPal is notoriously not welcome due to ease of chargeback.

In gaming, some items are virtual game items and selling for real money is illegal. You dont give any kind of way to modify the money values to anything other than the drop down list.

Yours is like the 100th Classifieds script/mod I have tried on my site. >< Gamers need more generalized products!

MaryTheG(r)eek 02-23-2009 05:46 AM

Quote:

Originally Posted by dknelson (Post 1751497)
Well, I've got this installed and added a category to test. I have my usergroup set to allow me to post an ad but am having the same problem as the poster above. When I try to "save" my ad, I too get the "no permissions" error. Usergroup is set to allow me to do so but it's not working. I'm running 3.8.1.

Hello,

I was able to duplicate this error by visiting 2 sites. The only that I can say is that in both sites I saw something strange, all fields to be with default value "1", something that it's not coming from my code. Also, I noticed that both sites are using custom smilies, something that maybe causes the problem.

I'm sorry but I can't do something more, as I don't have 3.8.x installed, and because this issue happen only to small percentage of 3.8 installations, which means that they have a system misconfiguration.

Mary

misticjeff 02-23-2009 05:54 AM

Quote:

Originally Posted by MicroHellas (Post 1752058)
Hello,

I was able to duplicate this error by visiting 2 sites. The only that I can say is that in both sites I saw something strange, all fields to be with default value "1", something that it's not coming from my code. Also, I noticed that both sites are using custom smilies, something that maybe causes the problem.

I'm sorry but I can't do something more, as I don't have 3.8.x installed, and because this issue happen only to small percentage of 3.8 installations, which means that they have a system misconfiguration.

Mary

Hey Mary,

My site is actually a 3.6.8 site, not a 3.8 site....

misticjeff 02-23-2009 05:59 AM

Quote:

Originally Posted by MicroHellas (Post 1752058)
Also, I noticed that both sites are using custom smilies, something that maybe causes the problem.

Removed all custom smilies from my forum... can you take another look. Only using the stock vbulletin smilies now.

misticjeff 02-23-2009 06:09 AM

Quote:

Originally Posted by MicroHellas (Post 1752058)
Hello,

I was able to duplicate this error by visiting 2 sites. The only that I can say is that in both sites I saw something strange, all fields to be with default value "1", something that it's not coming from my code.

Looking at the code in FireBug it does look like the default value of "1" is in your code:

Code:

<td>
<input id="publishdate" class="dp-applied" value="1" name="publishdate"/>
<a class="dp-choose-date" title="Choose date" href="#">Choose date</a>
<select name="publishhour">
<option value="0">0</option>
<option selected="selected" value="1">1</option>
<option value="2">2</option>
<option value="3">3</option>
<option value="4">4</option>
<option value="5">5</option>
<option value="6">6</option>
<option value="7">7</option>
<option value="8">8</option>
<option value="9">9</option>
<option value="10">10</option>
<option value="11">11</option>
<option value="12">12</option>
<option value="13">13</option>
<option value="14">14</option>
<option value="15">15</option>
<option value="16">16</option>
<option value="17">17</option>
<option value="18">18</option>
<option value="19">19</option>
<option value="20">20</option>
<option value="21">21</option>
<option value="22">22</option>
<option value="23">23</option>
</select>
 :
<select name="publishminute">
<option value="0">0</option>
<option selected="selected" value="1">1</option>
<option value="2">2</option>
<option value="3">3</option>
<option value="4">4</option>
<option value="5">5</option>
<option value="6">6</option>
<option value="7">7</option>
<option value="8">8</option>
<option value="9">9</option>
<option value="10">10</option>
<option value="11">11</option>
<option value="12">12</option>
<option value="13">13</option>
<option value="14">14</option>
<option value="15">15</option>
<option value="16">16</option>
<option value="17">17</option>
<option value="18">18</option>
<option value="19">19</option>
<option value="20">20</option>
<option value="21">21</option>
<option value="22">22</option>
<option value="23">23</option>
<option value="24">24</option>
<option value="25">25</option>
<option value="26">26</option>
<option value="27">27</option>
<option value="28">28</option>
<option value="29">29</option>
<option value="30">30</option>
<option value="31">31</option>
<option value="32">32</option>
<option value="33">33</option>
<option value="34">34</option>
<option value="35">35</option>
<option value="36">36</option>
<option value="37">37</option>
<option value="38">38</option>
<option value="39">39</option>
<option value="40">40</option>
<option value="41">41</option>
<option value="42">42</option>
<option value="43">43</option>
<option value="44">44</option>
<option value="45">45</option>
<option value="46">46</option>
<option value="47">47</option>
<option value="48">48</option>
<option value="49">49</option>
<option value="50">50</option>
<option value="51">51</option>
<option value="52">52</option>
<option value="53">53</option>
<option value="54">54</option>
<option value="55">55</option>
<option value="56">56</option>
<option value="57">57</option>
<option value="58">58</option>
<option value="59">59</option>
</select>


This is the code snippet from the date and time/hour input fields.

Sportsriders 02-23-2009 02:18 PM

I followed the install instruction but still have an issue, or I missed something, please help.

Step 1: Upload all files and directories including at "vbulletin" directory to the
directory where vBulletin is installed.


Done. Verified the file count in each directory is correct. Uploaded the vBulletin and all
sub directories but not the classified directory.

Step 2: CMOD the following directories to 777
/photos (inside classifieds directory)
/tmp (inside classifieds/photos directory)
/thumbs (inside classifieds/photos directory)


Done

Step 3: For security reasons backup your database AND turn your board off

Done

Step 4: Check at your AdminCP->vBulletin Options->Plugin/Hook System that Plugin
system is enabled.


Done.

Step 5: From your AdminCP->Plugin System->Manage Products choose Add/Import Product
and import the product: product_classifieds.xml


Done

Step 6: If you want to add a link to your nav bar then you must edit the NAVBAR template:

Done and link appears in all skins.

Step 1: Set the various options at Classieds->Options

Not done. There is no classifieds section in any of the user groups.

Step 8: If you've installed vbSEO, Login into vbSEO Control Panel, click "Custom Rewrite
Rules", insert rewrite rules (attached in vbseo-rules.txt to not lose formatting)
and save settings.


Not done. vBSEO not installed.

Step 1: Set the various options at Classieds->Options

Done.

The rest is not done as I cannot see the links.

UNDER PLUGIN SYSTEM I SEE ( Is this correct "online_location_unknown" )

Product : Classifieds
Location online_location_unknown [Edit] [Delete]
Template Group template_groups [Edit] [Delete]


Can anyone help with a suggesting on what might be wrong. Thank you.

John

jorgejgm 02-23-2009 02:34 PM

hello,

I have vBulletin 3.8.1 and vbseo 3.3.0 RC1. I have installed but not working classifieds, all the time blank page. I have vbseo off, I added write the rules, I've removed, I reinstalled classifieds, but it does not work.

I think it's a great mod, someone has fixed the blank page?

dknelson 02-23-2009 02:42 PM

I'm not sure but wonder if this is the main problem:

"Step 1: Upload all files and directories including at "vbulletin" directory to the
directory where vBulletin is installed."

It may be unclear what is meant here. It sounds like you are supposed to upload the vbulletin folder with the other folders inside just as in the zip file. I'm just not at all sure that is what was intended though. When I did that, I simply got blank pages. I then started over and uploaded the folders and files within that vbulletin folder but NOT the vbulletin folder itself. I just uploaded the admin, photos, etc. to the root directory of my forum.

I could then access the classifieds page. Now after that, I had other problems and so have given up on this but I'm just trying to help.

jorgejgm 02-23-2009 03:08 PM

and you rewrite includes/functions.php?


All times are GMT. The time now is 04:48 AM.

Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.

X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.01471 seconds
  • Memory Usage 1,783KB
  • Queries Executed 10 (?)
More Information
Template Usage:
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (1)bbcode_code_printable
  • (5)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (1)pagenav_pagelinkrel
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (10)printthreadbit
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • showthread
Included Files:
  • ./printthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/class_bbcode_alt.php
  • ./includes/class_bbcode.php
  • ./includes/functions_bigthree.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • printthread_start
  • pagenav_page
  • pagenav_complete
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete